|
@@ -59,6 +59,10 @@ export const $http = (url, method, data, json, loadingBool = false, isExecute =
|
|
if (~res.message.indexOf('USERPAYING')) {
|
|
if (~res.message.indexOf('USERPAYING')) {
|
|
return Promise.reject(new Error(res.message || 'Error'))
|
|
return Promise.reject(new Error(res.message || 'Error'))
|
|
}
|
|
}
|
|
|
|
+ if (res.code === 4440) {
|
|
|
|
+ location.reload()
|
|
|
|
+ return {}
|
|
|
|
+ }
|
|
if (res.code === 1001) {
|
|
if (res.code === 1001) {
|
|
webLogin(true)
|
|
webLogin(true)
|
|
return {}
|
|
return {}
|
|
@@ -266,6 +270,12 @@ export const axios = function (obj = {}) {
|
|
return {}
|
|
return {}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (res.code === 4440) {
|
|
|
|
+ location.reload()
|
|
|
|
+ reject(new Error(res.message || 'Error'))
|
|
|
|
+ return {}
|
|
|
|
+ }
|
|
|
|
+
|
|
if (res.message || res.code) {
|
|
if (res.message || res.code) {
|
|
uni.showToast({
|
|
uni.showToast({
|
|
title: res.message || 'Error',
|
|
title: res.message || 'Error',
|