Commit 749dfbc4 authored by 郭志伟's avatar 郭志伟

fix: 华贵试算

parent 045101e1
......@@ -167,12 +167,12 @@ export default {
let idNoWho = !relation || relation === "1" ? selfIdNo : idNo;
let oldidNoWho = !relation || relation === "1" ? oldselfIdNo : oldidNo;
if (
!relation &&
idNoWho &&
idNoWho.indexOf("************") === -1 &&
!isIdNo(idNoWho) &&
idNoWho === oldidNoWho &&
amountInsured === oldamountInsured
!relation ||
(idNoWho &&
idNoWho.indexOf("************") === -1 &&
!isIdNo(idNoWho) &&
idNoWho === oldidNoWho &&
amountInsured === oldamountInsured)
) {
return;
}
......@@ -314,7 +314,7 @@ export default {
let idNoWho = !relation || relation === "1" ? selfIdNo : idNo;
let idWho = !relation || relation === "1" ? selfSecId : userInfoSecId;
idWho = idNoWho.indexOf("**") > -1 ? idWho || undefined : undefined;
if (!idNoWho || !amountInsured) return;
if (!idNoWho && !amountInsured) return;
const _param = {
productNo: this.goodId,
productUserInfo: {
......
......@@ -102,7 +102,9 @@ export default {
}
break;
case 3:
if (a === 2 && +p !== 3) {
if (a === 2 && +p === 6) {
item.disabled = false;
} else if (a === 2 && +p !== 3) {
item.disabled = true;
} else {
item.disabled =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment