Vue3 重构:流程分配规则

This commit is contained in:
YunaiV
2023-03-26 19:32:19 +08:00
parent 3c6bf37879
commit f5d900db29
12 changed files with 331 additions and 363 deletions

View File

@ -18,7 +18,7 @@ export interface DeptPageReqVO {
}
// 查询部门(精简)列表
export const listSimpleDeptApi = async () => {
export const getSimpleDeptList = async (): Promise<DeptVO[]> => {
return await request.get({ url: '/system/dept/list-all-simple' })
}