mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
65 lines
1.1 KiB
TypeScript
65 lines
1.1 KiB
TypeScript
import { VantComponent } from '../common/component';
|
|
import { safeArea } from '../mixins/safe-area';
|
|
import { Weapp } from 'definitions/weapp';
|
|
|
|
VantComponent({
|
|
mixins: [safeArea()],
|
|
|
|
props: {
|
|
show: Boolean,
|
|
title: String,
|
|
cancelText: String,
|
|
round: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
zIndex: {
|
|
type: Number,
|
|
value: 100
|
|
},
|
|
actions: {
|
|
type: Array,
|
|
value: []
|
|
},
|
|
overlay: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
closeOnClickOverlay: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
closeOnClickAction: {
|
|
type: Boolean,
|
|
value: true
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onSelect(event: Weapp.Event) {
|
|
const { index } = event.currentTarget.dataset;
|
|
const item = this.data.actions[index];
|
|
if (item && !item.disabled && !item.loading) {
|
|
this.$emit('select', item);
|
|
|
|
if (this.data.closeOnClickAction) {
|
|
this.onClose();
|
|
}
|
|
}
|
|
},
|
|
|
|
onCancel() {
|
|
this.$emit('cancel');
|
|
},
|
|
|
|
onClose() {
|
|
this.$emit('close');
|
|
},
|
|
|
|
onClickOverlay() {
|
|
this.$emit('click-overlay');
|
|
this.onClose();
|
|
}
|
|
}
|
|
});
|