feat: 添加审批历史页面,处于办公中心下

This commit is contained in:
2026-04-15 15:09:03 +08:00
parent f4dbe29d8e
commit 09f1adb63b
9 changed files with 105 additions and 50 deletions

View File

@@ -238,6 +238,13 @@ export function delFlowInstance (instId) {
method: 'delete'
})
}
export function listHistoryFlowTask(query) {
return request({
url: '/hrm/flow/task/historyList',
method: 'get',
params: query
})
}
/**
* 查询实例对应的所有审批任务
@@ -247,4 +254,9 @@ export function listAssignTask (instId) {
url: `/hrm/flow/instance/tasks/${instId}`,
method: 'get'
})
/**
* 查询当前用户的审批历史
*/
}