import req from "@/request.js"; const portal = window.context.portal; export default { //获取测站下拉列表 getTree(data, cb) { req.post(portal + `/biz/warnInfo/getTree`, data).then(rep => { cb(rep.data); }); }, //分页查询最新预警记录 getListTable(data, cb) { req.post(portal + `/biz/warnInfo/query`, data).then(rep => { cb(rep.data) }) }, // 报警记录 warniInfo(id,cb) { req.get(portal + `/biz/warnInfo/findById/`+id).then(rep => { cb(rep.data); }); }, //处理状态 updateStatus(data,cb) { req.post(portal + '/biz/warnInfo/updateStatus?ids='+data).then(rep => { cb(rep.data); }); }, }