From b106385d57a4519c1d17c6d160a42fa4f34a5b24 Mon Sep 17 00:00:00 2001 From: yang chen Date: Tue, 16 Dec 2025 16:36:20 +0800 Subject: [PATCH] =?UTF-8?q?fix(config):=20=E8=B0=83=E6=95=B4=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E8=AF=B7=E6=B1=82=E8=B6=85=E6=97=B6=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将请求超时时间从300000毫秒调整为24小时 - 确保长时间运行的请求不会因超时被中断 --- src/config/axios/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/axios/config.ts b/src/config/axios/config.ts index 8f7d245..53f9a6f 100644 --- a/src/config/axios/config.ts +++ b/src/config/axios/config.ts @@ -16,7 +16,7 @@ const config: { /** * 接口请求超时时间 */ - request_timeout: 300000, + request_timeout: 24 * 60 * 60 * 1000, /** * 默认接口请求类型