feat: 【工作流】--委派

This commit is contained in:
shizhong
2023-09-26 19:56:57 +08:00
parent b80702cd9d
commit 2c74888712
3 changed files with 104 additions and 5 deletions

View File

@ -48,6 +48,13 @@ export const getReturnList = async (params) => {
}
// 回退
export const returnTask = async (data) => {
return await request.put({ url: '/bpm/task/return', data })
export const okRollback = async (data) => {
return await request.put({ url: '/bpm/task/rollback', data })
}
/**
* 委派
*/
export const delegateTask = async (data) => {
return await request.put({ url: '/bpm/task/delegate', data })
}