You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
736 B

3 years ago
// index.js
Page({
data: {
3 years ago
active: 0,
3 years ago
showChart: true,
3 years ago
wshow: true,
3 years ago
},
onShow() {
3 years ago
if (!wx.getStorageSync('token')) {
wx.navigateTo({
url: "/pages/mine/pages/bindUser/index?isHome=1",
})
} else {
this.getTabBar().init();
3 years ago
if (this.data.active == 2 || this.data.active == 3 ||this.data.active == 1) {
3 years ago
this.reLoad()
}
}
3 years ago
3 years ago
},
3 years ago
changeTab(val) {
let n = val.detail.index;
this.setData({
active: n
})
},
3 years ago
reLoad() {
this.setData({
3 years ago
wshow: false
})
this.setData({
3 years ago
wshow: true
})
3 years ago
}
3 years ago
});