【GFRS-3784】一年期产品的责任根据被保人信息动态设置是否可选代码逻辑

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2023-08-16 10:40:16 +08:00
parent cdb37af241
commit cb45c0b691

View File

@@ -757,16 +757,24 @@ export default {
if(this.saleInsuredPersonInfo.insuredAge < 18) {
if(ii.duty == '311504'){
ii.necess = true
} else {
ii.defaultValue = '0'
}
}else{
if(this.saleInsuredPersonInfo.sex == '0'){
if(ii.duty == '311505'){
ii.necess = true
}
if(ii.duty == '311504' || ii.duty == '311506'){
ii.defaultValue = '0'
}
} else {
if(ii.duty == '311506'){
ii.necess = true
}
if(ii.duty == '311504' || ii.duty == '311505'){
ii.defaultValue = '0'
}
}
}
})