BPM:优化 task 加减签的实现

This commit is contained in:
YunaiV
2024-03-19 01:31:51 +08:00
parent a40866e27f
commit 2d424fc9a6
8 changed files with 102 additions and 82 deletions

View File

@ -47,7 +47,7 @@ export const cancelProcessInstance = async (id: number, reason: string) => {
return await request.delete({ url: '/bpm/process-instance/cancel', data: data })
}
export const getProcessInstance = async (id: number) => {
export const getProcessInstance = async (id: string) => {
return await request.get({ url: '/bpm/process-instance/get?id=' + id })
}