Ver código fonte

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

“fujiacheng” 1 ano atrás
pai
commit
cbc30db696
1 arquivos alterados com 9 adições e 0 exclusões
  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',
+  });
+}