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.
25 lines
580 B
25 lines
580 B
Component({
|
|
properties: {},
|
|
data: {
|
|
tabList: [{
|
|
label: "按省及社区满意度\n调查结果",
|
|
value: 1
|
|
}, {
|
|
label: '按12345热线\n投诉结果',
|
|
value: 2
|
|
}],
|
|
tabValue: ''
|
|
},
|
|
methods: {
|
|
tabChange(index) {
|
|
this.setData({
|
|
tabValue: this.tabList[index].value
|
|
})
|
|
},
|
|
gotopage() {
|
|
wx.navigateTo({
|
|
url: '/subpages/statistics/pages/crowdPortrait/crowdPortrait'
|
|
})
|
|
}
|
|
}
|
|
});
|
|
|