import req from "@/request.js"; const portal = window.context.portal; export default { stationStatistics(data, cb) { req.post(portal + `/biz/monitor/waterStation/stationStatistics`, data).then(rep => { cb(rep.data); }); }, stationStatisticsSub(data, cb) { req.post(portal + `/biz/monitor/waterStation/stationStatisticsSub`, data).then(rep => { cb(rep.data); }); }, }