mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
40 lines
608 B
JavaScript
40 lines
608 B
JavaScript
|
|
import Page from '../../common/page';
|
|
|
|
Page({
|
|
data: {
|
|
show1: false,
|
|
show2: false,
|
|
show3: false
|
|
},
|
|
|
|
onLoad() {
|
|
this.setData({
|
|
actions: [
|
|
{ name: '选项' },
|
|
{ name: '选项', subname: '禁用' },
|
|
{ name: '选项', loading: true },
|
|
{ name: '禁用选项', disabled: true }
|
|
]
|
|
});
|
|
},
|
|
|
|
toggle(type) {
|
|
this.setData({
|
|
[type]: !this.data[type]
|
|
});
|
|
},
|
|
|
|
toggleActionsheet1() {
|
|
this.toggle('show1');
|
|
},
|
|
|
|
toggleActionsheet2() {
|
|
this.toggle('show2');
|
|
},
|
|
|
|
toggleActionsheet3() {
|
|
this.toggle('show3');
|
|
}
|
|
});
|