fanlocal.api.ts 213 B

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