兰宝车间质量管理系统-前端
gssong
2024-03-07 cc293536e2f9879f092a63dae790473aca9ac9d5
src/api/workflow/task/index.ts
@@ -130,13 +130,13 @@
};
/**
 * 获取流程状态
 * 获取当前任务
 * @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'
  });
};