Files
app-govern/common/js/request.js
2023-08-29 16:14:09 +08:00

90 lines
2.7 KiB
JavaScript

import config from './config'
import Qs from 'qs'
let arr = []
export default (options = {}) => {
if (options.data == undefined) {
options.data = {}
}
// 防止接口重复点击
if (arr.indexOf(options.url) === -1) {
arr.push(options.url)
} else {
return new Promise((resolve, reject) => {
reject({
code: -1,
msg: '请勿重复提交',
data:options.url
})
})
}
return new Promise((reslove, reject) => {
let url = options.url.indexOf('http') === -1 ? config.domain + options.url : options.url
if (options.params) {
url = url + '?' + Qs.stringify(options.params)
}
uni.request({
url,
timeout: 5000,
data: {
...options.data,
},
header: {
// 'Content-Type': 'application/json;charset=UTF-8',
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
Authorization: uni.getStorageSync('access_token'),
...options.header,
},
method: options.method || 'GET',
success: async (res) => {
console.log(res)
if (arr.indexOf(options.url) > -1) {
setTimeout(() => {
arr.splice(arr.indexOf(options.url), 1)
}, 300)
}
if (res.data.resultCode !== 10000 && res.data.code !== 'A0000') {
errHandler(res.data)
reject(res.data)
} else {
reslove(res.data)
}
},
fail: (err) => {
if (arr.indexOf(options.url) > -1) {
setTimeout(() => {
arr.splice(arr.indexOf(options.url), 1)
}, 300)
}
reject(err)
uni.showToast({
icon: 'none',
title: '网络异常,请稍后再试',
})
},
})
})
}
/**
* 错误处理
* @param {Number} code 错误码
*/
function errHandler(res) {
console.log(res);
switch (res.code) {
case 'A0024':
uni.reLaunch({ url: '/pages/user/login' })
break
case 'A0202':
uni.reLaunch({ url: '/pages/user/login' })
break
default:
uni.showToast({
title: res.message || res.msg || '网络异常,请稍后再试',
duration: 2000,
icon: 'none',
})
break
}
}