feat: request && login && router【e6939e22】(验证码)

pull/62/head
YunaiV 2025-03-24 20:11:44 +08:00
parent c2914d2002
commit 1112409a3b
3 changed files with 62 additions and 47 deletions

View File

@ -30,16 +30,12 @@ export namespace AuthApi {
} }
/** /** 登录 */
*
*/
export async function loginApi(data: AuthApi.LoginParams) { export async function loginApi(data: AuthApi.LoginParams) {
return requestClient.post<AuthApi.LoginResult>('/system/auth/login', data); return requestClient.post<AuthApi.LoginResult>('/system/auth/login', data);
} }
/** /** 刷新 accessToken */
* accessToken
*/
export async function refreshTokenApi() { export async function refreshTokenApi() {
// TODO @芋艿refreshToken 传递 // TODO @芋艿refreshToken 传递
return baseRequestClient.post<AuthApi.RefreshTokenResult>('/system/auth/refresh', { return baseRequestClient.post<AuthApi.RefreshTokenResult>('/system/auth/refresh', {
@ -47,55 +43,38 @@ export async function refreshTokenApi() {
}); });
} }
/** /** 退出登录 */
* 退
*/
export async function logoutApi() { export async function logoutApi() {
return baseRequestClient.post('/system/auth/logout', { return baseRequestClient.post('/system/auth/logout', {
withCredentials: true, withCredentials: true,
}); });
} }
// /** /** 获取权限信息 */
// * 获取用户权限码
// */
// export async function getAccessCodesApi() {
// return requestClient.get<string[]>('/auth/codes');
// }
/**
*
*/
export function getAuthPermissionInfoApi() { export function getAuthPermissionInfoApi() {
return requestClient.get<AuthPermissionInfo>( return requestClient.get<AuthPermissionInfo>(
'/system/auth/get-permission-info', '/system/auth/get-permission-info',
); );
} }
/** /** 获取租户列表 */
*
*/
export function getTenantSimpleList() { export function getTenantSimpleList() {
return requestClient.get<AuthApi.TenantResult[]>( return requestClient.get<AuthApi.TenantResult[]>(
`/system/tenant/simple-list`, `/system/tenant/simple-list`,
); );
} }
/** /** 使用租户域名,获得租户信息 */
* 使
*/
export function getTenantByWebsite(website: string) { export function getTenantByWebsite(website: string) {
// TODO @芋艿:改成 params 传递?
return requestClient.get<AuthApi.TenantResult>(`/system/tenant/get-by-website?website=${website}`); return requestClient.get<AuthApi.TenantResult>(`/system/tenant/get-by-website?website=${website}`);
} }
// TODO 芋艿:后续怎么放好。 /** 获取验证码 */
// // 获取验证图片 以及token export async function getCaptcha(data: any) {
// export async function getCaptcha(data: any) { return baseRequestClient.post('/system/captcha/get', data);
// return baseRequestClient.post('/system/captcha/get', data); }
// }
// /** 校验验证码 */
// // 滑动或者点选验证 export async function checkCaptcha(data: any) {
// export async function checkCaptcha(data: any) { return baseRequestClient.post('/system/captcha/check', data);
// return baseRequestClient.post('/system/captcha/check', data); }
// }

View File

@ -109,7 +109,6 @@ function setupAccessGuard(router: Router) {
const userRoles = userStore.userRoles ?? []; const userRoles = userStore.userRoles ?? [];
// 生成菜单和路由 // 生成菜单和路由
debugger;
const { accessibleMenus, accessibleRoutes } = await generateAccess({ const { accessibleMenus, accessibleRoutes } = await generateAccess({
roles: userRoles, roles: userRoles,
router, router,

View File

@ -1,11 +1,10 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { VbenFormSchema } from '@vben/common-ui'; import type { VbenFormSchema } from '@vben/common-ui';
import type { BasicOption } from '@vben/types'; import {type AuthApi, checkCaptcha, getCaptcha } from '#/api/core/auth';
import type { AuthApi } from '#/api/core/auth';
import { computed, markRaw, onMounted, ref } from 'vue'; import { computed, markRaw, onMounted, ref } from 'vue';
import { AuthenticationLogin, SliderCaptcha, z } from '@vben/common-ui'; import { AuthenticationLogin, Verification, z } from '@vben/common-ui';
import { $t } from '@vben/locales'; import { $t } from '@vben/locales';
import { useAppConfig } from '@vben/hooks'; import { useAppConfig } from '@vben/hooks';
@ -13,21 +12,24 @@ import { useAuthStore } from '#/store';
import { useAccessStore } from '@vben/stores'; import { useAccessStore } from '@vben/stores';
import { getTenantSimpleList, getTenantByWebsite } from '#/api/core/auth'; import { getTenantSimpleList, getTenantByWebsite } from '#/api/core/auth';
const { tenantEnable } = useAppConfig(import.meta.env, import.meta.env.PROD); const { tenantEnable, captchaEnable } = useAppConfig(import.meta.env, import.meta.env.PROD);
defineOptions({ name: 'Login' }); defineOptions({ name: 'Login' });
const authStore = useAuthStore(); const authStore = useAuthStore();
const accessStore = useAccessStore(); const accessStore = useAccessStore();
//
const tenantList = ref<AuthApi.TenantResult[]>([]);
// AuthenticationLogin
const loginRef = ref(); const loginRef = ref();
const verifyRef = ref();
const captchaType = 'blockPuzzle'; // 'blockPuzzle' | 'clickWord'
const tenantList = ref<AuthApi.TenantResult[]>([]); //
/** 获取租户列表,并默认选中 */ /** 获取租户列表,并默认选中 */
const fetchTenantList = async () => { const fetchTenantList = async () => {
if (!tenantEnable) {
return;
}
try { try {
// //
const websiteTenantPromise = getTenantByWebsite(window.location.hostname); const websiteTenantPromise = getTenantByWebsite(window.location.hostname);
@ -56,7 +58,31 @@ const fetchTenantList = async () => {
} }
}; };
// /** 处理登录 */
const handleLogin = async (values: any) => {
//
if (captchaEnable) {
verifyRef.value.show();
return;
}
//
await authStore.authLogin(values);
}
/** 验证码通过,执行登录 */
const handleVerifySuccess = async ({ captchaVerification }: any) => {
try {
await authStore.authLogin({
...(await loginRef.value.getFormApi().getValues()),
captchaVerification,
});
} catch (error) {
console.error('Error in handleLogin:', error);
}
};
/** 组件挂载时获取租户信息 */
onMounted(() => { onMounted(() => {
fetchTenantList(); fetchTenantList();
}); });
@ -122,6 +148,17 @@ const formSchema = computed((): VbenFormSchema[] => {
ref="loginRef" ref="loginRef"
:form-schema="formSchema" :form-schema="formSchema"
:loading="authStore.loginLoading" :loading="authStore.loginLoading"
@submit="authStore.authLogin" @submit="handleLogin"
/>
<!-- TODO @芋艿貌似加了后登录界面变形了 -->
<Verification
ref="verifyRef"
v-if="captchaEnable"
:captcha-type="captchaType"
:check-captcha-api="checkCaptcha"
:get-captcha-api="getCaptcha"
:img-size="{ width: '400px', height: '200px' }"
mode="pop"
@on-success="handleVerifySuccess"
/> />
</template> </template>