00fb3fa1 by lihua

fix: 限定状态

1 parent c8d4e32e
...@@ -409,9 +409,6 @@ const strategyData = computed(() => { ...@@ -409,9 +409,6 @@ const strategyData = computed(() => {
409 index: s.index, 409 index: s.index,
410 orderNum: s.orderNum 410 orderNum: s.orderNum
411 }, sc)); 411 }, sc));
412 // if (sc.constraintConnectorValue?.length) {
413 // // connectorList.value.push(...sc.constraintConnectorValue);
414 // }
415 }) 412 })
416 }) 413 })
417 return v; 414 return v;
...@@ -516,6 +513,14 @@ const handleOperatorSelectChange = (val, scope, field) => { ...@@ -516,6 +513,14 @@ const handleOperatorSelectChange = (val, scope, field) => {
516 targetValue: vv.at(-1) 513 targetValue: vv.at(-1)
517 }; 514 };
518 }) 515 })
516 } else if (field == 'constraintStateValue') {
517 svChild.additionValue = val?.map(vv => {
518 let item = props.limitStateOptionList?.find(c => c.guid == vv);
519 return {
520 value: item.value,
521 label: item.label
522 }
523 })
519 } 524 }
520 } 525 }
521 526
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!