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 } } }