fix: 限定状态
Showing
1 changed file
with
8 additions
and
3 deletions
| ... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment