mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
36 lines
514 B
JavaScript
36 lines
514 B
JavaScript
Component({
|
|
properties: {
|
|
show: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
|
|
overlay: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
|
|
closeOnClickOverlay: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
|
|
// 弹出方向
|
|
type: {
|
|
type: String,
|
|
value: 'center'
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
handleMaskClick() {
|
|
this.triggerEvent('click-overlay', {});
|
|
|
|
if (!this.data.closeOnClickOverlay) {
|
|
return;
|
|
}
|
|
this.triggerEvent('close', {});
|
|
}
|
|
}
|
|
});
|