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.

40 lines
538 B

3 years ago
// index.js
Page({
3 years ago
data: {
active: 0,
showChart: true,
wshow: true,
3 years ago
brandshow:true,
modelshow:true,
3 years ago
eventshow:true,
3 years ago
},
onShow() {
3 years ago
3 years ago
},
themeHide() {
this.setData({
wshow: false
})
},
3 years ago
brandHide(){
this.setData({
brandshow: false
})
},
modelHide(){
this.setData({
modelshow: false
})
},
3 years ago
eventHide(){
this.setData({
eventshow: false
})
},
3 years ago
changeTab(val) {
let n = val.detail.index;
this.setData({
active: n
})
},
3 years ago
});