wzy 1 gadu atpakaļ
vecāks
revīzija
4cec400801
2 mainītis faili ar 28 papildinājumiem un 26 dzēšanām
  1. 26 24
      src/utils/request.js
  2. 2 2
      vue.config.js

+ 26 - 24
src/utils/request.js

@@ -74,32 +74,34 @@ service.interceptors.response.use(
         })
       }
       return Promise.reject(new Error(res.message || 'Error'))
+    }else{
+      return res
     }
-    Message({
-      message: res.message || 'Error',
-      type: 'error',
-      duration: 5 * 1000
-    })
+    // Message({
+    //   message: res.message || 'Error',
+    //   type: 'error',
+    //   duration: 5 * 1000
+    // })
     // 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired;
-    const tokenerr = [20003, '20003', 20004, '20004', 20005, '20005']
-    if (tokenerr.includes(res.code)) {
-      localStorage.clear()
-      removeToken()
-      router.push({ path: '/login' })
-      location.reload()
-    }
-    if (res.code === 50008 || res.code === 50012 || res.code === 50014) {
-      MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or log in again', 'Confirm logout', {
-        confirmButtonText: 'Re-Login',
-        cancelButtonText: 'Cancel',
-        type: 'warning'
-      }).then(() => {
-        store.dispatch('user/resetToken').then(() => {
-          location.reload()
-        })
-      })
-    }
-    return Promise.reject(new Error(res.message || 'Error'))
+    // const tokenerr = [20003, '20003', 20004, '20004', 20005, '20005']
+    // if (tokenerr.includes(res.code)) {
+    //   localStorage.clear()
+    //   removeToken()
+    //   router.push({ path: '/login' })
+    //   location.reload()
+    // }
+    // if (res.code === 50008 || res.code === 50012 || res.code === 50014) {
+    //   MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or log in again', 'Confirm logout', {
+    //     confirmButtonText: 'Re-Login',
+    //     cancelButtonText: 'Cancel',
+    //     type: 'warning'
+    //   }).then(() => {
+    //     store.dispatch('user/resetToken').then(() => {
+    //       location.reload()
+    //     })
+    //   })
+    // }
+    // return Promise.reject(new Error(res.message || 'Error'))
   },
   (error) => {
     console.log(error)

+ 2 - 2
vue.config.js

@@ -40,8 +40,8 @@ module.exports = {
     },
     proxy: {
       '/businessapi': {
-        target: 'http://192.168.0.91:9104',
-        // target: 'https://nsbusinessapitest.tuanfengkeji.cn',
+        // target: 'http://192.168.0.91:9104',
+        target: 'https://nsbusinessapitest.tuanfengkeji.cn',
         // target: 'https://nsbusinessapi.tuanfengkeji.cn',
         changeOrigin: true,
         pathRewrite: {