feat: 优化代码

This commit is contained in:
2025-08-06 20:25:41 +08:00
parent 5f7d0ceb79
commit 73823c50fd
1179 changed files with 42944 additions and 189654 deletions
+16 -16
View File
@@ -1,25 +1,25 @@
import {getStorageFun,TOKEN_NAME} from './auth.js';
import { getStorageFun, TOKEN_NAME } from './auth.js';
import qs from "qs";
import { BASE_URL,Authorization } from '@/utils/config.js'
import { BASE_URL, Authorization } from '@/utils/config.js'
// utils/http.js (修改后的版本)
// const baseUrl = 'http://192.168.0.108:8087';
function request(options) {
const { url, method = 'GET', data = {}, headers = {},isShowLoading=true } = options;
const { url, method = 'GET', data = {}, headers = {}, isShowLoading = true } = options;
// const token = uni.getStorageSync(tokenKey); // 获取token, 根据实际情况调整获取方式
const token = getStorageFun(TOKEN_NAME); // 获取token, 根据实际情况调整获取方式
const defaultHeaders = {
"Authorization":Authorization,
"Authorization": Authorization,
'HSM-AUTH': token ? token : '', // 如果存在token, 则添加到请求头中
'content-type': ['post','POST'].includes(method) ? 'application/x-www-form-urlencoded' : 'application/json',
'content-type': ['post', 'POST'].includes(method) ? 'application/x-www-form-urlencoded' : 'application/json',
};
if(token){
if (token) {
defaultHeaders['HSM-AUTH'] = token;
}
return new Promise((resolve, reject) => {
if(isShowLoading){
if (isShowLoading) {
// 请求之前做一些事
uni.showLoading({
title: "加载中...",
@@ -34,16 +34,16 @@ function request(options) {
...headers, // 使用展开运算符合并默认头和自定义头
},
success: (res) => {
if(isShowLoading){
if (isShowLoading) {
// 请求之前做一些事
uni.hideLoading();
}
let data = res.data;
if(data && typeof(data) === "string"){
if (data && typeof (data) === "string") {
data = JSON.parse(data);
}
if(data.status === 500){
if (data.status === 500) {
uni.showToast({
title: "系统异常,请稍后再试",
icon: 'none', // 可选 success/loading/none
@@ -55,7 +55,7 @@ function request(options) {
if (data.bizcode === 100) {
resolve(data); // 成功时返回数据
} else if (data.bizcode === 201) {
if([201,200].includes(data.errcode)){
if ([201, 200].includes(data.errcode)) {
uni.showToast({
title: '登录失效,请重新登录',
icon: 'none', // 可选 success/loading/none
@@ -63,7 +63,7 @@ function request(options) {
mask: false, // 是否显示透明蒙层,防止触摸穿透
position: 'middle' // 位置,可选 top/middle/bottom
});
}else{
} else {
uni.showToast({
title: data.msg,
icon: 'none', // 可选 success/loading/none
@@ -76,10 +76,10 @@ function request(options) {
* 205:已经有账号,返回登录页面
* 200 or 201:token失效,返回登录页面
*/
if([201,200,205].includes(data.errcode )){
if ([201, 200, 205].includes(data.errcode)) {
setTimeout(() => {
uni.navigateTo({
url:'/pages/login/login'
url: '/pages/login_package/login/login'
})
}, 2000);
}
@@ -93,7 +93,7 @@ function request(options) {
}
},
fail: (error) => {
if(isShowLoading){
if (isShowLoading) {
// 请求之前做一些事
uni.hideLoading();
}