diff --git a/src/views/ebiz/common/CalculatePremium.vue b/src/views/ebiz/common/CalculatePremium.vue index c036d429a..b8c449b4d 100644 --- a/src/views/ebiz/common/CalculatePremium.vue +++ b/src/views/ebiz/common/CalculatePremium.vue @@ -2060,7 +2060,7 @@ export default { } } //isTrial为0 ---暂时为富娃娃两全保险(万能型)专配 输入保费校验 - } else if (productCode == 'GFRS_M0035') { + } else if (productCode == 'GFRS_M0035' || productCode == 'GFRS_M0044') { console.log('defalutValue==', defalutValue) console.log("currentEle['amt']==", currentEle['amt']) console.log('riskFactor.rules', riskFactor.rules) @@ -2070,12 +2070,12 @@ export default { //使用rules规则里的第二条控制保额份数 // 年龄在56周岁及以上被保险人,投保本险种时,最低基本保险金额为10000元。超过最低基本保险金额为10000元整数倍。 if (Number(defalutValue) < Number(riskFactor.rules[1].minPrem) || Number(defalutValue) > Number(riskFactor.rules[1].maxPrem)) { - this.$toast('56周岁-60周岁最低基本保险金额为10000元。超过最低基本保险金额为10000元整数倍。') + this.$toast('56周岁-60周岁最低基本保险金额为'+ riskFactor.rules[1].minPrem +'万元。超过最低基本保险金额为10000元整数倍。') this.nextStepFlag = true } else { if ((Number(defalutValue) * 10000) % (Number(currentEle.limit) * 10000) != 0) { // this.defalutAmt = currentEle.rules[productIndex].displayAmount - this.$toast('56周岁-60周岁最低基本保险金额为10000元。超过最低基本保险金额为10000元整数倍。') + this.$toast('56周岁-60周岁最低基本保险金额为'+ riskFactor.rules[1].minPrem +'万元。超过最低基本保险金额为10000元整数倍。') this.nextStepFlag = true } else { this.mainRiskInfluenceAddRisk() @@ -2087,12 +2087,12 @@ export default { } else if (this.saleInsuredPersonInfo.age >= 0 && this.saleInsuredPersonInfo.age <= 55) { //使用rules规则里的第一条控制保额份数 if (Number(defalutValue) < Number(riskFactor.rules[0].minPrem) || Number(defalutValue) > Number(riskFactor.rules[0].maxPrem)) { - this.$toast('0周岁-55周岁最低基本保险金额为50000元。超过最低基本保险金额为10000元整数倍。') + this.$toast('0周岁-55周岁最低基本保险金额为'+ riskFactor.rules[0].minPrem +'万元。超过最低基本保险金额为10000元整数倍。') this.nextStepFlag = true } else { if ((Number(defalutValue) * 10000) % (Number(currentEle.limit) * 10000) != 0) { // this.defalutAmt = currentEle.rules[productIndex].displayAmount - this.$toast('0周岁-55周岁最低基本保险金额为50000元。超过最低基本保险金额为10000元整数倍。') + this.$toast('0周岁-55周岁最低基本保险金额为'+ riskFactor.rules[0].minPrem +'万元。超过最低基本保险金额为10000元整数倍。') this.nextStepFlag = true } else { this.mainRiskInfluenceAddRisk()