Przeglądaj źródła

update 优化 删除后端已经不存在的接口

疯狂的狮子Li 9 miesięcy temu
rodzic
commit
edacb79ccb
1 zmienionych plików z 0 dodań i 8 usunięć
  1. 0 8
      src/api/system/dept/index.ts

+ 0 - 8
src/api/system/dept/index.ts

@@ -38,14 +38,6 @@ export const getDept = (deptId: string | number): AxiosPromise<DeptVO> => {
   });
 };
 
-// 查询部门下拉树结构
-export const treeselect = (): AxiosPromise<DeptTreeVO[]> => {
-  return request({
-    url: '/system/dept/treeselect',
-    method: 'get'
-  });
-};
-
 // 新增部门
 export const addDept = (data: DeptForm) => {
   return request({