fix: 协商合约
Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -463,8 +463,8 @@ const disableConfirmBtn = computed(() => { | ... | @@ -463,8 +463,8 @@ const disableConfirmBtn = computed(() => { |
| 463 | for (const newItem of newValue) { | 463 | for (const newItem of newValue) { |
| 464 | let oldItem = originValue[index]; | 464 | let oldItem = originValue[index]; |
| 465 | if (newItem.action != oldItem.action || newItem.constraintEnName != oldItem.constraintEnName || | 465 | if (newItem.action != oldItem.action || newItem.constraintEnName != oldItem.constraintEnName || |
| 466 | newItem.constraintOperatorCode != oldItem.constraintOperatorCode || newItem.constraintValue != oldItem.constraintValue || isEqual(newItem.constraintFieldValue, oldItem.constraintFieldValue || | 466 | newItem.constraintOperatorCode != oldItem.constraintOperatorCode || newItem.constraintValue != oldItem.constraintValue || !isEqual(newItem.constraintFieldValue, oldItem.constraintFieldValue || |
| 467 | isEqual(newItem.constraintConnectorValue, oldItem.constraintConnectorValue) | 467 | !isEqual(newItem.constraintConnectorValue, oldItem.constraintConnectorValue) |
| 468 | )) { | 468 | )) { |
| 469 | return true; | 469 | return true; |
| 470 | } | 470 | } | ... | ... |
-
Please register or sign in to post a comment