Explorar el Código

feat: 修改配置:支持工单请求服务

莫绍宝 hace 1 año
padre
commit
a763c59763
Se han modificado 5 ficheros con 23 adiciones y 6 borrados
  1. 4 1
      .env.development
  2. 4 1
      .env.production
  3. 4 1
      .env.staging
  4. 8 3
      mock/mock-server.js
  5. 3 0
      src/utils/request.js

+ 4 - 1
.env.development

@@ -2,7 +2,10 @@
 ENV = 'development'
 
 # base api
-VUE_APP_BASE_API = 'https://gmintertest.zfire.top/jsmapi/'
+VUE_APP_BASE_API = 'https://jiasm.zfire.top/mallapi/'
+
+# worker api
+VUE_APP_WORKER_API = 'https://jiasm.zfire.top/pcapi/'
 
 # publicPath
 VUE_APP_PUBLIC_PATH = '/'

+ 4 - 1
.env.production

@@ -2,7 +2,10 @@
 ENV = 'production'
 
 # base api
-VUE_APP_BASE_API = 'https://jsm.gd-jxm.com/api/'
+VUE_APP_BASE_API = 'https://jiasm.zfire.top/mallapi/'
+
+# worker api
+VUE_APP_WORKER_API = 'https://jiasm.zfire.top/pcapi/'
 
 # publicPath
 VUE_APP_PUBLIC_PATH = '/manager/'

+ 4 - 1
.env.staging

@@ -4,7 +4,10 @@ NODE_ENV = production
 ENV = 'staging'
 
 # base api
-VUE_APP_BASE_API = 'https://gmintertest.zfire.top/jsmapi/'
+VUE_APP_BASE_API = 'https://jiasm.zfire.top/mallapi/'
+
+# worker api
+VUE_APP_WORKER_API = 'https://jiasm.zfire.top/pcapi/'
 
 # publicPath
 VUE_APP_PUBLIC_PATH = '/'

+ 8 - 3
mock/mock-server.js

@@ -10,7 +10,7 @@ function registerRoutes(app) {
   let mockLastIndex
   const { mocks } = require('./index.js')
   const mocksForServer = mocks.map(route => {
-    return responseFake(route.url, route.type, route.response)
+    return responseFake(route.url, route.server, route.type, route.response)
   })
   for (const mock of mocksForServer) {
     app[mock.type](mock.url, mock.response)
@@ -32,9 +32,14 @@ function unregisterRoutes() {
 }
 
 // for mock server
-const responseFake = (url, type, respond) => {
+const responseFake = (url, server, type, respond) => {
+  console.log(server)
+  var url = new RegExp(`${process.env.VUE_APP_BASE_API}${url}`);
+  if(server == 'worker') {
+    url = new RegExp(`${process.env.VUE_APP_WORKER_API}${url}`);
+  }
   return {
-    url: new RegExp(`${process.env.VUE_APP_BASE_API}${url}`),
+    url: url,
     type: type || 'get',
     response(req, res) {
       console.log('request invoke:' + req.path)

+ 3 - 0
src/utils/request.js

@@ -14,6 +14,9 @@ const service = axios.create({
 service.interceptors.request.use(
   config => {
     // do something before request is sent
+    if(config.server == 'worker') {
+      config.baseURL = process.env.VUE_APP_WORKER_API;
+    }
 
     if (store.getters.token) {
       // let each request carry token