From 49981ef63daffb76cf06b05c39cb3022c37d4acc Mon Sep 17 00:00:00 2001 From: "liu.xiaofeng@ebiz-digits.com" Date: Tue, 27 Jun 2023 13:47:04 +0800 Subject: [PATCH] =?UTF-8?q?=E9=91=AB=E4=BA=AB=E9=87=91=E7=94=9F=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E6=80=A7=E5=88=AB=E5=A5=B3=E9=A2=86=E5=8F=96=E5=B9=B4?= =?UTF-8?q?=E9=BE=84=E5=A2=9E=E5=8A=A070=E9=80=89=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/common/CalculatePremium.vue | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/views/ebiz/common/CalculatePremium.vue b/src/views/ebiz/common/CalculatePremium.vue index 96e78092a..56b0c007a 100644 --- a/src/views/ebiz/common/CalculatePremium.vue +++ b/src/views/ebiz/common/CalculatePremium.vue @@ -2042,7 +2042,8 @@ export default { this.$toast('被保险人年龄不适合该交费期间或保险期间!') trialFlag = false } - }else if (item.productCode == 'GFRS_M0053') { + } + else if (item.productCode == 'GFRS_M0053') { //国富人寿富桂金生养老年金保险 if(sex == '0'){ if( @@ -2102,7 +2103,8 @@ export default { trialFlag = false } } - }else if (item.productCode == 'GFRS_M0061') { + } + else if (item.productCode == 'GFRS_M0061') { //中介渠道鑫享金生养老年金保险 if(sex == '0'){ //男 if( @@ -2161,6 +2163,15 @@ export default { this.nextStepFlag = true this.$toast('被保险人年龄不适合该交费期间!') trialFlag = false + }else if( + (item.pensionAge == '70' && item.payEndYear == '20' && age > 50) || + (item.pensionAge == '70' && item.payEndYear == '10' && age > 60) || + (item.pensionAge == '70' && item.payEndYear == '5' && age > 65) || + (item.pensionAge == '70' && item.payEndYear == '3' && age > 65) + ){ + this.nextStepFlag = true + this.$toast('被保险人年龄不适合该交费期间!') + trialFlag = false } } }