From e1d369b205bd320299f5842b72840988ce4914ab Mon Sep 17 00:00:00 2001 From: 2910410219 <2910410219@qq.com> Date: Fri, 31 Jul 2026 11:40:28 +0800 Subject: [PATCH] =?UTF-8?q?feat(login):=20=E9=9A=90=E8=97=8F=E6=89=8B?= =?UTF-8?q?=E6=9C=BA=E5=8F=B7=E7=99=BB=E5=BD=95=E4=B8=8E=E6=89=AB=E7=A0=81?= =?UTF-8?q?=E7=99=BB=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude --- src/views/login/index.vue | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 9a80c9f..a0284b1 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -16,8 +16,8 @@
- -
+ +
@@ -40,17 +40,20 @@ +
- +
@@ -70,8 +73,9 @@ import logoMini from '/@/assets/logo-mini.svg'; import loginIconTwo from '/@/assets/login-icon-two.svg'; import { NextLoading } from '/@/utils/loading'; import Account from './component/account.vue'; -import Mobile from './component/mobile.vue'; -import Scan from './component/scan.vue'; +// 手机号登录 / 扫码登录暂时隐藏,恢复时取消注释下方两行 +// import Mobile from './component/mobile.vue'; +// import Scan from './component/scan.vue'; // 定义接口来定义对象的类型 interface LoginState { @@ -81,7 +85,11 @@ interface LoginState { export default defineComponent({ name: 'loginIndex', - components: { Account, Mobile, Scan }, + components: { + Account, + // Mobile, // 暂时隐藏,恢复时取消注释 + // Scan, // 暂时隐藏,恢复时取消注释 + }, setup() { const storesThemeConfig = useThemeConfig(); const { themeConfig } = storeToRefs(storesThemeConfig);