mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
53 lines
1.0 KiB
TypeScript
53 lines
1.0 KiB
TypeScript
import { VantComponent } from '../common/component';
|
|
import { transition } from '../mixins/transition';
|
|
|
|
VantComponent({
|
|
mixins: [transition(false)],
|
|
|
|
props: {
|
|
transition: String,
|
|
customStyle: String,
|
|
overlayStyle: String,
|
|
zIndex: {
|
|
type: Number,
|
|
value: 100
|
|
},
|
|
overlay: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
closeOnClickOverlay: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
position: {
|
|
type: String,
|
|
value: 'center'
|
|
},
|
|
safeAreaInsetBottom: {
|
|
type: Boolean,
|
|
value: true
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
popupClass() {
|
|
const { position, safeAreaInsetBottom, isIPhoneX } = this.data;
|
|
return this.classNames('custom-class', 'van-popup', {
|
|
[`van-popup--${position}`]: position,
|
|
[`van-popup--safe`]: isIPhoneX && safeAreaInsetBottom && position === 'bottom'
|
|
});
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onClickOverlay() {
|
|
this.$emit('click-overlay');
|
|
|
|
if (this.data.closeOnClickOverlay) {
|
|
this.$emit('close');
|
|
}
|
|
}
|
|
}
|
|
});
|