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