filter-comp.js 1.33 KB
/**
 * 组件描述:过滤组件
 * 日期根据保单列表中已有月份进行筛选
 *
 */


export default {
	props: {
		// 是否显示组件
		visible: {
			type: Boolean,
			default: true,
		},
		// 取消按钮回调方法
		close: {
			type: Function,
			default: null
		},
		// 确认文案
		confirmText: {
			type: String,
			default: "確認",
		},
		// 取消文案
		cancelText: {
			type: String,
			default: "取消",
		},
		// 确定按钮回调方法
		confirm: {
			type: Function,
			default: null
		},
		// 取消按钮回调方法
		cancel: {
			type: Function,
			default: null
		},
		// 点击蒙层回调方法
		overlay: {
			type: Function,
			default: null
		},

		// 传入数据
		items: {
			type: Array,
			default: () => [

			]
		}
	},
	data() {
		return {
			checkList: [],
			value2: ""
		}
	},
	components: {},
	computed: {
		locale() {
			return this.$i18n.locale || 'tc';
		},
	},
	methods: {
		// 点击关闭
		onCloseHandler() {
			if (this.close) {
				this.close();
			}
		},
		// 点击取消
		onCancelHandler() {
			if (this.close) {
				this.close();
			}
		},
		// 点击蒙层
		onOverLayHandler() {
			if (this.overlay) {
				this.overlay();
			}
		},
		// 点击确认
		onConfirmHandler() {
			if (this.confirm) {
				this.confirm(this.checkList);
			}
		},
		initData() {}
	},
	mounted() {},
	created() {},
}