From 1f6bd41b646739bdece7e74ba1fc6686da81ed3c Mon Sep 17 00:00:00 2001 From: zhonghua Date: Mon, 16 Mar 2026 15:28:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E8=87=AA=E5=8A=A8=E5=8C=96?= =?UTF-8?q?=E4=B8=80=E9=94=AE=E7=99=BB=E5=BD=95=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/auth/LoginView.vue | 23 ------------------- 1 file changed, 23 deletions(-) diff --git a/reading-platform-frontend/src/views/auth/LoginView.vue b/reading-platform-frontend/src/views/auth/LoginView.vue index 2e3cdd5..b444286 100644 --- a/reading-platform-frontend/src/views/auth/LoginView.vue +++ b/reading-platform-frontend/src/views/auth/LoginView.vue @@ -71,17 +71,6 @@ 登录 - - - - 一键测试({{ currentRoleLabel }}账号) - - @@ -143,11 +132,6 @@ const formState = reactive({ const loading = ref(false); -const currentRoleLabel = computed(() => { - const found = roles.find(r => r.value === formState.role); - return found ? found.label : ''; -}); - const selectRole = (role: string) => { formState.role = role; }; @@ -407,13 +391,6 @@ $bg-cream: #FEFEFE; transform: translateY(0); } } - - .quick-test-btn { - height: 44px; - border-radius: 12px; - font-size: 14px; - margin-top: 4px; - } } // 测试账号 - 暂时隐藏