index.ts 272 B

123456789
  1. import { defHttp } from '/@/utils/http/axios';
  2. enum Api {
  3. DEVICE_CONTROL = '/safety/ventanalyMonitorData/devicecontrol', // 开关控制
  4. }
  5. // Get personal center-basic settings
  6. export const deviceControlApi = (data) => defHttp.put({ url: Api.DEVICE_CONTROL, data });