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.
21 lines
426 B
21 lines
426 B
2 years ago
|
Component({
|
||
|
properties: {},
|
||
|
data: {
|
||
|
tabList: [{
|
||
|
label: "按省及社区满意度\n调查结果",
|
||
|
value: 1
|
||
|
},{
|
||
|
label: '按12345热线\n投诉结果',
|
||
|
value: 2
|
||
|
}],
|
||
|
tabValue: ''
|
||
|
},
|
||
|
methods: {
|
||
|
tabChange(index) {
|
||
|
this.setData({
|
||
|
tabValue: this.tabList[index].value
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
});
|