From 237eabc298d08a3e5f736ac3eef4235f35139cf2 Mon Sep 17 00:00:00 2001 From: zc Date: Wed, 13 May 2026 14:27:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E9=BB=98=E8=AE=A4=E8=B4=A6?= =?UTF-8?q?=E5=8F=B7=E5=AF=86=E7=A0=81=EF=BC=8C=E5=8E=BB=E9=99=A4=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=A1=AB=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/login/components/account/index.vue | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/views/login/components/account/index.vue b/src/views/login/components/account/index.vue index 7247ff5..d50b534 100644 --- a/src/views/login/components/account/index.vue +++ b/src/views/login/components/account/index.vue @@ -9,10 +9,10 @@ @submit="handleLogin" > - + - + @@ -45,11 +45,12 @@ import { useAppStore, useTabsStore, useUserStore } from '@/stores' import { encryptByRsa } from '@/utils/encrypt' const loginConfig = useStorage('login-config', { - rememberMe: true, - username: 'admin', // 演示默认值 - password: 'admin123', // 演示默认值 - // username: debug ? 'admin' : '', // 演示默认值 - // password: debug ? 'admin123' : '', // 演示默认值 + // rememberMe: true, + // username: 'admin', // 演示默认值 + // password: 'admin123', // 演示默认值 + rememberMe: false, + username: '', + password: '', }) // 是否启用验证码 const isCaptchaEnabled = ref(true)