Explorar el Código

Merge branch 'fjc-dev' into 'dev'

fix: 查询部门信息列表接口文件

See merge request skyeye/skyeye_frontend/skyeye-admin!136
楼航飞 hace 1 año
padre
commit
88bc0a6073
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. 9 0
      src/api/deptInfo/index.ts

+ 9 - 0
src/api/deptInfo/index.ts

@@ -0,0 +1,9 @@
+import { http } from '@/utils/http/axios';
+
+// 查询部门信息列表
+export function getDeptInfoList() {
+  return http.request({
+    url: '/dept/getDeptInfoList',
+    method: 'get',
+  });
+}