mirror of
http://git.keliuyun.com:55676/jiaxiuc123/miniProject.git
synced 2025-09-27 03:35:59 +08:00
21 lines
574 B
JavaScript
21 lines
574 B
JavaScript
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;
|