heatMap.js 339 Bytes
import req from "@/api/http.js";
const heatmap = {
  //获取设备通道
  getChannelsListApi(params, config) {
    return req("get", `/report/channels`, params, config);
  },

  // 获取热力图数据
  getHeatMapValueAPi(params, config) {
    return req("post", `/report/heatMap/get`, params, config);
  },
};
export default heatmap;