From 79240e4f0ca6a830ebbe99e99ea57cde487f65ac Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Wed, 12 Jan 2022 14:45:40 +0800
Subject: [PATCH] 敏感词限制
---
src/router/axios.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/router/axios.js b/src/router/axios.js
index 7b0a00d..36e14e2 100644
--- a/src/router/axios.js
+++ b/src/router/axios.js
@@ -17,7 +17,7 @@
import 'nprogress/nprogress.css';
//默认超时时间
-axios.defaults.timeout = 10000;
+axios.defaults.timeout = 3000000;
//返回其他状态码
axios.defaults.validateStatus = function (status) {
return status >= 200 && status <= 500;
--
Gitblit v1.9.3