From 53e9b23a40186efd149fd5c5350b5eced1f69920 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期二, 25 八月 2026 17:54:26 +0800
Subject: [PATCH] feat(auth): 更新认证页面为农业数字化平台主题

---
 src/views/_core/authentication/login.vue |  141 +++++++++-------------------------------------
 1 files changed, 28 insertions(+), 113 deletions(-)

diff --git a/src/views/_core/authentication/login.vue b/src/views/_core/authentication/login.vue
index 9df6483..883e6ea 100644
--- a/src/views/_core/authentication/login.vue
+++ b/src/views/_core/authentication/login.vue
@@ -1,31 +1,20 @@
 <script lang="ts" setup>
-import type { VbenFormSchema } from '../../../packages/effects/common-ui/src';
+import type { VbenFormSchema } from '@vben/common-ui';
 
 import type { AuthApi } from '#/api/core/auth';
 
-import { computed, onMounted, ref } from 'vue';
-import { useRoute } from 'vue-router';
+import { computed, ref } from 'vue';
 
-import { AuthenticationLogin, Verification, z } from '../../../packages/effects/common-ui/src';
-import { isCaptchaEnable, isTenantEnable } from '../../../packages/effects/hooks/src';
-import { $t } from '../../../packages/locales/src';
-import { useAccessStore } from '../../../packages/stores/src';
+import { AuthenticationLogin, Verification, z } from '@vben/common-ui';
+import { isCaptchaEnable } from '@vben/hooks';
+import { $t } from '@vben/locales';
 
-import {
-  checkCaptcha,
-  getCaptcha,
-  getTenantByWebsite,
-  getTenantSimpleList,
-  socialAuthRedirect,
-} from '#/api/core/auth';
+import { checkCaptcha, getCaptcha } from '#/api/core/auth';
 import { useAuthStore } from '#/store';
 
 defineOptions({ name: 'Login' });
 
-const { query } = useRoute();
 const authStore = useAuthStore();
-const accessStore = useAccessStore();
-const tenantEnable = isTenantEnable();
 const captchaEnable = isCaptchaEnable();
 
 const loginRef = ref();
@@ -33,117 +22,34 @@
 
 const captchaType = 'blockPuzzle'; // 楠岃瘉鐮佺被鍨嬶細'blockPuzzle' | 'clickWord'
 
-/** 鑾峰彇绉熸埛鍒楄〃锛屽苟榛樿閫変腑 */
-const tenantList = ref<AuthApi.TenantResult[]>([]); // 绉熸埛鍒楄〃
-async function fetchTenantList() {
-  if (!tenantEnable) {
-    return;
-  }
-  try {
-    // 鑾峰彇绉熸埛鍒楄〃銆佸煙鍚嶅搴旂鎴�
-    const websiteTenantPromise = getTenantByWebsite(window.location.hostname);
-    tenantList.value = await getTenantSimpleList();
-
-    // 閫変腑绉熸埛锛氬煙鍚� > store 涓殑绉熸埛 > 棣栦釜绉熸埛
-    let tenantId: null | number = null;
-    const websiteTenant = await websiteTenantPromise;
-    if (websiteTenant?.id) {
-      tenantId = websiteTenant.id;
-    }
-    // 濡傛灉娌℃湁浠庡煙鍚嶈幏鍙栧埌绉熸埛锛屽皾璇曚粠 store 涓幏鍙�
-    if (!tenantId && accessStore.tenantId) {
-      tenantId = accessStore.tenantId;
-    }
-    // 濡傛灉杩樻槸娌℃湁绉熸埛锛屼娇鐢ㄥ垪琛ㄤ腑鐨勭涓�涓�
-    if (!tenantId && tenantList.value?.[0]?.id) {
-      tenantId = tenantList.value[0].id;
-    }
-
-    // 璁剧疆閫変腑鐨勭鎴风紪鍙�
-    accessStore.setTenantId(tenantId);
-    loginRef.value.getFormApi().setFieldValue('tenantId', tenantId?.toString());
-  } catch (error) {
-    console.error('鑾峰彇绉熸埛鍒楄〃澶辫触:', error);
-  }
-}
-
 /** 澶勭悊鐧诲綍 */
-async function handleLogin(values: any) {
-  // 濡傛灉寮�鍚獙璇佺爜锛屽垯鍏堥獙璇侀獙璇佺爜
+async function handleLogin(values: AuthApi.LoginParams) {
   if (captchaEnable) {
     verifyRef.value.show();
     return;
   }
-  // 鏃犻獙璇佺爜锛岀洿鎺ョ櫥褰�
   await authStore.authLogin('username', values);
 }
 
 /** 楠岃瘉鐮侀�氳繃锛屾墽琛岀櫥褰� */
-async function handleVerifySuccess({ captchaVerification }: any) {
-  try {
-    await authStore.authLogin('username', {
-      ...(await loginRef.value.getFormApi().getValues()),
-      captchaVerification,
-    });
-  } catch (error) {
-    console.error('Error in handleLogin:', error);
-  }
+async function handleVerifySuccess({
+  captchaVerification,
+}: {
+  captchaVerification: string;
+}) {
+  await authStore.authLogin('username', {
+    ...(await loginRef.value.getFormApi().getValues()),
+    captchaVerification,
+  });
 }
-
-/** 澶勭悊绗笁鏂圭櫥褰� */
-const redirect = query?.redirect;
-async function handleThirdLogin(type: number) {
-  if (type <= 0) {
-    return;
-  }
-  try {
-    // 璁$畻 redirectUri
-    // tricky: type銆乺edirect 闇�瑕佸厛 encode 涓�娆★紝鍚﹀垯閽夐拤鍥炶皟浼氫涪澶便�傞厤鍚� social-login.vue#getUrlValue() 浣跨敤
-    const redirectUri = `${
-      location.origin
-    }/auth/social-login?${encodeURIComponent(
-      `type=${type}&redirect=${redirect || '/'}`,
-    )}`;
-
-    // 杩涜璺宠浆
-    window.location.href = await socialAuthRedirect(type, redirectUri);
-  } catch (error) {
-    console.error('绗笁鏂圭櫥褰曞鐞嗗け璐�:', error);
-  }
-}
-
-/** 缁勪欢鎸傝浇鏃惰幏鍙栫鎴蜂俊鎭� */
-onMounted(() => {
-  fetchTenantList();
-});
 
 const formSchema = computed((): VbenFormSchema[] => {
   return [
     {
-      component: 'VbenSelect',
-      componentProps: {
-        options: tenantList.value.map((item) => ({
-          label: item.name,
-          value: item.id.toString(),
-        })),
-        placeholder: $t('authentication.tenantTip'),
-      },
-      fieldName: 'tenantId',
-      label: $t('authentication.tenant'),
-      rules: z.string().min(1, { message: $t('authentication.tenantTip') }),
-      dependencies: {
-        triggerFields: ['tenantId'],
-        if: tenantEnable,
-        trigger(values) {
-          if (values.tenantId) {
-            accessStore.setTenantId(Number(values.tenantId));
-          }
-        },
-      },
-    },
-    {
       component: 'VbenInput',
       componentProps: {
+        'aria-label': $t('authentication.username'),
+        autocomplete: 'username',
         placeholder: $t('authentication.usernameTip'),
       },
       fieldName: 'username',
@@ -156,6 +62,8 @@
     {
       component: 'VbenInputPassword',
       componentProps: {
+        'aria-label': $t('authentication.password'),
+        autocomplete: 'current-password',
         placeholder: $t('authentication.passwordTip'),
       },
       fieldName: 'password',
@@ -175,8 +83,15 @@
       ref="loginRef"
       :form-schema="formSchema"
       :loading="authStore.loginLoading"
+      title="娆㈣繋鍥炴潵"
+      sub-title="鐧诲綍绉嶆涓氭暟瀛楀寲骞冲彴锛屽紑鍚櫤鎱х妞�"
+      :show-code-login="false"
+      :show-qrcode-login="false"
+      :show-third-party-login="false"
+      :show-register="false"
+      :show-forget-password="false"
+      :show-doc-link="false"
       @submit="handleLogin"
-      @third-login="handleThirdLogin"
     />
     <Verification
       ref="verifyRef"

--
Gitblit v1.9.3