78a6082e by lihua

fix: 协商合约

1 parent df50318c
...@@ -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 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!