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/getNew`, params, config); }, // 获取门店数据 getStoreDataApi(mallId) { return req("get", `/report/b-mall/${mallId}`); }, getAreaGateStatisticsApi(params, config) { return req("get", `/report/gate/analyse/statistics`, params, config); }, }; export default heatmap;