Merge branch 'feature/bpm-delegate'

# Conflicts:
#	src/views/bpm/processInstance/detail/index.vue
This commit is contained in:
kehaiyou
2023-09-29 12:37:32 +08:00
4 changed files with 106 additions and 7 deletions

View File

@ -51,3 +51,10 @@ export const getReturnList = async (params) => {
export const returnTask = async (data) => {
return await request.put({ url: '/bpm/task/return', data })
}
/**
* 委派
*/
export const delegateTask = async (data) => {
return await request.put({ url: '/bpm/task/delegate', data })
}