diff --git a/src/views/ebiz/cardList/information.vue b/src/views/ebiz/cardList/information.vue index eddf79b35..6e6786ee1 100644 --- a/src/views/ebiz/cardList/information.vue +++ b/src/views/ebiz/cardList/information.vue @@ -954,7 +954,7 @@ export default { } //金掌桂无忧卡,少儿安康卡两款卡单产品关闭指定生效日功能,默认自承保之日起第四日零时生效 //GFRS_M0052 国富人寿少儿安康保险产品组合、GFRS_M0041 国富无忧卡-国富人寿综合意外伤害保险计划 - if (this.itemProductDTOS.productCode === 'GFRS_M0052' || this.itemProductDTOS.productCode === 'GFRS_M0041' || this.itemProductDTOS.productCode === 'GFRS_M0071') { + if (this.itemProductDTOS.productCode === 'GFRS_M0052' || this.itemProductDTOS.productCode === 'GFRS_M0041' || this.itemProductDTOS.productCode === 'GFRS_M0071'|| this.itemProductDTOS.productCode === 'GFRS_M0091') { this.cvaliDate = dateUtils.formatDate(afterDate.getAfterDays(Number(this.trialList[0].timeliness)), 'yyyy-MM-dd') //保险期间计算逻辑 let val = this.cvaliDate @@ -1029,7 +1029,6 @@ export default { } }, methods: { - //试算逻辑国富万福卡GFRS_M0071 insureTrial() { // if(this.insuredInfo.birthday || that.$route.query.relationToAppnt == '1'){ if (this.userInfo.relationToInsured == 1) { @@ -2853,7 +2852,7 @@ export default { //被保人职业变化时,重新调用试算接口 'insuredInfo.occupationName': { handler(newV) { - if (newV && this.itemProductDTOS.productCode === 'GFRS_M0071') { + if (newV && (this.itemProductDTOS.productCode === 'GFRS_M0071' || this.itemProductDTOS.productCode === 'GFRS_M0091')) { this.insureTrial() } }, @@ -2863,8 +2862,7 @@ export default { //投被同人时,投保人职业变化时,重新调用试算接口 'userInfo.occupationName': { handler(newV) { - // if (newV && this.itemProductDTOS.productCode === 'GFRS_M0071'&& this.userInfo.relationToInsured == 1) { - if (newV && this.itemProductDTOS.productCode === 'GFRS_M0071') { + if (newV && (this.itemProductDTOS.productCode === 'GFRS_M0071' || this.itemProductDTOS.productCode === 'GFRS_M0091')) { this.insureTrial() } },