[工作台改版]

This commit is contained in:
2023-06-28 13:56:36 +08:00
parent 7c56feee3f
commit c79903ac51
17 changed files with 2248 additions and 379 deletions

View File

@@ -3,6 +3,7 @@
<u-sticky bgColor="#fff" v-if="$Route.query.type != 'synthesis'">
<view class="header-sticky">
<u-tabs
:current="tabsCurrent"
:list="tabs"
:scrollable="tabScroll"
:lineWidth="20"
@@ -133,7 +134,8 @@
current : 1
},
pagesShow : false,
status : ''
status : '',
tabsCurrent : null,
};
},
created() {
@@ -190,6 +192,10 @@
uni.setNavigationBarTitle({
title: tabName
})
let { status } = this.$Route.query
this.tabType = status
this.tabsCurrent = this.tabs.findIndex(val => val.type == status);
this.getList()
},
onShow() {