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