mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
37 lines
568 B
JavaScript
37 lines
568 B
JavaScript
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');
|
|
}
|
|
});
|