Blame view

src/pages/custom-service/components/policy-head-list.vue 4.05 KB
joe committed
1
<template>
simon committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
	<div class="list-container">
		<modal2-comp :visible="showDownloadError" :close="()=>{showDownloadError = false}" :content="$t('glbalTips.sysError')"></modal2-comp>
		<div class="cell-group">
			<div class="table-contaner">
				<div class="table-header orange">
					<div class="normal-header">
						<div class="td w1">{{$t('customService.insuranceQuery.InsurantNumber')}}</div>
						<div class="td w2">{{$t('customService.insuranceQuery.Insurant')}}</div>
						<div class="td w1">{{$t('customService.insuranceQuery.InsurantName')}}</div>
						<div class="td w2">{{$t('customService.insuranceQuery.InsurantAmount')}}</div>
						<div class="td w2">{{$t('customService.insuranceQuery.effectiveDate')}}</div>
						<div class="td w2">{{$t('customService.insuranceQuery.period')}}</div>
					</div>
				</div>
				<div class="guide" :class="{rotate180 : hide}" @click="hide = !hide"></div>
			</div>
			<div class="table-content" :class="{hide : hide}">
				<template v-if="myPolicyList">
					<div v-for="(item,index) in myPolicyList" :key="index">
						<template v-if="index < maxShow">
							<div class="data-line" @click="handlePolicySelect(item,index)">
								<div class="td w1 pointer">
									<template v-if="multiSelectable">
										<img v-if="item.activity" class="icon-check pointer" src="@/assets/images/insurance-query/check.png">
										<img v-else class="icon-check pointer" src="@/assets/images/insurance-query/un-check.png">
										<span class="sp" :class="{ac: item.activity}">{{item.policyCode}}</span>
									</template>
									<template v-else>
										<template v-if="model != 'download'">
											<img v-if="selectPolicyCode == item.policyCode" class="icon-check pointer" src="@/assets/images/insurance-query/check.png">
											<img v-else class="icon-check pointer" src="@/assets/images/insurance-query/un-check.png">
										</template>
										<span class="sp" :class="{ac: selectPolicyCode == item.policyCode}">{{item.policyCode}}</span>
										<template v-if="model == 'download'">
											<div class="download" @mouseover="onShowTipsOverHandler($event,item,index)" @mouseout="onShowTipsOutHandler($event,item,index)">
												<div class="download-tips">
													<div class="cont">{{$t('customService.insuranceQuery.downloadClick')}}</div>
												</div>
												<img class="icon-download" src="@/assets/images/insurance-query/icon-down-load.png" alt="">
											</div>
										</template>
									</template>
								</div>
joe committed
45

simon committed
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
								<div class="td w2">{{lan == 'en' ? (item.insuredNameEn ? item.insuredNameEn : item.insuredNameCn) : (item.insuredNameCn ? item.insuredNameCn : item.insuredNameEn)}}</div>
								<div class="td w1">{{formatPolicyName(item.productCode, item.productName)}}</div>
								<div class="td w2">{{item.moneyCode}} {{formatMoney(item.amount,0)}}</div>
								<div class="td w2">{{item.expireAt?item.expireAt.split(" ")[0]:""}}</div>
								<!-- <div class="td w2">{{item.guaranteeAge?item.guaranteeAge.split(" ")[0]:""}}</div> -->
								<div class="td w2">{{formatInsuredPeriod(item.insuredPeriodType,item.insuredPeriodValue)}}</div>

							</div>
							<div class="separator-h" v-if="index < myPolicyList.length - 1 && index < maxShow - 1"></div>
						</template>
					</div>
					<template v-if="!policyList || maxShow < policyList.length">
						<div class="separator-h"></div>
						<div class="data-line show-more-btn" @click="maxShow = policyList.length">{{$t('customService.insuranceQuery.showMore')}}</div>
					</template>
				</template>

				<template v-else>
					<div class="empty">
						<div class="tips">
							<img class="icon" src="@/assets/images/common/icon-alert-i.png" alt="">
							<div class="txt">
								{{$t('customService.insuranceQuery.noPolicy')}}
								<span class="pointer btn" @click="toContactUs">{{$t('customService.insuranceQuery.customService')}}</span>
							</div>
						</div>
					</div>
				</template>
			</div>
		</div>
	</div>
joe committed
77 78 79 80 81 82
</template>


<script src="./policy-head-list.js"></script>
<style lang="scss" scoped>
@import "./policy-head-list.scss";
simon committed
83
</style>