From df0124f4600180f5062d17e57315024f988df9ed Mon Sep 17 00:00:00 2001 From: wanghaohao Date: Fri, 5 Dec 2025 09:20:14 +0800 Subject: [PATCH] add edit tag operation for content --- automation/web/src/views/scriptLibrary/form/content.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/automation/web/src/views/scriptLibrary/form/content.vue b/automation/web/src/views/scriptLibrary/form/content.vue index 9349163e..1ed6fe68 100644 --- a/automation/web/src/views/scriptLibrary/form/content.vue +++ b/automation/web/src/views/scriptLibrary/form/content.vue @@ -143,6 +143,7 @@ + + import('@/components/KyTable/index.vue')); const CustomColumn = defineAsyncComponent(() => import('@/components/customColumn/index.vue')); +const EditTag = defineAsyncComponent(() => import('./editTag.vue')); const HostSearchForm = defineAsyncComponent(() => import( '@/components/HostSearchForm.vue')); const EditScriptInfo = defineAsyncComponent(() => import( './EditScriptInfo.vue')); const router = useRouter(); @@ -262,9 +265,6 @@ const getCustomColumnFun = async( ) => { { name: 'targetSystem', label: '更新人' }, { name: 'targetSystem', label: '更新时间' }, ] - - - // const userId = getUserId() // if (userId) { // const res = await getCustomColumn(userId) -- Gitee