From 65c1d4ccd155d5c5383d530a456fa1d6786c2e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=B3=E5=8D=8E=E7=A5=A5?= Date: Mon, 16 Mar 2020 11:59:07 +0800 Subject: [PATCH] =?UTF-8?q?GFRS-729=E3=80=900326=E3=80=91=E5=9B=BD?= =?UTF-8?q?=E5=AF=8C=E4=BA=BA=E5=AF=BF=E5=9B=BD=E5=AF=8C=E6=B0=91=E5=AE=89?= =?UTF-8?q?=E9=87=8D=E5=A4=A7=E7=96=BE=E7=97=85=E4=BF=9D=E9=99=A9=EF=BC=88?= =?UTF-8?q?2020=E7=89=88=EF=BC=89=5F1=20=E8=B4=A3=E4=BB=BB=E8=BE=93?= =?UTF-8?q?=E5=85=A5=E9=AA=8C=E8=AF=81=E8=B0=83=E6=95=B4=20--=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=E4=BA=BA=EF=BC=9A=E9=98=B3=E5=8D=8E=E7=A5=A5?= 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, 6 insertions(+), 4 deletions(-) diff --git a/src/views/ebiz/common/CalculatePremium.vue b/src/views/ebiz/common/CalculatePremium.vue index 18fe1eefd..0e5c01ef5 100644 --- a/src/views/ebiz/common/CalculatePremium.vue +++ b/src/views/ebiz/common/CalculatePremium.vue @@ -692,13 +692,14 @@ export default { }, //险种 GFRS_A0004 险种验证规则 valiA0004Duty(value, showHint, currentEle) { - if (!currentEle.necess) { + /* if (!(currentEle.necess == true)) { + this.nextStepFlag = false return true - } + }*/ // 验证其他 最小50 其他为50 10 倍数 if (currentEle.duty == '320206' || currentEle.duty == '320207') { - let numberValue = Number(value) - if ((numberValue * 10000) % 10 != 0 || numberValue < 50) { + let numberValue = Number(value) * 10000 + if (numberValue % 10 != 0 || numberValue < 50) { this.$toast(dutyGFRS_A0004Rules[currentEle.duty].msg) this.nextStepFlag = true return false @@ -722,6 +723,7 @@ export default { this.nextStepFlag = false return true } + this.nextStepFlag = false return true }, /********start 通用规则、特殊规则处理 start******/