Browse Source

人事对接

liyabo 3 years ago
parent
commit
89af7de546
3 changed files with 4 additions and 4 deletions
  1. 2 2
      .env.development
  2. 1 1
      src/api/system/dept.js
  3. 1 1
      src/api/system/menu.js

+ 2 - 2
.env.development

@@ -3,10 +3,10 @@ ENV = 'development'
 # 如果使用 Nginx 代理后端接口,那么此处需要改为 '/',文件查看 Docker 部署篇,Nginx 配置
 # 接口地址,注意协议,如果你没有配置 ssl,需要将 https 改为 http
 # VUE_APP_BASE_API  = 'http://47.99.156.213:1537'
-VUE_APP_BASE_API  = 'http://114.55.24.6:8086'
+VUE_APP_BASE_API  = 'http://localhost:1537'
 # 如果接口是 http 形式, wss 需要改为 ws
 #VUE_APP_WS_API = 'ws://47.99.156.213:1537'
-VUE_APP_WS_API = 'ws://114.55.24.6:8086'
+VUE_APP_WS_API = 'ws://localhost:1537'
 
 
 # 是否启用 babel-plugin-dynamic-import-node插件

+ 1 - 1
src/api/system/dept.js

@@ -13,7 +13,7 @@ export function getDeptSuperior(ids) {
   return request({
     url: 'api/dept/superior',
     method: 'post',
-    data
+    data: [data]
   })
 }
 

+ 1 - 1
src/api/system/menu.js

@@ -20,7 +20,7 @@ export function getMenuSuperior(ids) {
   return request({
     url: 'api/menus/superior',
     method: 'post',
-    data
+    data: [data]
   })
 }