From c6b7013c9ca9309896a225ecd1d20910365c0cac Mon Sep 17 00:00:00 2001 From: "wangmingyong@163.com" Date: Fri, 28 Aug 2026 17:07:35 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../zdxt-admin-plus-ui/src/views/login.vue | 431 +++++++++++++----- 1 file changed, 307 insertions(+), 124 deletions(-) diff --git a/zdxt-web-client/zdxt-admin-plus-ui/src/views/login.vue b/zdxt-web-client/zdxt-admin-plus-ui/src/views/login.vue index 8385fa7d..adc0d665 100644 --- a/zdxt-web-client/zdxt-admin-plus-ui/src/views/login.vue +++ b/zdxt-web-client/zdxt-admin-plus-ui/src/views/login.vue @@ -1,81 +1,89 @@ @@ -130,9 +134,9 @@ const loginRules: ElFormRules = { const codeUrl = ref(''); const loading = ref(false); // 验证码开关 -const captchaEnabled = ref(true); +const captchaEnabled = ref(false); // 租户开关 -const tenantEnabled = ref(true); +const tenantEnabled = ref(false); // 注册开关 const register = ref(false); @@ -268,74 +272,234 @@ const doSocialLogin = (type: string) => { }; onMounted(() => { - getCode(); - initTenantList(); +// getCode(); +// initTenantList(); getLoginData(); });