'投被关系显示'

This commit is contained in:
proudlx
2021-04-23 15:08:51 +08:00
parent e00b894796
commit fd8d2df6e0
2 changed files with 3 additions and 2 deletions

View File

@@ -5,6 +5,7 @@
<template #boxTitle>
<span class="title">投保人信息</span>
</template>
<InfoCell label="是被保险人的">{{ insuredPersonInfo.relationToAppnt | idToText('relationToAppnt') }}</InfoCell>
<InfoCell label="姓名">{{ userInfo.name }}</InfoCell>
<InfoCell label="证件类型">{{ userInfo.idType | idToText('insuredIdType') }}</InfoCell>
<InfoCell label="证件号码">{{ userInfo.idNo }}</InfoCell>

View File

@@ -67,7 +67,7 @@
<InfoCell label="交费期间" v-if="it.payEndYear == '1000'">一次交清</InfoCell>
<InfoCell label="险种保额(元)" v-if="it.riskCode == 'GFRS_M0015' || it.riskCode == 'GFRS_M0017' || it.riskCode == 'GFRS_M0003'">--</InfoCell>
<InfoCell label="险种保额(元)" v-else>{{ it.amt | moneyFormat }}</InfoCell>
<InfoCell label="险种保费(元)">{{ it.prem }}</InfoCell>
<InfoCell label="险种保费(元)">{{ it.prem | moneyFormat }}</InfoCell>
<div v-for="(addtion, addIndex) in it.addtion" :key="addIndex">
<InfoCell label="险种名称">{{ addtion.riskName }}</InfoCell>
<InfoCell label="保险期间" v-if="addtion.insuYear != '106'">{{
@@ -82,7 +82,7 @@
>--</InfoCell
>
<InfoCell label="险种保额(元)" v-else>{{ addtion.amt | moneyFormat }}</InfoCell>
<InfoCell label="险种保费(元)">{{ addtion.prem }}</InfoCell>
<InfoCell label="险种保费(元)">{{ addtion.prem | moneyFormat }}</InfoCell>
</div>
</div>
</DropdownBox>