From 6b5b12ebca86a267a9dbbf799f913cf8af974d82 Mon Sep 17 00:00:00 2001 From: "li.jieyu@ebiz-digits.com" Date: Wed, 9 Jun 2021 17:27:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BD=E5=AF=8C=E4=BA=BA=E5=AF=BF=E4=B8=96?= =?UTF-8?q?=E7=BA=AA=E6=97=A0=E5=BF=A7=E9=87=8D=E5=A4=A7=E7=96=BE=E7=97=85?= =?UTF-8?q?=E4=BF=9D=E9=99=A9=E4=B9=8B=E5=89=8D=E7=AB=AF=E5=BC=80=E5=8F=91?= =?UTF-8?q?=E6=8A=95=E5=B9=B4=E9=BE=84=E6=AE=B5=E6=9C=80=E4=BD=8E=E4=BF=9D?= =?UTF-8?q?=E9=A2=9D=E9=99=90=E5=88=B6=20=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 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/ebiz/common/CalculatePremium.vue b/src/views/ebiz/common/CalculatePremium.vue index d9ba6876e..7e45c0369 100644 --- a/src/views/ebiz/common/CalculatePremium.vue +++ b/src/views/ebiz/common/CalculatePremium.vue @@ -1730,14 +1730,14 @@ export default { //被保险人年龄如果在50-65区间 if (this.saleInsuredPersonInfo.age >= 51 && this.saleInsuredPersonInfo.age <= 60) { //使用rules规则里的第二条控制保额份数 - // 年龄在51周岁及以上被保险人,投保本险种时,最低基本保险金额为50000元。超过最低基本保险金额为10000元整数倍。 + // 年龄在51周岁及以上被保险人,投保本险种时,最低基本保险金额为10000元。超过最低基本保险金额为10000元整数倍。 if (Number(defalutValue) < Number(riskFactor.rules[1].minPrem) || Number(defalutValue) > Number(riskFactor.rules[1].maxPrem)) { - this.$toast('51周岁-60周岁最低基本保险金额为50000元。超过最低基本保险金额为10000元整数倍。') + this.$toast('51周岁-60周岁最低基本保险金额为10000元。超过最低基本保险金额为10000元整数倍。') this.nextStepFlag = true } else { if ((Number(defalutValue) * 10000) % (Number(currentEle.limit) * 10000) != 0) { // this.defalutAmt = currentEle.rules[productIndex].displayAmount - this.$toast('51周岁-60周岁最低基本保险金额为50000元。超过最低基本保险金额为10000元整数倍。') + this.$toast('51周岁-60周岁最低基本保险金额为10000元。超过最低基本保险金额为10000元整数倍。') this.nextStepFlag = true } else { this.mainRiskInfluenceAddRisk() @@ -1745,15 +1745,15 @@ export default { this.getTrial() } } - //年龄在0-50周岁被保险人,投保本险种时,最低基本保险金额为10000元,超过最低基本保险金额为10000元整数倍。 + //年龄在0-50周岁被保险人,投保本险种时,最低基本保险金额为50000元,超过最低基本保险金额为10000元整数倍。 } else if (this.saleInsuredPersonInfo.age >= 0 && this.saleInsuredPersonInfo.age <= 50) { //使用rules规则里的第一条控制保额份数 if (Number(defalutValue) < Number(riskFactor.rules[0].minPrem) || Number(defalutValue) > Number(riskFactor.rules[0].maxPrem)) { - this.$toast('0周岁-50周岁最低基本保险金额为10000元。超过最低基本保险金额为10000元整数倍。') + this.$toast('0周岁-50周岁最低基本保险金额为50000元。超过最低基本保险金额为10000元整数倍。') this.nextStepFlag = true } else { if ((Number(defalutValue) * 10000) % (Number(currentEle.limit) * 10000) != 0) { - this.$toast('0周岁-50周岁最低基本保险金额为10000元。超过最低基本保险金额为10000元整数倍。') + this.$toast('0周岁-50周岁最低基本保险金额为50000元。超过最低基本保险金额为10000元整数倍。') this.nextStepFlag = true } else { this.mainRiskInfluenceAddRisk()