删除client文件,添加部分progrest的console输入内容

This commit is contained in:
2025-06-05 21:28:00 +08:00
parent 1835e40526
commit ce4e621741
6 changed files with 59 additions and 344 deletions
+3 -2
View File
@@ -14,10 +14,10 @@ export type ApiResponse<T> = {
export type QueryParams = Record<string, string | number | boolean | undefined>;
// 获取 API 基础 URL
const API_BASE_URL = 'http://172.16.0.58:8008';
// const API_BASE_URL = 'http://nas.7bm.co:3000';
// const API_BASE_URL = 'http://172.18.0.100:3000';
const API_BASE_URL = 'http://nas.7bm.co:3000';
// const API_BASE_URL = 'http://172.16.0.119:9000/admin';
// export const API_BASE_URL = 'http://nas.7bm.co:3000';
// 文档URL前缀
export const DOCUMENT_URL = 'http://nas.7bm.co:9000/docauditai/';
@@ -205,6 +205,7 @@ export async function apiRequest<T>(
url,
headers
};
console.log(`📦 axios-client.ts->请求配置: \n${JSON.stringify(config)}`);
// 删除body属性,避免axios警告
if ('body' in config) {