|
|
|
@ -1,6 +1,6 @@ |
|
|
|
|
<template> |
|
|
|
|
<view> |
|
|
|
|
<view v-if="getLoading" class="wp100 relative" style="height: 100vh;"> |
|
|
|
|
<!-- <view v-if="getLoading" class="wp100 relative" style="height: 100vh;"> |
|
|
|
|
<image class="wp100" mode="widthFix" |
|
|
|
|
src="https://oss-bq.ahduima.com/%E5%B0%8F%E7%A8%8B%E5%BA%8F/%E5%9B%BE%E7%89%87/%E8%80%83%E8%AF%95%E6%8F%90%E9%86%92_20230906135037.png"> |
|
|
|
|
</image> |
|
|
|
@ -9,9 +9,9 @@ |
|
|
|
|
src="https://oss-bq.ahduima.com/%E5%B0%8F%E7%A8%8B%E5%BA%8F/%E5%9B%BE%E7%89%87/%E9%87%91%E6%AD%A6%E8%81%94_20230831123333.png" |
|
|
|
|
mode="widthFix"></image> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</view> --> |
|
|
|
|
<view v-if="!getLoading"> |
|
|
|
|
<j-navbar :isBack="false">金武联驾考</j-navbar> |
|
|
|
|
<!-- <j-navbar :isBack="false">金武联驾考</j-navbar> --> |
|
|
|
|
<u-sticky bgColor="#fff"> |
|
|
|
|
<u-tabs :list="categoryList" :current="curTab" :scrollable="false" @change="changeCategory"></u-tabs> |
|
|
|
|
</u-sticky> |
|
|
|
@ -52,6 +52,7 @@ |
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
getLoading: true, |
|
|
|
|
show: false, |
|
|
|
|
subject: storage.get('curSubject') || '1', |
|
|
|
|
curTab: 0, |
|
|
|
@ -64,7 +65,10 @@ |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
onShow() { |
|
|
|
|
this.show = true |
|
|
|
|
setTimeout(() => { |
|
|
|
|
this.getLoading = false |
|
|
|
|
this.show = true |
|
|
|
|
}, 100); |
|
|
|
|
this.getSubjectConfig() |
|
|
|
|
if (this.subject == '1' || this.subject == '4') { |
|
|
|
|
this.rightList = storage.get(`rightList_subject${this.subject}`) || [] |
|
|
|
@ -82,22 +86,6 @@ |
|
|
|
|
...mapState(useQuestionStore, ["loading_subject4", "loading_subject1", "curSubject", "orderQuestion_subject1", |
|
|
|
|
"orderQuestion_subject4" |
|
|
|
|
]), //映射函数,取出tagslist |
|
|
|
|
getLoading() { |
|
|
|
|
return this.loading_subject4 && this.loading_subject1 |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
getLoading(newVal) { |
|
|
|
|
if (this.show) { |
|
|
|
|
if (newVal) { |
|
|
|
|
if (this.loading_subject4 && this.loading_subject1) { |
|
|
|
|
uni.hideTabBar(); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
uni.showTabBar() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
...mapActions(useQuestionStore, ['getOrderQuestion_sub4', 'getOrderQuestion_sub1', 'changeSubject']), |
|
|
|
@ -113,7 +101,7 @@ |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
this.subject = storage.get('curSubject') || '1', |
|
|
|
|
this.curTab = this.categoryList.findIndex(item => item.configItemCode == this.subject) |
|
|
|
|
this.curTab = this.categoryList.findIndex(item => item.configItemCode == this.subject) || 0 |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|