You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
2.9 KiB
124 lines
2.9 KiB
import storage from '../common/utils/storage'
|
|
import {
|
|
removeToken
|
|
} from '@/common/utils/auth'
|
|
|
|
function service(options = {}) {
|
|
|
|
var token = storage.getStorage(storage.constant.token)
|
|
var tenantId = storage.getStorage('tenantId')
|
|
// if(getApp()!=undefined){
|
|
// tenantId = getApp().globalData.tenantId
|
|
// }
|
|
|
|
// if(getApp()!=undefined){
|
|
// requestUrl = getApp().globalData.request_url
|
|
// }
|
|
var requestUrl = ""
|
|
requestUrl = import.meta.env.VITE_BASE_URL
|
|
|
|
options.header = {
|
|
"content-type": "application/json",
|
|
"Authorization": "Bearer " + token,
|
|
"dataType": "json",
|
|
"dataSource": "PDA",
|
|
"tenant-id": tenantId
|
|
};
|
|
options.timeout = 300000
|
|
|
|
options.url = requestUrl + options.url
|
|
|
|
return new Promise((resolve, reject) => {
|
|
options.success = (res) => {
|
|
if (res) {
|
|
if (res.statusCode == 200) {
|
|
if (res.data.code == 0) {
|
|
resolve(res.data);
|
|
} else {
|
|
if (res.data.code == 401) {
|
|
uni.clearStorageSync()
|
|
uni.removeStorageSync('overPackageRecord') // 删除直接翻包中缓存的来源库位
|
|
removeToken();
|
|
uni.reLaunch({
|
|
url: '/pages/login/index'
|
|
})
|
|
}
|
|
if (res.data.msg) {
|
|
if (res.data.msg.includes('get lock')) {
|
|
reject("系统异常:" + "数据库死锁")
|
|
} else {
|
|
reject("系统异常:" + res.data.msg)
|
|
}
|
|
} else {
|
|
reject("系统异常:")
|
|
}
|
|
}
|
|
|
|
} else {
|
|
if (res.data.msg) {
|
|
if (res.data.msg.includes('get lock')) {
|
|
reject("系统异常:" + "数据库死锁")
|
|
} else {
|
|
reject("系统异常:" + res.data.msg)
|
|
}
|
|
} else {
|
|
reject("系统异常:")
|
|
}
|
|
}
|
|
|
|
} else {
|
|
if (res.data.msg) {
|
|
if (res.data.msg.includes('get lock')) {
|
|
reject("系统异常:" + "数据库死锁")
|
|
} else {
|
|
reject("系统异常:" + res.data.msg)
|
|
}
|
|
} else {
|
|
reject("系统异常:")
|
|
}
|
|
|
|
}
|
|
};
|
|
options.fail = (error) => {
|
|
var message = error.errMsg
|
|
if (message === 'Network Error') {
|
|
message = '接口连接异常'
|
|
} else if (message.includes('timeout')) {
|
|
message = '接口请求超时'
|
|
} else if (message.includes('Request failed with status code')) {
|
|
message = '接口' + message.substr(message.length - 3) + '异常'
|
|
} else if (message.includes('get lock')) {
|
|
message = '接口' + "数据库死锁"
|
|
}
|
|
reject("系统异常:" + message);
|
|
console.log("系统异常", message)
|
|
};
|
|
// #ifdef APP
|
|
uni.getNetworkType({
|
|
success: function(res) {
|
|
const networkType = res.networkType;
|
|
console.log("网络类型", networkType)
|
|
if (networkType == "none") {
|
|
reject("当前无网络");
|
|
} else {
|
|
uni.request(options);
|
|
}
|
|
}
|
|
})
|
|
// #endif
|
|
// #ifdef H5
|
|
console.log("网s络H5", navigator.onLine)
|
|
if (navigator.onLine) {
|
|
uni.request(options);
|
|
} else {
|
|
reject("当前无网络");
|
|
}
|
|
// #endif
|
|
|
|
|
|
});
|
|
}
|
|
|
|
|
|
|
|
export default service;
|