| 12345678910111213141516171819202122232425 |
- import { defHttp } from '/@/utils/http/axios';
- enum Api {
- getFinishedProcess = '/safety/actProcessIns/getFinishedProcess',
- getHistoricFlow='/safety/actTask/historicFlow/15053',
- getForm='/safety/actBusiness/getForm'
- }
- /**
- * 列表
- * @param params
- */
- export const getFinishedProcess = (params) => defHttp.get({ url: Api.getFinishedProcess, params });
- /**
- * 审批历史
- * @param params
- */
- export const getHistoricFlow = () => defHttp.get({ url: Api.getHistoricFlow, });
- /**
- * 表单数据
- * @param params
- */
- export const getForm = (params) => defHttp.get({ url: Api.getForm,params });
|