From fa23775e9367b232b85b762c32e981db0beb8066 Mon Sep 17 00:00:00 2001 From: emi Date: Mon, 9 Sep 2019 06:39:47 +0000 Subject: [PATCH] Change connection message by connection status bar --- src/components/DataPage.vue | 7 +++++-- src/components/Home.vue | 2 +- src/components/LastBlocks.vue | 2 +- src/lib/styl/layout.styl | 3 ++- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/components/DataPage.vue b/src/components/DataPage.vue index 7ff2b9eb..3d2050ab 100644 --- a/src/components/DataPage.vue +++ b/src/components/DataPage.vue @@ -16,7 +16,7 @@ item-navigator(v-if='!isTable' :next='next' :prev='prev' :total='total' :regKey='dataKey()(dataType)') .tabs - .tabs-titles + .tabs-titles(v-if='page.data') template(v-for='tab in mainContentTabs') button.btn.tab-title.link(v-if='tab.name' @click='setActiveContentTab(tab.name,$event)' :class='tabTitleCss(isActiveContentTab(tab))') @@ -29,7 +29,8 @@ data-section(v-if='!tabs && !activeContentTab' :module='module' :dataType='dataType' :reqKey='reqKey' :component='component' :action='action') .tabs(v-if='tabs && data && !hideTabs') - .tabs-titles + //- Tabs titles + .tabs-titles(v-if='page.data') template(v-for='tab in tabs') template(v-if='renderTab(tab)') template(v-if='isRequesting()(tab.name)') @@ -296,6 +297,8 @@ export default { }