xiongzhu преди 4 години
родител
ревизия
9f892fed5e
променени са 1 файла, в които са добавени 90 реда и са изтрити 90 реда
  1. 90 90
      src/main/nine-space/src/plugins/http.js

+ 90 - 90
src/main/nine-space/src/plugins/http.js

@@ -1,109 +1,109 @@
-import axios from "axios";
-import qs from "qs";
+import axios from 'axios';
+import qs from 'qs';
 /* eslint-disable */
 let baseUrl = process.env.VUE_APP_BASE_URL;
 const axiosInstance = axios.create({
-  baseURL: baseUrl
+    baseURL: baseUrl
 });
 
 axiosInstance.interceptors.request.use(
-  function (config) {
-    config.headers = config.headers || {};
-    let token = localStorage.getItem("nineToken");
-    if (token) {
-      config.headers["Authorization"] = "Bearer " + token;
+    function (config) {
+        config.headers = config.headers || {};
+        let token = localStorage.getItem('nineToken');
+        if (token) {
+            config.headers['Authorization'] = 'Bearer ' + token;
+        }
+        return config;
+    },
+    function (error) {
+        return Promise.reject(error);
     }
-    return config;
-  },
-  function (error) {
-    return Promise.reject(error);
-  }
 );
 
 axiosInstance.interceptors.response.use(
-  function (response) {
-    return response;
-  },
-  function (error) {
-    let errorData = {};
-    if (!error.response) {
-      errorData = {
-        error: "网络错误,请检查网络链接"
-      };
-    } else {
-      errorData = error.response.data;
-      // if (401 === error.response.status) {
-      //     if (router.currentRoute.name !== 'login') {
-      //         router.replace({
-      //             name: 'login',
-      //             params: {
-      //                 from: router.currentRoute.name
-      //             }
-      //         });
-      //     } else {
-      //     }
-      // }
+    function (response) {
+        return response;
+    },
+    function (error) {
+        let errorData = {};
+        if (!error.response) {
+            errorData = {
+                error: '网络错误,请检查网络链接'
+            };
+        } else {
+            errorData = error.response.data;
+            // if (401 === error.response.status) {
+            //     if (router.currentRoute.name !== 'login') {
+            //         router.replace({
+            //             name: 'login',
+            //             params: {
+            //                 from: router.currentRoute.name
+            //             }
+            //         });
+            //     } else {
+            //     }
+            // }
+        }
+        console.log(typeof errorData);
+        if (typeof errorData != 'object') {
+            errorData = {
+                error: '请求失败' + error.response.status
+            };
+        }
+        return Promise.reject(errorData);
     }
-    console.log(typeof errorData);
-    if (typeof errorData != "object") {
-      errorData = {
-        error: "请求失败" + error.response.status
-      };
-    }
-    return Promise.reject(errorData);
-  }
 );
 
 const http = {
-  get(url, params) {
-    params = params || {};
-    return new Promise((resolve, reject) => {
-      axiosInstance
-        .get(
-          url,
-          {
-            params: params
-          },
-          {
-            withCredentials: true
-          }
-        )
-        .then((res) => {
-          resolve(res.data);
-        })
-        .catch((e) => {
-          reject(e);
+    get(url, params) {
+        params = params || {};
+        return new Promise((resolve, reject) => {
+            axiosInstance
+                .get(
+                    url,
+                    {
+                        params: params
+                    },
+                    {
+                        withCredentials: true
+                    }
+                )
+                .then(res => {
+                    resolve(res.data);
+                })
+                .catch(e => {
+                    reject(e);
+                });
         });
-    });
-  },
-  post(url, body, options) {
-    options = options || {};
-    body = body || {};
-    if (!(body instanceof FormData)) {
-      if (options.body !== "json") {
-        body = qs.stringify(body);
-      }
-    }
-    return new Promise((resolve, reject) => {
-      axiosInstance
-        .post(url, body, {
-          withCredentials: true
-        })
-        .then((res) => {
-          resolve(res.data);
-        })
-        .catch((e) => {
-          reject(e);
+    },
+    post(url, body, options) {
+        options = options || {};
+        body = body || {};
+        if (!(body instanceof FormData)) {
+            if (options.body !== 'json') {
+                body = qs.stringify(body);
+            }
+        }
+        return new Promise((resolve, reject) => {
+            axiosInstance
+                .post(url, body, {
+                    withCredentials: true
+                })
+                .then(res => {
+                    resolve(res.data);
+                })
+                .catch(e => {
+                    reject(e);
+                });
         });
-    });
-  }
+    }
 };
 export default {
-  axios: axiosInstance,
-  http: http,
-  install(app, options) {
-    app.config.globalProperties.$baseUrl = baseUrl;
-    app.config.globalProperties.$axios = axiosInstance;
-    app.config.globalProperties.$http = http;
-  }
+    axios: axiosInstance,
+    http: http,
+    install(app, options) {
+        app.config.globalProperties.$baseUrl = baseUrl;
+        app.config.globalProperties.$axios = axiosInstance;
+        app.config.globalProperties.$http = http;
+    }
 };