From 8b043d849eed615526e60a20fd67b7a6dfc79d18 Mon Sep 17 00:00:00 2001 From: yangzhe Date: Thu, 10 Jul 2025 17:15:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=8A=A0=E8=BD=BD?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E6=96=87=E6=9C=AC=E4=B8=BA=E2=80=9C=E8=AF=B7?= =?UTF-8?q?=E6=B1=82=E4=B8=AD...=E2=80=9D=E5=B9=B6=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/http.interceptor.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/http.interceptor.js b/common/http.interceptor.js index 5122ba2..e5ba704 100644 --- a/common/http.interceptor.js +++ b/common/http.interceptor.js @@ -31,9 +31,13 @@ const install = (Vue, vm) => { // 方式四,如果token放在了Storage本地存储中,拦截是每次请求都执行的,所以哪怕您重新登录修改了Storage,下一次的请求将会是最新值 // const token = uni.getStorageSync('token'); // config.header.token = token; + + // 注释 7/15 uni.showLoading({ - title: '加载中' + title: '请求中...' }); + // 注释 + // setTimeout(function () { // uni.hideLoading(); // }, 2000);