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

pull/62/head
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 # 是否注入全局loading
VITE_INJECT_APP_LOADING=true VITE_INJECT_APP_LOADING=true
# 默认租户名称
VITE_APP_DEFAULT_TENANT_NAME=芋道源码
# 默认登录用户名 # 默认登录用户名
VITE_APP_DEFAULT_USERNAME=admin VITE_APP_DEFAULT_USERNAME=admin
# 默认登录密码 # 默认登录密码

View File

@ -21,6 +21,13 @@ export namespace AuthApi {
data: string; data: string;
status: number; status: number;
} }
/** 租户信息返回值 */
export interface TenantResult {
id: number;
name: string;
}
} }
/** /**
@ -34,7 +41,8 @@ export async function loginApi(data: AuthApi.LoginParams) {
* accessToken * accessToken
*/ */
export async function refreshTokenApi() { export async function refreshTokenApi() {
return baseRequestClient.post<AuthApi.RefreshTokenResult>('/auth/refresh', { // TODO @芋艿refreshToken 传递
return baseRequestClient.post<AuthApi.RefreshTokenResult>('/system/auth/refresh', {
withCredentials: true, withCredentials: true,
}); });
} }
@ -43,7 +51,7 @@ export async function refreshTokenApi() {
* 退 * 退
*/ */
export async function logoutApi() { export async function logoutApi() {
return baseRequestClient.post('/auth/logout', { return baseRequestClient.post('/system/auth/logout', {
withCredentials: true, withCredentials: true,
}); });
} }
@ -62,4 +70,32 @@ export function getAuthPermissionInfoApi() {
return requestClient.get<AuthPermissionInfo>( return requestClient.get<AuthPermissionInfo>(
'/system/auth/get-permission-info', '/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'; 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) { function createRequestClient(baseURL: string, options?: RequestClientOptions) {
const client = new RequestClient({ const client = new RequestClient({
@ -67,10 +67,7 @@ function createRequestClient(baseURL: string, options?: RequestClientOptions) {
config.headers.Authorization = formatToken(accessStore.accessToken); config.headers.Authorization = formatToken(accessStore.accessToken);
config.headers['Accept-Language'] = preferences.app.locale; config.headers['Accept-Language'] = preferences.app.locale;
config.headers['tenant-id'] = 1 config.headers['tenant-id'] = tenantEnable ? accessStore.tenantId : undefined;
// TODO @芋艿:优化一下
// config.headers['tenant-id'] =
// tenantEnable && tenantId ? tenantId : undefined;
return config; return config;
}, },
}); });

View File

@ -1,48 +1,85 @@
<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 { 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 { AuthenticationLogin, SliderCaptcha, z } from '@vben/common-ui';
import { $t } from '@vben/locales'; import { $t } from '@vben/locales';
import { useAppConfig } from '@vben/hooks';
import { useAuthStore } from '#/store'; import { useAuthStore } from '#/store';
import { useAccessStore } from '@vben/stores';
import { getTenantSimpleList, getTenantByWebsite } from '#/api/core/auth';
defineOptions({ name: 'Login' }); defineOptions({ name: 'Login' });
const authStore = useAuthStore(); const authStore = useAuthStore();
const accessStore = useAccessStore();
const MOCK_USER_OPTIONS: BasicOption[] = [ //
{ const tenantList = ref<AuthApi.TenantResult[]>([]);
label: 'Super', //
value: 'vben', const currentTenantId = ref<null | number>();
},
{ //
label: 'Admin', const fetchTenantList = async () => {
value: 'admin', try {
}, //
{ const websiteTenantPromise = getTenantByWebsite(window.location.hostname);
label: 'User', tenantList.value = await getTenantSimpleList();
value: 'jack',
}, // > 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[] => { const formSchema = computed((): VbenFormSchema[] => {
return [ return [
{ {
component: 'VbenSelect', component: 'VbenSelect',
componentProps: { componentProps: {
options: MOCK_USER_OPTIONS, options: tenantList.value.map((item) => ({
placeholder: $t('authentication.selectAccount'), 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', fieldName: 'tenantId',
label: $t('authentication.selectAccount'), label: $t('authentication.selectTenant'),
rules: z // TODO @
.string() rules: z.number().default(currentTenantId.value), // TODO @
.min(1, { message: $t('authentication.selectAccount') })
.optional()
.default('vben'),
}, },
{ {
component: 'VbenInput', component: 'VbenInput',

View File

@ -6,6 +6,7 @@
"loginSuccessDesc": "Welcome Back", "loginSuccessDesc": "Welcome Back",
"loginSubtitle": "Enter your account details to manage your projects", "loginSubtitle": "Enter your account details to manage your projects",
"selectAccount": "Quick Select Account", "selectAccount": "Quick Select Account",
"selectTenant": "Please Select Tenant",
"username": "Username", "username": "Username",
"password": "Password", "password": "Password",
"usernameTip": "Please enter username", "usernameTip": "Please enter username",

View File

@ -6,6 +6,7 @@
"loginSuccessDesc": "欢迎回来", "loginSuccessDesc": "欢迎回来",
"loginSubtitle": "请输入您的帐户信息以开始管理您的项目", "loginSubtitle": "请输入您的帐户信息以开始管理您的项目",
"selectAccount": "快速选择账号", "selectAccount": "快速选择账号",
"selectTenant": "请选择租户",
"username": "账号", "username": "账号",
"password": "密码", "password": "密码",
"usernameTip": "请输入用户名", "usernameTip": "请输入用户名",

View File

@ -35,6 +35,10 @@ interface AccessState {
* accessToken * accessToken
*/ */
refreshToken: AccessToken; refreshToken: AccessToken;
/**
*
*/
tenantId: null | number;
} }
/** /**
@ -82,10 +86,13 @@ export const useAccessStore = defineStore('core-access', {
setRefreshToken(token: AccessToken) { setRefreshToken(token: AccessToken) {
this.refreshToken = token; this.refreshToken = token;
}, },
setTenantId(tenantId: null | number) {
this.tenantId = tenantId;
}
}, },
persist: { persist: {
// 持久化 // 持久化
pick: ['accessToken', 'refreshToken', 'accessCodes'], // TODO @芋艿accessCodes 不持久化 pick: ['accessToken', 'refreshToken', 'tenantId'],
}, },
state: (): AccessState => ({ state: (): AccessState => ({
accessCodes: [], accessCodes: [],
@ -95,6 +102,7 @@ export const useAccessStore = defineStore('core-access', {
isAccessChecked: false, isAccessChecked: false,
loginExpired: false, loginExpired: false,
refreshToken: null, refreshToken: null,
tenantId: null
}), }),
}); });