warning.api.ts 217 B

12345678910
  1. import { defHttp } from '/@/utils/http/axios';
  2. enum Api {
  3. list = '/safety/ventanalyAlarmLog/list',
  4. }
  5. /**
  6. * 列表接口
  7. * @param params
  8. */
  9. export const list = (params) => defHttp.get({ url: Api.list, params });