diff --git a/src/views/ebiz/common/CalculatePremium.vue b/src/views/ebiz/common/CalculatePremium.vue index 03dd4058b..2aa83b573 100644 --- a/src/views/ebiz/common/CalculatePremium.vue +++ b/src/views/ebiz/common/CalculatePremium.vue @@ -202,6 +202,7 @@ export default { this.influenceAddRiskCodes.push(item.productCode) }) } + this.mainRiskInfluenceAddRisk() //初始化数据试算 this.getTrial() diff --git a/src/views/ebiz/common/MainRiskList.vue b/src/views/ebiz/common/MainRiskList.vue index 57baf236a..1ae341263 100644 --- a/src/views/ebiz/common/MainRiskList.vue +++ b/src/views/ebiz/common/MainRiskList.vue @@ -118,6 +118,9 @@ export default { //保存附加险 localStorage.addtionRiskLst = JSON.stringify(resultData.productTrialInfoDTO.addtionRiskLst) + // console.log('resultData', resultData) + localStorage.isAutoPay = resultData.isAutoPay + localStorage.isRenew = resultData.isRenew let calFactorLst = this.getFactorList(resultData) let hasAddtionRisk = resultData.productTrialInfoDTO.addtionRiskLst ? true : false let currentProductInfo = { diff --git a/src/views/ebiz/sale/AccountInformation.vue b/src/views/ebiz/sale/AccountInformation.vue index bc7c09c7d..c5ac4687c 100644 --- a/src/views/ebiz/sale/AccountInformation.vue +++ b/src/views/ebiz/sale/AccountInformation.vue @@ -25,7 +25,7 @@ 银行卡扫描 - + - +
@@ -136,7 +136,11 @@ export default { // 银行卡扫描是否显示 isScan: false, //是否清空 - isClear: false + isClear: false, + // 是否显示自动垫交 + isAutoPay: '', + // 是否显示自动续保 + isRenew: '' } }, methods: { @@ -370,7 +374,10 @@ export default { that.getBankList() // 默认是投保人名字 that.name = this.saleInsuredInfo.name - // + // 是否显示自动垫交 + this.isAutoPay = localStorage.isAutoPay + // 是否显示自动续保 + this.isRenew = localStorage.isRenew }, mounted() { document.body.style.backgroundColor = '#F5F5F5'