From 159f86c3fcc5efb5f7fc54a306403caeb29ef14a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=8C=AF=E8=8A=B3?= Date: Tue, 9 Dec 2025 15:04:26 +0800 Subject: [PATCH] feat: update create workflow params --- .../web/src/views/workflow/addWorkflow.vue | 44 +++++++++---------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/automation/web/src/views/workflow/addWorkflow.vue b/automation/web/src/views/workflow/addWorkflow.vue index 596f1102..76a90d9f 100644 --- a/automation/web/src/views/workflow/addWorkflow.vue +++ b/automation/web/src/views/workflow/addWorkflow.vue @@ -15,12 +15,12 @@ label-width="100px" class="demo-ruleForm" > - - + + - - + + - + + + + + + + + + + + + + + - - - - - - 提交 重置 @@ -99,6 +101,9 @@ const editData: any = ref(null); const formData = reactive({ templateName: '', sceneTag: '', + sourceType: '', + modify_user: '', + s_type: '', sceneDescription: '', targetServer: '', }); @@ -134,13 +139,6 @@ const resetForm = () => { ruleFormRef.value.resetFields(); }; -// 模拟目标服务器数据 -const targetServers = ref([ - { id: '1', name: '服务器A' }, - { id: '2', name: '服务器B' }, - { id: '3', name: '服务器C' }, -]); - // 获取场景标签 const tableData = ref([] as any[]); const getList = async () => { -- Gitee