工作流表单+模型代码提交

This commit is contained in:
2024-05-09 14:18:39 +08:00
parent eeef608ccd
commit 06611f527a
266 changed files with 18227 additions and 22039 deletions

View File

@@ -51,4 +51,14 @@ export function getRoleListByIds(data:any) {
})
}
/**
* 查询所有角色
*/
export const getRoleSimpleList = () => {
return createAxios({
url: '/user-boot/role/simpleList',
method: 'GET'
})
}

View File

@@ -171,5 +171,16 @@ export function getUserListByIds(data:any) {
})
}
/**
* 查询所有用户
*/
export const getUserSimpleList = () => {
return request({
url: '/user-boot/user/simpleList',
method: 'GET'
})
}