This commit is contained in:
2024-12-25 16:07:51 +08:00
parent e39ea741ea
commit 453208f593
28 changed files with 867 additions and 63 deletions

View File

@@ -1,4 +1,39 @@
// 第一个代理后端地址
export const baseUrlApi = (url: string) => `/base/${url}`;
// 第二个代理后端地址
export const baseUrlAuthrApi = (url: string) => `/auth/${url}`;
import { getToken } from "@/utils/auth";
// 创建通用请求方法
export const request = async (url: string, options: RequestInit = {}) => {
const defaultHeaders = {
"Content-Type": "application/json"
};
// 获取token
const token = getToken();
// 非登录接口才添加token
if (!url.includes("/login") && token) {
defaultHeaders["Authorization"] = `Bearer ${token}`; // 添加Bearer前缀
}
const config = {
...options,
headers: {
...defaultHeaders,
...options.headers
}
};
const response = await fetch(url, config);
const data = await response.json();
if (data.code === 200 || data.status === 200) {
return data;
} else {
throw new Error(data.message || "请求失败");
}
};
// API URL 生成器
export const authApi = (path: string) => `/auth/${path}`;
// 登录接口
export const loginApi = (path: string) => `/auth/${path}`;