fix: 修改加载提示文本为“请求中...”并添加注释

This commit is contained in:
yangzhe 2025-07-10 17:15:41 +08:00
parent 33f84a78a0
commit 8b043d849e
1 changed files with 5 additions and 1 deletions

View File

@ -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);