From 6c6c946b04c0fe514ae7aa468f64c80b5cbb0560 Mon Sep 17 00:00:00 2001 From: tangweijie <877588133@qq.com> Date: Wed, 21 Jan 2026 00:15:15 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=AE=80=E5=8C=96=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 隐藏租户选择、记住密码切换按钮 - 移除手机/二维码/注册/三方登录/忘记密码 - Logo 添加苹果风格圆角矩形 - 开发环境开启自动填充,生产环境关闭 --- src/views/Login/Login.vue | 22 +++++------- src/views/Login/components/LoginForm.vue | 44 +++++++++++------------- 2 files changed, 29 insertions(+), 37 deletions(-) diff --git a/src/views/Login/Login.vue b/src/views/Login/Login.vue index 30af14f6..acc53739 100644 --- a/src/views/Login/Login.vue +++ b/src/views/Login/Login.vue @@ -9,7 +9,7 @@ >
- + {{ underlineToHump(appStore.getTitle) }}
@@ -21,7 +21,7 @@ >
{{ t('login.welcome') }}
-
+
{{ t('login.message') }}
@@ -51,16 +51,6 @@ > - - - - - - - - - -
@@ -75,7 +65,7 @@ import { useAppStore } from '@/store/modules/app' import { ThemeSwitch } from '@/layout/components/ThemeSwitch' import { LocaleDropdown } from '@/layout/components/LocaleDropdown' -import { LoginForm, MobileForm, QrCodeForm, RegisterForm, SSOLoginVue, ForgetPasswordForm } from './components' +import { LoginForm } from './components' defineOptions({ name: 'Login' }) @@ -106,6 +96,12 @@ $prefix-cls: #{$namespace}-login; } } } + +.login-message { + columns: 2; + column-gap: 20px; + line-height: 1.8; +}