dustHome.api.ts 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. import { defHttp } from '@/utils/http/axios';
  2. enum Api {
  3. getDustWarningCntByType='/dust/dustDisasterApi/getDustWarningCntByType',
  4. getAreaTypeList = '/dust/dustDisasterApi/getAreaTypeList',
  5. getRealSensorDataByType = '/dust/dustDisasterApi/getRealSensorDataByType',
  6. getDustInfos = '/dust/dustDisasterApi/getDustInfos',
  7. historyAndForecast = '/dust/dustDisasterApi/historyAndForecast',
  8. realData = '/fire/show/realData',
  9. getGzmMaxBySensorType='/dust/dustDisasterApi/getGzmMaxBySensorType',
  10. dustCoalSeam='/dust/dustDisasterApi/dustCoalSeam'
  11. }
  12. /**
  13. * 粉尘工作面监测图表数据
  14. * @param params
  15. */
  16. export const getDustWarningCntByType = (params) => defHttp.get({ url: Api.getDustWarningCntByType,params });
  17. /**
  18. * 粉尘菜单树
  19. * @param params
  20. */
  21. export const getAreaTypeList = () => defHttp.get({ url: Api.getAreaTypeList });
  22. /**
  23. * 粉尘选项
  24. * @param params
  25. */
  26. export const getRealSensorDataByType = (params) =>
  27. defHttp.get({ url: Api.getRealSensorDataByType, params });
  28. /**
  29. * 获取粉尘单项数据
  30. * @param params
  31. */
  32. export const getDustInfos = (params) => defHttp.get({ url: Api.getDustInfos, params });
  33. /**
  34. * 获取粉尘图表数据
  35. * @param params
  36. */
  37. export const historyAndForecast = (params) => defHttp.get({ url: Api.historyAndForecast, params });
  38. /**
  39. * 智能喷雾降尘装置数据
  40. * @param params
  41. */
  42. export const realData = (params) => defHttp.post({ url: Api.realData, params });
  43. /**
  44. * 粉尘关联指标数据
  45. * @param params
  46. */
  47. export const getGzmMaxBySensorType = () => defHttp.get({ url: Api.getGzmMaxBySensorType, });
  48. /**
  49. * 粉尘静态指标下拉选项数据
  50. * @param params
  51. */
  52. export const dustCoalSeam = () => defHttp.get({ url: Api.dustCoalSeam, });