Browse Source

no message

linwenxin 1 tuần trước cách đây
mục cha
commit
e22320a020
2 tập tin đã thay đổi với 5 bổ sung2 xóa
  1. 1 1
      src/common/http/index.js
  2. 4 1
      src/common/utils/util.js

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

@@ -98,7 +98,7 @@ export const $http = (url, method, data, json, loadingBool = false, isExecute =
         webLogin(true)
         return {}
       }
-      if ([1001, 501].includes(res.code)) {
+      if ([1001].includes(res.code)) {
         webLogin(true)
         return {}
       } else if (res.code === 4001) {

+ 4 - 1
src/common/utils/util.js

@@ -257,7 +257,10 @@ export function webLogin(bool = false) {
             setStore(res.data)
             resolve({})
           })
-          .catch(reject)
+          .catch(err => {
+            webLogin(true)
+            reject(err)
+          })
       } else {
         resolve({})
       }