mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-22 22:16:44 +08:00
Merge branch 'feature/GFRS-729【0326】国富人寿国富民安重大疾病保险(2020版)_1' into dev
This commit is contained in:
@@ -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******/
|
||||
|
||||
Reference in New Issue
Block a user