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