add 添加审批加签 减签

This commit is contained in:
gssong
2024-03-07 21:54:47 +08:00
parent 5f6057253f
commit cc293536e2
3 changed files with 63 additions and 16 deletions

View File

@ -130,13 +130,13 @@ export const backProcess = (data: object) => {
};
/**
* 获取流程状态
* 获取当前任务
* @param taskId
* @returns
*/
export const getBusinessStatus = (taskId: string) => {
export const getTaskById = (taskId: string) => {
return request({
url: '/workflow/task/getBusinessStatus/' + taskId,
url: '/workflow/task/getTaskById/' + taskId,
method: 'get'
});
};