fix: download query bug

This commit is contained in:
puhui999
2025-08-31 21:17:11 +08:00
parent 8e4f52c8aa
commit 71d2c380b3
38 changed files with 67 additions and 40 deletions

View File

@@ -133,5 +133,7 @@ export const getChildrenTaskList = async (id: string) => {
// 撤回任务
export const withdrawTask = async (taskId: string) => {
return await requestClient.put('/bpm/task/withdraw', null, { params: { taskId } });
return await requestClient.put('/bpm/task/withdraw', null, {
params: { taskId },
});
};