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

This commit is contained in:
疯狂的狮子Li
2025-07-15 14:07:24 +08:00
parent 0872624adc
commit edacb79ccb

View File

@@ -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({