解决非admin用户的一些操作权限问题

This commit is contained in:
luckyxz
2022-06-28 14:49:24 +08:00
parent a4cec682a7
commit 6db67e0195
8 changed files with 49 additions and 6 deletions

View File

@@ -9,6 +9,15 @@ export function listCategory(query) {
})
}
// 查询流程分类列表
export function listAllCategory(query) {
return request({
url: '/workflow/category/listAll',
method: 'get',
params: query
})
}
// 查询流程分类详细
export function getCategory(categoryId) {
return request({