Jelajahi Sumber

管理后台-业务api

panyong 3 tahun lalu
induk
melakukan
7891ebb01a
2 mengubah file dengan 7 tambahan dan 3 penghapusan
  1. 4 0
      htmldev/manage/src/api/index.js
  2. 3 3
      htmldev/manage/vue.config.js

+ 4 - 0
htmldev/manage/src/api/index.js

@@ -15,6 +15,10 @@ axios.interceptors.request.use(config => {
     if (config.method === 'post') {
       config.params = undefined
     }
+    // 临时打补丁
+    if (/^\/v1\//.test(config.url)) {
+      config.url = '/api/admin' + config.url
+    }
     return config
   }, error => Promise.resolve(error.response || error)
 )

+ 3 - 3
htmldev/manage/vue.config.js

@@ -39,11 +39,11 @@ module.exports = {
           '^/api/auth': '/api/auth'
         }
       },
-      '/v1': {
-        target: 'http://tingbang-admin.codedreamit.com/api/admin',
+      '/api/admin/v1': {
+        target: 'http://tingbang-admin.codedreamit.com',
         changeOrigin: true,
         pathRewrite: {
-          '^/v1': '/v1'
+          '^/api/admin/v1': '/api/admin/v1'
         }
       }
     }