From ac4881837a70049a7138fc9daefb5cb238f74fc8 Mon Sep 17 00:00:00 2001 From: "liu.xiaofeng@ebiz-digits.com" Date: Tue, 9 Apr 2024 17:21:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BD=E5=AF=8C=E6=97=A0=E5=BF=A7=E5=AE=89?= =?UTF-8?q?=E5=BA=B7=E5=8D=A1-=E5=9B=BD=E5=AF=8C=E6=97=A0=E5=BF=A7?= =?UTF-8?q?=E7=BB=BC=E5=90=88=E6=84=8F=E5=A4=96=E4=BC=A4=E5=AE=B3=E4=BF=9D?= =?UTF-8?q?=E9=99=A9=E8=AE=A1=E5=88=92=EF=BC=882024=E7=89=88=EF=BC=89?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/cardList/information.vue | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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() } },