fix: error
Some checks failed
sync2gitee / repo-sync (push) Has been cancelled
Typos Check / Spell Check with Typos (push) Has been cancelled

This commit is contained in:
wxg0103 2025-01-08 17:46:34 +08:00
parent 3e327d52d6
commit 2a63cd6bea

View File

@ -20,7 +20,7 @@
}" }"
> >
<NodeCascader <NodeCascader
ref="nodeCascaderRef" ref="applicationNodeFormRef"
:nodeModel="nodeModel" :nodeModel="nodeModel"
class="w-full" class="w-full"
placeholder="请选择检索问题" placeholder="请选择检索问题"
@ -142,10 +142,10 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { set, groupBy } from 'lodash' import { set, groupBy, create } from 'lodash'
import { app } from '@/main' import { app } from '@/main'
import NodeContainer from '@/workflow/common/NodeContainer.vue' import NodeContainer from '@/workflow/common/NodeContainer.vue'
import { ref, computed, onMounted } from 'vue' import { ref, computed, onMounted, onActivated } from 'vue'
import NodeCascader from '@/workflow/common/NodeCascader.vue' import NodeCascader from '@/workflow/common/NodeCascader.vue'
import type { FormInstance } from 'element-plus' import type { FormInstance } from 'element-plus'
import applicationApi from '@/api/application' import applicationApi from '@/api/application'
@ -214,7 +214,6 @@ const update_field = () => {
if (find_field) { if (find_field) {
return { return {
...item, ...item,
default_value: find_field.default_value,
value: find_field.value, value: find_field.value,
label: label:
typeof item.label === 'object' && item.label != null ? item.label.label : item.label typeof item.label === 'object' && item.label != null ? item.label.label : item.label
@ -223,6 +222,7 @@ const update_field = () => {
return item return item
} }
}) })
console.log(merge_api_input_field_list)
set( set(
props.nodeModel.properties.node_data, props.nodeModel.properties.node_data,
'api_input_field_list', 'api_input_field_list',
@ -235,7 +235,6 @@ const update_field = () => {
if (find_field) { if (find_field) {
return { return {
...item, ...item,
default_value: find_field.default_value,
value: find_field.value, value: find_field.value,
label: label:
typeof item.label === 'object' && item.label != null ? item.label.label : item.label typeof item.label === 'object' && item.label != null ? item.label.label : item.label
@ -265,7 +264,7 @@ const update_field = () => {
} }
}) })
.catch((err) => { .catch((err) => {
set(props.nodeModel.properties, 'status', 500) // set(props.nodeModel.properties, 'status', 500)
}) })
} }