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.
19 lines
348 B
19 lines
348 B
2 years ago
|
Component({
|
||
|
properties: {
|
||
|
tabList: {
|
||
|
type: Array
|
||
|
}
|
||
|
},
|
||
|
data: {
|
||
|
cur: 0
|
||
|
},
|
||
|
methods: {
|
||
|
tabChange(e) {
|
||
|
this.setData({
|
||
|
cur: e.currentTarget.dataset.index
|
||
|
})
|
||
|
this.triggerEvent("tabChange",e.currentTarget.dataset.index)
|
||
|
}
|
||
|
}
|
||
|
});
|