modal-protocol-comp.js 1017 Bytes
import api from '@/api/api'
import {
	httpGet,
	httpPost
} from '@/api/fetch-api.js'


export default {
	props: {
		// 是否显示组件
		visible: {
			type: Boolean,
			default: true,
		},
		// 标题,不建议使用
		title: {
			type: String,
			default: "",
		},
		// 是否显示遮罩层
		overlayShow: {
			type: Boolean,
			default: true,
		},
		// 点击关闭回调方法
		close: {
			type: Function,
			default: null
		},
		// 点击蒙层回调方法
		overlay: {
			type: Function,
			default: null
		}
	},
	data() {
		return {
			key: 'value'
		}
	},
	components: {},
	methods: {
		// 点击确认
		onConfirmHandler() {
			if (this.confirm) {
				this.confirm();
			}
		},
		// 点击取消
		onCancelHandler() {
			if (this.cancel) {
				this.cancel();
			}
		},
		// 点击关闭
		onCloseHandler() {
			if (this.close) {
				this.close();
			}
		},
		// 点击蒙层
		onOverLayHandler() {
			if (this.overlay) {
				this.overlay();
			}
		},
		initData() {}
	},
	mounted() {},
	created() {}
}