fix -- 调整办公管理模块接口

This commit is contained in:
konbai
2022-04-04 17:59:06 +08:00
parent 0858f853df
commit b51c4d91fd
16 changed files with 189 additions and 322 deletions

View File

@@ -22,7 +22,25 @@ export function startProcess(processDefId, data) {
// 我的发起的流程
export function listOwnProcess(query) {
return request({
url: '/workflow/process/own',
url: '/workflow/process/ownList',
method: 'get',
params: query
})
}
// 我待办的流程
export function listTodoProcess(query) {
return request({
url: '/workflow/process/todoList',
method: 'get',
params: query
})
}
// 我已办的流程
export function listFinishedProcess(query) {
return request({
url: '/workflow/process/finishedList',
method: 'get',
params: query
})