mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-23 01:46:44 +08:00
feature/GFRS-2215【待完成】重新投保 --添加数据--提交人庞兴月
This commit is contained in:
@@ -221,7 +221,7 @@ export default {
|
||||
getReAppntPolicy({ policyNo: CacheUtils.getLocItem('policyNo') }).then(res => {
|
||||
if (res.result == 0) {
|
||||
//投保人信息返显
|
||||
CacheUtils.setLocItem('orderDetailData', res)
|
||||
CacheUtils.setLocItem('orderDetailData', JSON.stringify(res))
|
||||
this.userInfo = res.orderDTO.appntDTO
|
||||
this.setCustomerMarriage(res.orderDTO.appntDTO.marriage)
|
||||
//是否长期
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<DropdownBox :gutter="false">
|
||||
<template #boxTitle>
|
||||
<span style="font-weight: bold;">主险</span>
|
||||
<span class="ml30">国富人寿附加住院医疗保险(B款)</span>
|
||||
<span class="ml30">{{item.payEndYear}}</span>
|
||||
</template>
|
||||
<div v-for="(item2,index2) in item.dutyLst" :key="index2">
|
||||
<InfoCell v-if="index2===0" label="保险责任">{{item2.dutyName}}</InfoCell>
|
||||
@@ -142,7 +142,9 @@ export default {
|
||||
},
|
||||
created() {
|
||||
// this.getReAppntPolicy()
|
||||
let res = CacheUtils.getLocItem('orderDetailData')
|
||||
let res = JSON.parse(CacheUtils.getLocItem('orderDetailData'))
|
||||
console.log(CacheUtils.getLocItem('orderDetailData'));
|
||||
return false;
|
||||
this.insuredDTOs = res.orderDTO.insuredDTOs[0]
|
||||
this.orderInfoDTO = res.orderDTO.orderInfoDTO
|
||||
this.riskDTOLst = this.insuredDTOs.riskDTOLst
|
||||
@@ -173,6 +175,8 @@ export default {
|
||||
this.additionalList.push(element)
|
||||
}
|
||||
})
|
||||
|
||||
console.log(this.mainList, '===============this.mainList')
|
||||
},
|
||||
methods: {
|
||||
// getReAppntPolicy() {
|
||||
|
||||
Reference in New Issue
Block a user