progressLc.api.ts 465 B

123456789101112131415161718
  1. import { defHttp } from '/@/utils/http/axios';
  2. enum Api {
  3. getHistoricFlow = '/safety/actTask/historicFlow/15015',
  4. getRunningProcess = '/safety/actProcessIns/getRunningProcess',
  5. }
  6. /**
  7. * 左侧树接口
  8. * @param params
  9. */
  10. export const getRunningProcess = (params) => defHttp.get({ url: Api.getRunningProcess, params });
  11. /**
  12. * 审批详情-审批历史
  13. * @param params
  14. */
  15. export const getHistoricFlow = () => defHttp.get({ url: Api.getHistoricFlow,});