| | |
| | | export async function getDeviceInfo(data, townCode) { |
| | | const response = await axios.post("/hp/deviceInfo/getData", { |
| | | filterObject: { |
| | | "dictDeviceType": data, |
| | | "townCode": townCode, |
| | | "year": 2025 |
| | | |
| | | "dictCommunicationType": data, |
| | | "townCodeList": [townCode], |
| | | "year": 2025, |
| | | // 所属项目 |
| | | // "belongObjList": [ |
| | | // "1797461961110261762" |
| | | // ], |
| | | "belongObjList": [ |
| | | "1797461961110261762" |
| | | ], |
| | | }, |
| | | "pageSize": 10000 |
| | | }); |
| | | return response.data; |
| | | } |
| | | |
| | | // 查询孙胡沟监测设备 |
| | | export async function getDeviceInfoSHG(data) { |
| | | const response = await axios.post("/hp/deviceInfo/getData", { |
| | | filterObject: { |
| | | "dictCommunicationType": data, |
| | | "townCodeList": ["110116110000"], |
| | | "year": 2025, |
| | | }, |
| | | "pageSize": 10000 |
| | | |
| | | }); |
| | | return response.data; |
| | | } |
| | | |
| | | |
| | | // 分页查询行政区划监测设备信息 |
| | | export async function getDeviceInfoByPage(data, pageNum) { |
| | | const response = await axios.post("/hp/deviceInfo/getData", { |