From 91610e51af2fa7e5ad62c90ede893e129123040c Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Sun, 16 Nov 2025 15:06:34 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E5=B5=8C?= =?UTF-8?q?=E5=85=A5=E5=BC=8F=E5=9C=BA=E6=99=AF=E5=A4=8D=E5=88=B6=E4=BB=AA?= =?UTF-8?q?=E8=A1=A8=E6=9D=BF=E6=8A=A5=E9=94=99=E6=B2=A1=E6=9C=89=E6=9D=83?= =?UTF-8?q?=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/dashboard/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/dashboard/index.vue b/core/core-frontend/src/views/dashboard/index.vue index b7ec046475..ec496f1b6c 100644 --- a/core/core-frontend/src/views/dashboard/index.vue +++ b/core/core-frontend/src/views/dashboard/index.vue @@ -205,7 +205,8 @@ onMounted(async () => { const createType = embeddedStore.createType || router.currentRoute.value.query.createType const templateParams = embeddedStore.templateParams || router.currentRoute.value.query.templateParams - const checkResult = await checkPer(resourceId) + const checkResourceId = opt && opt === 'copy' ? null : resourceId + const checkResult = await checkPer(checkResourceId as string) if (!checkResult) { return }