update 流程部署支持多选

This commit is contained in:
LiuHao
2024-03-18 11:52:44 +08:00
parent a9cd5684b2
commit 5dcfee4c07
2 changed files with 34 additions and 18 deletions

View File

@ -93,7 +93,10 @@ export function deployProcessFile(data: any) {
return request({
url: '/workflow/processDefinition/deployByFile',
method: 'post',
data: data
data: data,
headers: {
repeatSubmit: false
}
});
}
@ -109,4 +112,3 @@ export const migrationDefinition = (currentProcessDefinitionId: string, fromProc
method: 'put'
});
};