1. 修复已办任务的 API 接口的 NPE

2. 实现已办任务的 UI 界面
This commit is contained in:
YunaiV
2022-01-09 09:46:34 +08:00
parent fc6a768058
commit a5b8b9b67e
8 changed files with 160 additions and 30 deletions

View File

@ -8,6 +8,14 @@ export function getTodoTaskPage(query) {
})
}
export function getDoneTaskPage(query) {
return request({
url: '/bpm/task/done-page',
method: 'get',
params: query
})
}
export function completeTask(data) {
return request({
url: '/bpm/task/complete',