|
@@ -12,10 +12,10 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
tabList: [
|
|
|
- {iconPath: 'static/images/tabbar/unselect/plan-sj.png',path:'/pages/study/index' },
|
|
|
+ {iconPath: 'static/images/tabbar/unselect/plan-sj.png',path:`/pages/study/index?zhangId=${this.$state.zhangId}&nianji=${this.$state.nianji}&xueqi=${this.$state.xueqi}` },
|
|
|
{iconPath: 'static/images/tabbar/unselect/develop-sj.png',path:'/pages/study/index' },
|
|
|
{iconPath: 'static/images/tabbar/unselect/partner-sj.png',path:'/pages/study/index' },
|
|
|
- {iconPath: 'static/images/tabbar/unselect/my-sj.png',path:'/pages/my/index' },
|
|
|
+ {iconPath: 'static/images/tabbar/unselect/my-sj.png',path:`/pages/my/index?zhangId=${this.$state.zhangId}&nianji=${this.$state.nianji}&xueqi=${this.$state.xueqi}` },
|
|
|
// 更多 Tab 项...
|
|
|
]
|
|
|
};
|
|
@@ -48,7 +48,11 @@ export default {
|
|
|
const tabBarPages = ['/pages/study/index', '/pages/study/index','/pages/study/index','/pages/my/index'];
|
|
|
return tabBarPages.includes(path);
|
|
|
}
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ console.log(this.$state);
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
</script>
|
|
|
|