We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900b51d commit c1e760dCopy full SHA for c1e760d
src/api/bpm/task/index.ts
@@ -1,5 +1,9 @@
1
import request from '@/config/axios'
2
3
+export type TaskVO = {
4
+ id: number
5
+}
6
+
7
export const getTodoTaskPage = async (params) => {
8
return await request.get({ url: '/bpm/task/todo-page', params })
9
}
@@ -32,3 +36,8 @@ export const getTaskListByProcessInstanceId = async (processInstanceId) => {
32
36
url: '/bpm/task/list-by-process-instance-id?processInstanceId=' + processInstanceId
33
37
})
34
38
39
40
+// 导出任务
41
+export const exportTask = async (params) => {
42
+ return await request.download({ url: '/bpm/task/export', params })
43
0 commit comments