From efb65dcc09ce82d0831f85c97c026f17dc8c53c4 Mon Sep 17 00:00:00 2001 From: "li.jieyu@ebiz-digits.com" Date: Mon, 27 Dec 2021 17:17:29 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=B8=AA=E9=99=A9=E6=B8=A0=E9=81=93?= =?UTF-8?q?=E5=85=AB=E6=A1=82=E6=97=A0=E5=BF=A7=E9=87=8D=E5=A4=A7=E7=96=BE?= =?UTF-8?q?=E7=97=85=E4=BF=9D=E9=99=A9=E6=8A=95=E4=BF=9D=E8=A7=84=E5=88=99?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E3=80=91--=20=20=E4=B8=AA=E9=99=A9=E6=B8=A0?= =?UTF-8?q?=E9=81=93=E5=85=AB=E6=A1=82=E6=97=A0=E5=BF=A7=E9=87=8D=E5=A4=A7?= =?UTF-8?q?=E7=96=BE=E7=97=85=E4=BF=9D=E9=99=A9=E6=8A=95=E4=BF=9D=E8=A7=84?= =?UTF-8?q?=E5=88=99=E8=B0=83=E6=95=B4=20--=E6=9D=8E=E5=A9=95=E7=85=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/common/CalculatePremium.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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()