兰宝车间质量管理系统-前端
LiuHao
2024-03-08 b8eb2dcb401e9dcb1dc3e68be223cc597b6679f4
update 增加默认导出
已修改1个文件
17 ■■■■ 文件已修改
src/api/workflow/processInstance/index.ts 17 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/workflow/processInstance/index.ts
@@ -41,9 +41,9 @@
/**
 * 通过流程实例id获取历史流程图运行中,历史等节点
 */
export const getHistoryList = (processInstanceId: string) => {
export const getHistoryList = (instanceId: string) => {
  return request({
    url: `/workflow/processInstance/getHistoryList/${processInstanceId}` + '?t' + Math.random(),
    url: `/workflow/processInstance/getHistoryList/${instanceId}` + '?t' + Math.random(),
    method: 'get'
  });
};
@@ -121,3 +121,16 @@
    method: 'post'
  });
};
export default {
  getPageByRunning,
  getPageByFinish,
  getHistoryImage,
  getHistoryList,
  getHistoryRecord,
  deleteRunInstance,
  deleteRunAndHisInstance,
  deleteFinishAndHisInstance,
  getPageByCurrent,
  cancelProcessApply
};