
Some checks are pending
Actions / Litemall-all (11) (push) Waiting to run
Actions / Litemall-all (11.0.3) (push) Waiting to run
Actions / Litemall-all (8) (push) Waiting to run
Actions / Litemall-all (8.0.192) (push) Waiting to run
Actions / Litemall-admin (10.x) (push) Waiting to run
Actions / Litemall-admin (12.x) (push) Waiting to run
Actions / Litemall-admin (14.x) (push) Waiting to run
Actions / Litemall-vue (10.x) (push) Waiting to run
Actions / Litemall-vue (12.x) (push) Waiting to run
Actions / Litemall-vue (14.x) (push) Waiting to run
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
props: {
|
|
show: Boolean,
|
|
title: String,
|
|
cancelText: String,
|
|
description: 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
|
|
},
|
|
safeAreaInsetBottom: {
|
|
type: Boolean,
|
|
value: true
|
|
}
|
|
},
|
|
methods: {
|
|
onSelect(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();
|
|
}
|
|
}
|
|
});
|