modal2-comp.js 841 Bytes

export default {
	props: {
		// 是否显示组件
		visible: {
			type: Boolean,
			default: true,
		},
		// 标题名称 需要再 assets/images/common/ 目录下添加图标
		icon: {
			type: String,
			default: "succ",
		},
		// 文案
		content: {
			type: String,
			default: "",
		},
		// 取消按钮回调方法
		close: {
			type: Function,
			default: null
		},
		// 点击蒙层回调方法
		overlay: {
			type: Function,
			default: null
		}
	},
	data() {
		return {
			key: 'value'
		}
	},
	components: {},
	computed: {
		locale() {
			return this.$i18n.locale || 'tc';
		},
	},
	methods: {
		// 点击关闭
		onCloseHandler() {
			if (this.close) {
				this.close();
			}
		},
		// 点击蒙层
		onOverLayHandler() {
			if (this.overlay) {
				this.overlay();
			}
		},
		initData() {}
	},
	mounted() {},
	created() {}
}