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; - } } // 测试账号 - 暂时隐藏