diff --git a/apps/web-ele/src/views/bpm/components/simple-process-design/components/nodes-config/child-process-node-config.vue b/apps/web-ele/src/views/bpm/components/simple-process-design/components/nodes-config/child-process-node-config.vue index 46ca6acc4..9ad51c734 100644 --- a/apps/web-ele/src/views/bpm/components/simple-process-design/components/nodes-config/child-process-node-config.vue +++ b/apps/web-ele/src/views/bpm/components/simple-process-design/components/nodes-config/child-process-node-config.vue @@ -175,7 +175,6 @@ const childFormFieldOptions = ref([]); const saveConfig = async () => { activeTabName.value = 'child'; if (!formRef.value) return false; - const valid = await formRef.value.validate().catch(() => false); if (!valid) return false; @@ -400,13 +399,7 @@ onMounted(async () => { label-position="top" :rules="formRules" > - + { v-for="(item, index) in childProcessOptions" :key="index" :value="item.key" - > - {{ item.name }} - + :label="item.name" + /> @@ -441,9 +433,9 @@ onMounted(async () => { v-for="(item, index) in configForm.inVariables" :key="index" > -
+
- {{ field.title }} - + :label="field.title" + />
-
+
- {{ field.title }} - + :label="field.title" + />
-
+
{