feat:【BPM 工作流】增加审批人撤销的能力

This commit is contained in:
YunaiV
2025-08-02 16:25:06 +08:00
parent 5a31e80c2d
commit 2c687266b2
4 changed files with 41 additions and 3 deletions

View File

@@ -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 } });
};