e-correspondence-head-list.js 2.04 KB
/**
 * 组件描述:保单查询列表
 */

import api from '@/api/api';
import {
	httpPost,
	requestDomain
} from '@/api/fetch-api.js';

import {
	mapState
} from 'vuex';
import {
	formatMoney,
	getInsuredPeriod,
	getInsuredState,
	getPolicyName
} from "@/utils/biz.js";
import Modal2Comp from '@/components/modal2-comp/modal2-comp.vue';
import FilterComp from '@/components/filter-comp/filter-comp.vue';

export default {
	props: {
		multiSelectable: {
			type: Boolean,
			default: false
		},
		model: {
			type: String,
			default: "download"
		},
	},
	name: "PolicyHeadList",
	data() {
		return {
			myPolicyList: [],
			maxShow: 2,
			selectPolicyCode: "",
			selectPolicyCodes: {},
			hide: false,
			showDownloadError: false,
			filterVisible: false,
			checkList: []
		}
	},
	computed: {
		...mapState({
			policyList: state => state.policyList
		}),
		lan() {
			return this.$i18n.locale;
		},
		i18n() {
			return this.$i18n.messages && this.$i18n.locale ? this.$i18n.messages[this.$i18n.locale] : {};
		},
	},
	methods: {
		onShowTipsOverHandler(event, item, index) {
			let child = event.currentTarget.childNodes[0];
			child.style.display = "block";
		},
		onShowTipsOutHandler(event, item, index) {
			let child = event.currentTarget.childNodes[0];
			child.style.display = "none";
		},
		// 过滤筛选
		onFilterHandler(idx) {
			this.checkList = []
			this.checkList = [
				"复选框 A",
				"复选框 B",
				"复选框 C",
				"复选框 D",
				"复选框 E",
				"复选框 F",
				"复选框 G",
				"复选框 H",
				"复选框 I",
				"复选框 J",
				"复选框 K",
				"复选框 L",
			]
			switch (idx) {
				// 保单号码
				case 1:

					break;
					// 通知书类型
				case 2:

					break;
					// 发出时间
				case 3:

					break;

					// 状况
				case 5:

					break;

				default:
					break;
			}

			// 显示模态窗
			this.filterVisible = true;
		},
		/**
		 * 多选确认
		 */
		onCheckConfirmHandler(evt) {
			console.log("checkList evt :", evt);
		}
	},
	components: {
		Modal2Comp,
		FilterComp
	},
	mounted() {},
}