| 123456789101112131415161718 |
- import { defHttp } from '/@/utils/http/axios';
- enum Api {
- getHistoricFlow = '/safety/actTask/historicFlow/15015',
- getRunningProcess = '/safety/actProcessIns/getRunningProcess',
- }
- /**
- * 左侧树接口
- * @param params
- */
- export const getRunningProcess = (params) => defHttp.get({ url: Api.getRunningProcess, params });
- /**
- * 审批详情-审批历史
- * @param params
- */
- export const getHistoricFlow = () => defHttp.get({ url: Api.getHistoricFlow,});
|