mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
41 lines
652 B
JavaScript
41 lines
652 B
JavaScript
Page({
|
|
|
|
data: {
|
|
showPopup: false,
|
|
showLeftPopup: false,
|
|
showRightPopup: false,
|
|
showTopPopup: false,
|
|
showBottomPopup: false
|
|
},
|
|
|
|
togglePopup() {
|
|
this.setData({
|
|
showPopup: !this.data.showPopup
|
|
});
|
|
},
|
|
|
|
toggleLeftPopup() {
|
|
this.setData({
|
|
showLeftPopup: !this.data.showLeftPopup
|
|
});
|
|
},
|
|
|
|
toggleRightPopup() {
|
|
this.setData({
|
|
showRightPopup: !this.data.showRightPopup
|
|
});
|
|
},
|
|
|
|
toggleBottomPopup() {
|
|
this.setData({
|
|
showBottomPopup: !this.data.showBottomPopup
|
|
});
|
|
},
|
|
|
|
toggleTopPopup() {
|
|
this.setData({
|
|
showTopPopup: !this.data.showTopPopup
|
|
});
|
|
}
|
|
});
|