From 8e8948cf877207a348cdf72f1d8ff9f19436fb67 Mon Sep 17 00:00:00 2001 From: CaptainB Date: Thu, 9 Oct 2025 17:02:30 +0800 Subject: [PATCH] chore: add description field to FieldFormDialog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --story=1019827 --user=刘瑞斌 工具- 使用参数同启用参数一样增加 提示信息字段,目前参数没有说明,不方便使用 https://www.tapd.cn/62980211/s/1782428 --- ui/src/views/tool/component/FieldFormDialog.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ui/src/views/tool/component/FieldFormDialog.vue b/ui/src/views/tool/component/FieldFormDialog.vue index 191c2840a..cf81b078b 100644 --- a/ui/src/views/tool/component/FieldFormDialog.vue +++ b/ui/src/views/tool/component/FieldFormDialog.vue @@ -28,6 +28,17 @@ + + + @@ -64,6 +75,7 @@ const isEdit = ref(false) const form = ref({ name: '', type: typeOptions[0], + desc: '', source: 'reference', is_required: true, }) @@ -85,6 +97,7 @@ watch(dialogVisible, (bool) => { form.value = { name: '', type: typeOptions[0], + desc: '', source: 'reference', is_required: true, }