completeLc.api.ts 608 B

12345678910111213141516171819202122232425
  1. import { defHttp } from '/@/utils/http/axios';
  2. enum Api {
  3. getFinishedProcess = '/safety/actProcessIns/getFinishedProcess',
  4. getHistoricFlow='/safety/actTask/historicFlow/15053',
  5. getForm='/safety/actBusiness/getForm'
  6. }
  7. /**
  8. * 列表
  9. * @param params
  10. */
  11. export const getFinishedProcess = (params) => defHttp.get({ url: Api.getFinishedProcess, params });
  12. /**
  13. * 审批历史
  14. * @param params
  15. */
  16. export const getHistoricFlow = () => defHttp.get({ url: Api.getHistoricFlow, });
  17. /**
  18. * 表单数据
  19. * @param params
  20. */
  21. export const getForm = (params) => defHttp.get({ url: Api.getForm,params });