import req from "@/request.js"; const portal = window.context.portal; export default { // 水电站站分页 ListGet(data, cb) { req.post(portal + `/biz/monitor/waterStation/companyPage`, data).then(rep => { cb(rep.data); }); }, getbasAdName(data, cb) { req.post(portal + `/sys/sysAreas/v1/townTree`, data).then(rep => { cb(rep.data); }); }, }