瀏覽代碼

no message

linwenxin 1 月之前
父節點
當前提交
08e3a5d192
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/common/http/index.js

+ 3 - 3
src/common/http/index.js

@@ -14,7 +14,7 @@ const program = {
   APPNVUE: 'app',
   WEIXIN: 'miniProgram'
 }
-const whiteCodes = [200, 201, 4444]
+const whiteCodes = [200, 201]
 
 export const $http = (url, method, data, json, loadingBool = false, isExecute = true, isForm = false) => {
   //设置请求前拦截器
@@ -59,7 +59,7 @@ export const $http = (url, method, data, json, loadingBool = false, isExecute =
       if (~res.message.indexOf('USERPAYING')) {
         return Promise.reject(new Error(res.message || 'Error'))
       }
-      if (res.code === 4440) {
+      if (res.code === 4444) {
         location.reload()
         return {}
       }
@@ -270,7 +270,7 @@ export const axios = function (obj = {}) {
             return {}
           }
 
-          if (res.code === 4440) {
+          if (res.code === 4444) {
             location.reload()
             reject(new Error(res.message || 'Error'))
             return {}