From 824dd391728e40108a9a29c7c7a06d8caa57e675 Mon Sep 17 00:00:00 2001 From: chy Date: Mon, 2 Mar 2026 15:13:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BB=9F=E4=B8=80=E8=BA=AB?= =?UTF-8?q?=E4=BB=BD=E8=AE=A4=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Login/Login.vue | 11 ----------- src/views/Login/components/LoginForm.vue | 10 +++++++--- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/src/views/Login/Login.vue b/src/views/Login/Login.vue index 0aa4ae5..5fdfa0a 100644 --- a/src/views/Login/Login.vue +++ b/src/views/Login/Login.vue @@ -95,26 +95,15 @@ const leftStyle = computed(() => { linkMT: leftW / 23.87 + 'px', textMt: leftW / 16.2 + 'px' } - return { lottie, bottomText, logo } }) -onMounted(() => { - - const queryParams = new URLSearchParams(window.location.search); - const paramValue = queryParams.get('url'); // 获取查询参数值,例如 ?paramName=value 中的 value - debugger - -}); - const newClass = computed(() => { const mobile = appStore.getMobile ? 'is-mobile' : '' const toggle = appStore.getFullscreen ? 'is-toggle' : '' return toggle ? toggle : mobile }) -// const route = useRoute(); -// console.log(route.query)