修改现场返回问题

This commit is contained in:
guanj
2025-10-30 10:08:30 +08:00
parent 0ffc0cd01e
commit 980d5a22b3
5 changed files with 44 additions and 42 deletions

View File

@@ -10,7 +10,7 @@ class HttpRequest {
getInsideConfig() {
const config = {
baseURL: this.baseUrl, // 所有的请求地址前缀部分(没有后端请求不用写)
timeout: 80000, // 请求超时时间(毫秒)
timeout: 60 * 1000 * 3, // 请求超时时间(毫秒)
};
return config;
}