From 77720991383060ead6a16185e69f18ab3b6f6373 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Tue, 19 Nov 2024 10:20:09 +0800 Subject: [PATCH 1/2] =?UTF-8?q?perf(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20?= =?UTF-8?q?=E5=85=AC=E5=85=B1=E9=93=BE=E6=8E=A5=E8=BF=87=E6=9C=9F=E5=90=8E?= =?UTF-8?q?=E7=A6=81=E6=AD=A2=E5=8A=A0=E8=BD=BD=E8=B5=84=E6=BA=90=E8=AF=B7?= =?UTF-8?q?=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/share/link/index.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/core/core-frontend/src/views/share/link/index.vue b/core/core-frontend/src/views/share/link/index.vue index 70bd935c0e..c1610fdf0c 100644 --- a/core/core-frontend/src/views/share/link/index.vue +++ b/core/core-frontend/src/views/share/link/index.vue @@ -80,7 +80,15 @@ onMounted(async () => { } linkExist.value = true linkExp.value = !!proxyInfo.exp + if (!!proxyInfo.exp) { + loading.value = false + return + } pwdValid.value = !!proxyInfo.pwdValid + if (!pwdValid.value) { + loading.value = false + return + } state.ticketValidVO = proxyInfo.ticketValidVO nextTick(() => { const method = pcanvas?.value?.loadCanvasDataAsync From 1913bd44202b1218f97ecc27eaee80663334e8df Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Tue, 19 Nov 2024 10:33:56 +0800 Subject: [PATCH 2/2] =?UTF-8?q?perf(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20?= =?UTF-8?q?=E7=A7=BB=E5=8A=A8=E7=AB=AF=E5=88=86=E4=BA=AB=E8=BF=87=E6=9C=9F?= =?UTF-8?q?=E5=90=8E=E7=A6=81=E6=AD=A2=E5=8A=A0=E8=BD=BD=E8=B5=84=E6=BA=90?= =?UTF-8?q?=E8=AF=B7=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/share/link/mobile.vue | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/core/core-frontend/src/views/share/link/mobile.vue b/core/core-frontend/src/views/share/link/mobile.vue index 96399f3a13..54efa2d946 100644 --- a/core/core-frontend/src/views/share/link/mobile.vue +++ b/core/core-frontend/src/views/share/link/mobile.vue @@ -1,5 +1,11 @@