From 961af76939a3fbd7b3de0b8f5b1b5bf0aabb771d Mon Sep 17 00:00:00 2001 From: Dan <1224073217@qq.com> Date: Mon, 27 Sep 2021 22:50:52 +0800 Subject: [PATCH] =?UTF-8?q?fix(3.5.2):=20=E4=BF=AE=E5=A4=8D=E5=85=A8?= =?UTF-8?q?=E5=B1=80=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 --- src/utils/request.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/request.js b/src/utils/request.js index 4224b80..388237a 100644 --- a/src/utils/request.js +++ b/src/utils/request.js @@ -11,8 +11,8 @@ const service = axios.create({ baseURL: process.env.BASE_API, // 在跨域请求时发送cookie withCredentials: true, - // 请求超时1分钟(单位:毫秒) - timeout: 300000000 + // 请求超时5分钟(单位:毫秒) + timeout: 300000 }) // 请求拦截器 -- Gitee