From 68ff5db53f6106e69f13a3a9e1cf4c4a04ca8a37 Mon Sep 17 00:00:00 2001 From: ChenYi <296215406@outlook.com> Date: Thu, 23 Oct 2025 14:31:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/devicemanagement/thingmodelinfo/index.vue | 12 +++++------- .../views/devicemanagement/thingmodelinfo/schema.ts | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/apps/web-antd/src/views/devicemanagement/thingmodelinfo/index.vue b/apps/web-antd/src/views/devicemanagement/thingmodelinfo/index.vue index ff55dd7..c232601 100644 --- a/apps/web-antd/src/views/devicemanagement/thingmodelinfo/index.vue +++ b/apps/web-antd/src/views/devicemanagement/thingmodelinfo/index.vue @@ -100,7 +100,6 @@ const editRow: Record = ref({}); // 跟踪数据状态,用于控制按钮显示 const hasData = ref(true); - const [ThingModelModal, thingModelModalApi] = useVbenModal({ draggable: true, footer: true, @@ -278,7 +277,7 @@ const openCopyAnotherThingModelModal = async () => { console.log('打开复制模态框,当前props:', { productId: props.productId, productName: props.productName, - ioTPlatform: props.ioTPlatform + ioTPlatform: props.ioTPlatform, }); copyModalApi.open(); }; @@ -289,14 +288,14 @@ async function submitCopy() { if (!valid) return; const formValues = await copyFormApi.getValues(); - + console.log('复制提交参数:', { formValues, props: { productId: props.productId, productName: props.productName, - ioTPlatform: props.ioTPlatform - } + ioTPlatform: props.ioTPlatform, + }, }); try { @@ -365,7 +364,6 @@ function closeModal() { emit('update:visible', false); emit('close'); } -