feat: request && login && router【e6939e22】(login.vue 和 request.ts 增加租户的选择)

This commit is contained in:
YunaiV
2025-03-20 23:12:55 +08:00
parent 3c3886e345
commit c2358e2132
7 changed files with 113 additions and 35 deletions

View File

@@ -11,8 +11,6 @@ VITE_DEVTOOLS=false
# 是否注入全局loading
VITE_INJECT_APP_LOADING=true
# 默认租户名称
VITE_APP_DEFAULT_TENANT_NAME=芋道源码
# 默认登录用户名
VITE_APP_DEFAULT_USERNAME=admin
# 默认登录密码

View File

@@ -21,6 +21,13 @@ export namespace AuthApi {
data: string;
status: number;
}
/** 租户信息返回值 */
export interface TenantResult {
id: number;
name: string;
}
}
/**
@@ -34,7 +41,8 @@ export async function loginApi(data: AuthApi.LoginParams) {
* 刷新 accessToken
*/
export async function refreshTokenApi() {
return baseRequestClient.post<AuthApi.RefreshTokenResult>('/auth/refresh', {
// TODO @芋艿refreshToken 传递
return baseRequestClient.post<AuthApi.RefreshTokenResult>('/system/auth/refresh', {
withCredentials: true,
});
}
@@ -43,7 +51,7 @@ export async function refreshTokenApi() {
* 退出登录
*/
export async function logoutApi() {
return baseRequestClient.post('/auth/logout', {
return baseRequestClient.post('/system/auth/logout', {
withCredentials: true,
});
}
@@ -62,4 +70,32 @@ export function getAuthPermissionInfoApi() {
return requestClient.get<AuthPermissionInfo>(
'/system/auth/get-permission-info',
);
}
}
/**
* 获取租户列表
*/
export function getTenantSimpleList() {
return requestClient.get<AuthApi.TenantResult[]>(
`/system/tenant/simple-list`,
);
}
/**
* 使用租户域名,获得租户信息
*/
export function getTenantByWebsite(website: string) {
// TODO @芋艿:改成 params 传递?
return requestClient.get<AuthApi.TenantResult>(`/system/tenant/get-by-website?website=${website}`);
}
// TODO 芋艿:后续怎么放好。
// // 获取验证图片 以及token
// export async function getCaptcha(data: any) {
// return baseRequestClient.post('/system/captcha/get', data);
// }
//
// // 滑动或者点选验证
// export async function checkCaptcha(data: any) {
// return baseRequestClient.post('/system/captcha/check', data);
// }

View File

@@ -19,7 +19,7 @@ import { useAuthStore } from '#/store';
import { refreshTokenApi } from './core';
const { apiURL } = useAppConfig(import.meta.env, import.meta.env.PROD);
const { apiURL, tenantEnable } = useAppConfig(import.meta.env, import.meta.env.PROD);
function createRequestClient(baseURL: string, options?: RequestClientOptions) {
const client = new RequestClient({
@@ -67,10 +67,7 @@ function createRequestClient(baseURL: string, options?: RequestClientOptions) {
config.headers.Authorization = formatToken(accessStore.accessToken);
config.headers['Accept-Language'] = preferences.app.locale;
config.headers['tenant-id'] = 1
// TODO @芋艿:优化一下
// config.headers['tenant-id'] =
// tenantEnable && tenantId ? tenantId : undefined;
config.headers['tenant-id'] = tenantEnable ? accessStore.tenantId : undefined;
return config;
},
});

View File

@@ -1,48 +1,85 @@
<script lang="ts" setup>
import type { VbenFormSchema } from '@vben/common-ui';
import type { BasicOption } from '@vben/types';
import type { AuthApi } from '#/api/core/auth';
import { computed, markRaw } from 'vue';
import { computed, markRaw, onMounted, ref } from 'vue';
import { AuthenticationLogin, SliderCaptcha, z } from '@vben/common-ui';
import { $t } from '@vben/locales';
import { useAppConfig } from '@vben/hooks';
import { useAuthStore } from '#/store';
import { useAccessStore } from '@vben/stores';
import { getTenantSimpleList, getTenantByWebsite } from '#/api/core/auth';
defineOptions({ name: 'Login' });
const authStore = useAuthStore();
const accessStore = useAccessStore();
const MOCK_USER_OPTIONS: BasicOption[] = [
{
label: 'Super',
value: 'vben',
},
{
label: 'Admin',
value: 'admin',
},
{
label: 'User',
value: 'jack',
},
];
// 租户列表
const tenantList = ref<AuthApi.TenantResult[]>([]);
// 当前选中的租户编号
const currentTenantId = ref<null | number>();
// 获取租户列表,并默认选中
const fetchTenantList = async () => {
try {
// 获取租户列表、域名对应租户
const websiteTenantPromise = getTenantByWebsite(window.location.hostname);
tenantList.value = await getTenantSimpleList();
// 选中租户:域名 > store 中的租户 > 首个租户
let tenantId: number | null = null;
const websiteTenant = await websiteTenantPromise;
if (websiteTenant?.id) {
tenantId = websiteTenant.id;
}
// 如果没有从域名获取到租户,尝试从 store 中获取
debugger;
if (!tenantId && accessStore.tenantId) {
tenantId = accessStore.tenantId;
}
// 如果还是没有租户,使用列表中的第一个
if (!tenantId && tenantList.value?.[0]?.id) {
tenantId = tenantList.value[0].id;
}
// 设置选中的租户编号
currentTenantId.value = tenantId;
accessStore.setTenantId(tenantId);
} catch (error) {
console.error('获取租户列表失败:', error);
}
};
// 组件挂载时获取租户信息
onMounted(() => {
fetchTenantList();
});
const formSchema = computed((): VbenFormSchema[] => {
return [
{
component: 'VbenSelect',
componentProps: {
options: MOCK_USER_OPTIONS,
placeholder: $t('authentication.selectAccount'),
options: tenantList.value.map((item) => ({
label: item.name,
value: item.id,
})),
placeholder: $t('authentication.selectTenant'),
// value: currentTenantId.value ?? null, // TODO @芋艿change 的设置
onChange: (value: number) => {
// currentTenantId.value = value ?? null;
accessStore.setTenantId(value);
},
},
fieldName: 'selectAccount',
label: $t('authentication.selectAccount'),
rules: z
.string()
.min(1, { message: $t('authentication.selectAccount') })
.optional()
.default('vben'),
fieldName: 'tenantId',
label: $t('authentication.selectTenant'),
// TODO @芋艿:开关租户的逻辑
rules: z.number().default(currentTenantId.value), // TODO @芋艿:默认值的设置
},
{
component: 'VbenInput',