feat:【BPM 工作流】增加审批人撤销的能力
This commit is contained in:
@@ -130,3 +130,8 @@ export const getChildrenTaskList = async (id: string) => {
|
||||
`/bpm/task/list-by-parent-task-id?parentTaskId=${id}`,
|
||||
);
|
||||
};
|
||||
|
||||
// 撤回任务
|
||||
export const withdrawTask = async (taskId: string) => {
|
||||
return await requestClient.put('/bpm/task/withdraw', null, { params: { taskId } });
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user