import req from "@/request.js"; const portal = window.context.portal; export default { // 雨情测站下拉 getStnms(data, cb) { req.post(portal + `/biz/monitor/pptn/findPptnList`, data).then(rep => { cb(rep.data); }); }, // 雨情分页 ListGet(data, cb) { req.post(portal + `/biz/monitor/pptn/latestQuery`, data).then(rep => { cb(rep.data); }); }, // 行政区查询接口 getbasAdName(data, cb) { req.post(portal + `/sys/sysAreas/v1/townTree`, data).then(rep => { cb(rep.data); }); }, }