This commit is contained in:
Jane
2023-12-22 10:59:10 +08:00
parent 751c43e199
commit d1ede2d4aa
2774 changed files with 291509 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import request from '@/utils/request'
export function pageTodoTask(data) {
return request({
url: '/workflow/tasks/pageTodo',
method: 'get',
params: data
})
}
export function pageDoneTask(data) {
return request({
url: '/workflow/tasks/pageDone',
method: 'get',
params: data
})
}
export function executeTask(data) {
return request({
url: '/workflow/tasks/execute/' + data.taskId,
method: 'post',
data: data
})
}