add 添加流程自由驳回节点

This commit is contained in:
gssong
2024-03-17 18:26:22 +08:00
parent ade0b3e29e
commit 00a7a8ce23
2 changed files with 73 additions and 6 deletions

View File

@ -215,3 +215,14 @@ export const getInstanceVariable = (taskId: string) => {
method: 'get'
});
};
/**
* 获取可驳回得任务节点
* @returns
*/
export const getTaskNodeList = (processInstanceId: string) => {
return request({
url: `/workflow/task/getTaskNodeList/${processInstanceId}`,
method: 'get'
});
};