fix(sj_1.1.0-beta3): 修复工作流批次单个删除接口

This commit is contained in:
xlsea 2024-07-10 14:56:57 +08:00
parent a90c42b166
commit cce09016b3

View File

@ -122,8 +122,9 @@ export function fetchNodeStop(nodeId: string, taskBatchId: string) {
export function fetchDeleteWorkflowBatch(id: string) {
return request({
url: `/workflow/batch/${id}`,
method: 'delete'
url: '/workflow/batch/ids',
method: 'delete',
data: [id]
});
}