| | |
| | | <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 { 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, |
| | | } from '#/api/core/auth'; |
| | | import { checkCaptcha, getCaptcha } from '#/api/core/auth'; |
| | | import { useAuthStore } from '#/store'; |
| | | |
| | | defineOptions({ name: 'Login' }); |
| | | |
| | | const authStore = useAuthStore(); |
| | | const accessStore = useAccessStore(); |
| | | const tenantEnable = isTenantEnable(); |
| | | const captchaEnable = isCaptchaEnable(); |
| | | |
| | | const loginRef = ref(); |
| | |
| | | |
| | | const captchaType = 'blockPuzzle'; // 验证码类型:'blockPuzzle' | 'clickWord' |
| | | |
| | | /** 获取租户列表 */ |
| | | const tenantList = ref<AuthApi.TenantResult[]>([]); // 租户列表 |
| | | async function fetchTenantList() { |
| | | if (!tenantEnable) { |
| | | return; |
| | | } |
| | | try { |
| | | // 获取租户列表 |
| | | tenantList.value = await getTenantSimpleList(); |
| | | } 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, |
| | | }); |
| | | } |
| | | |
| | | /** 组件挂载时获取租户信息 */ |
| | | 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'), |
| | | // dependencies: { |
| | | // triggerFields: ['tenantId'], |
| | | // if: tenantEnable, |
| | | // trigger(values) { |
| | | // accessStore.setTenantId(values.tenantId ? Number(values.tenantId) : null); |
| | | // }, |
| | | // }, |
| | | // }, |
| | | { |
| | | component: 'VbenInput', |
| | | componentProps: { |
| | | 'aria-label': $t('authentication.username'), |
| | | autocomplete: 'username', |
| | | placeholder: $t('authentication.usernameTip'), |
| | | }, |
| | | fieldName: 'username', |
| | |
| | | { |
| | | component: 'VbenInputPassword', |
| | | componentProps: { |
| | | 'aria-label': $t('authentication.password'), |
| | | autocomplete: 'current-password', |
| | | placeholder: $t('authentication.passwordTip'), |
| | | }, |
| | | fieldName: 'password', |
| | |
| | | ref="loginRef" |
| | | :form-schema="formSchema" |
| | | :loading="authStore.loginLoading" |
| | | title="欢迎回来" |
| | | sub-title="登录种植业数字化平台,开启智慧种植" |
| | | :show-code-login="false" |
| | | :show-qrcode-login="false" |
| | | :show-third-party-login="false" |