feat: 【工作流】--委派

This commit is contained in:
kehaiyou
2023-09-24 15:44:02 +08:00
parent de79e79d91
commit 20fe343646
4 changed files with 102 additions and 3 deletions

View File

@ -57,3 +57,10 @@ export const getReturnList = async (params) => {
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 })
}