mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
58 lines
1008 B
JavaScript
58 lines
1008 B
JavaScript
import Page from '../../common/page';
|
|
|
|
Page({
|
|
data: {
|
|
show1: false,
|
|
show2: false,
|
|
show3: false,
|
|
show4: false,
|
|
show5: false,
|
|
show6: false,
|
|
action1: [
|
|
{ name: '选项' },
|
|
{ name: '选项' },
|
|
{ name: '选项', subname: '副文本' }
|
|
],
|
|
action2: [
|
|
{ name: '选项', color: '#07c160' },
|
|
{ loading: true },
|
|
{ name: '禁用选项', disabled: true }
|
|
],
|
|
action6: [
|
|
{ name: '获取用户信息', color: '#07c160', openType: 'getUserInfo' },
|
|
]
|
|
},
|
|
|
|
toggle(type) {
|
|
this.setData({
|
|
[type]: !this.data[type]
|
|
});
|
|
},
|
|
|
|
toggleActionSheet1() {
|
|
this.toggle('show1');
|
|
},
|
|
|
|
toggleActionSheet2() {
|
|
this.toggle('show2');
|
|
},
|
|
|
|
toggleActionSheet3() {
|
|
this.toggle('show3');
|
|
},
|
|
|
|
toggleActionSheet4() {
|
|
this.toggle('show4');
|
|
},
|
|
|
|
toggleActionSheet5() {
|
|
this.toggle('show5');
|
|
},
|
|
toggleActionSheet6() {
|
|
this.toggle('show6');
|
|
},
|
|
onGetUserInfo(e) {
|
|
console.log(e.detail);
|
|
}
|
|
});
|