diff --git a/public/mapbox/sprite@2x.json b/public/mapbox/sprite@2x.json
index 0fd4013..6f2e2b5 100644
--- a/public/mapbox/sprite@2x.json
+++ b/public/mapbox/sprite@2x.json
@@ -286,5 +286,85 @@
"y": 256,
"pixelRatio": 1,
"visible": true
- }
+ },
+ "变形监测": {
+ "width": 32,
+ "height": 32,
+ "x": 64,
+ "y": 256,
+ "pixelRatio": 1,
+ "visible": true
+ },
+ "渗压监测": {
+ "width": 32,
+ "height": 32,
+ "x": 64,
+ "y": 256,
+ "pixelRatio": 1,
+ "visible": true
+ },
+ "渗流监测": {
+ "width": 32,
+ "height": 32,
+ "x": 64,
+ "y": 256,
+ "pixelRatio": 1,
+ "visible": true
+ },
+ "白蚁监测": {
+ "width": 32,
+ "height": 32,
+ "x": 64,
+ "y": 256,
+ "pixelRatio": 1,
+ "visible": true
+ },
+ "水闸2": {
+ "width": 32,
+ "height": 32,
+ "x": 64,
+ "y": 256,
+ "pixelRatio": 1,
+ "visible": true
+ },
+ "泵站2": {
+ "width": 32,
+ "height": 32,
+ "x": 64,
+ "y": 256,
+ "pixelRatio": 1,
+ "visible": true
+ },
+ "水表": {
+ "width": 32,
+ "height": 32,
+ "x": 64,
+ "y": 256,
+ "pixelRatio": 1,
+ "visible": true
+ },
+ "渠道": {
+ "width": 32,
+ "height": 32,
+ "x": 64,
+ "y": 256,
+ "pixelRatio": 1,
+ "visible": true
+ },
+ "水质": {
+ "width": 32,
+ "height": 32,
+ "x": 64,
+ "y": 256,
+ "pixelRatio": 1,
+ "visible": true
+ },
+ "土壤墒情": {
+ "width": 32,
+ "height": 32,
+ "x": 64,
+ "y": 256,
+ "pixelRatio": 1,
+ "visible": true
+ }
}
\ No newline at end of file
diff --git a/src/models/map/index.js b/src/models/map/index.js
index b64b126..bf3060a 100644
--- a/src/models/map/index.js
+++ b/src/models/map/index.js
@@ -258,13 +258,14 @@ const map = {
layerVisible = {
RealDrpLayer: false,
RealHDLayer: false,
- RealSkLayer: true,
- BxSkLayer: true,
+ RealSkLayer: false,
+ BxSkLayer: false,
FzdxLayer: false,
WataLayer: false,
AdcdLayer: true,
RoadLayer: true,
RivlLayer: true,
+ BxjcLayer:true,
};
Object.keys(DCPJ_TYPES).forEach(key => {
layerVisible['Dcpj_' + key + 'Layer'] = false;
@@ -338,8 +339,10 @@ const map = {
if(id===201||id===205){
+ dispatch.map.setLayerSetting({dom: false});
map.setLayoutProperty('热力图', 'visibility', 'visible');
}else{
+ // dispatch.map.setLayerSetting({dom: true});
map.setLayoutProperty('热力图', 'visibility', 'none');
}
}
diff --git a/src/views/Home/InfoDlg/LayersDlg/index.js b/src/views/Home/InfoDlg/LayersDlg/index.js
index 7a66a48..f5ca1a0 100644
--- a/src/views/Home/InfoDlg/LayersDlg/index.js
+++ b/src/views/Home/InfoDlg/LayersDlg/index.js
@@ -18,6 +18,22 @@ import YuwaiLayer from '../../MapCtrl/mapstyle/yuwailayer';
import PicStLayer from '../../MapCtrl/mapstyle/picstlayer';
import PumpLayer from '../../MapCtrl/mapstyle/tmp/pumplayer';
import BxSkLayer from '../../MapCtrl/mapstyle/tmp/bxsk';
+//这里是新的
+import BxjcLayer from '../../MapCtrl/mapstyle/bxjclayer';
+import SyjcLayer from '../../MapCtrl/mapstyle/syjclayer';
+import SljcLayer from '../../MapCtrl/mapstyle/sljclayer';
+import ByjcLayer from '../../MapCtrl/mapstyle/byjclayer';
+import ShuiZhaLayer from '../../MapCtrl/mapstyle/shuizhalayer';
+import BzLayer from '../../MapCtrl/mapstyle/bzlayer';
+import SbLayer from '../../MapCtrl/mapstyle/sblayer';
+import QdLayer from '../../MapCtrl/mapstyle/qdlayer';
+import ShuizhiLayer from '../../MapCtrl/mapstyle/shuizhilayer';
+import TrsqLayer from '../../MapCtrl/mapstyle/trsqlayer';
+
+
+
+
+
const useStyles = makeStyles({
catRoot: {
@@ -39,7 +55,6 @@ function LayersDlg({ onClose }) {
const layerSetting = useSelector(getLayerSetting);
const dispatch = useDispatch();
const classes = useStyles();
- debugger
const layerVisibleChanged = (event) => {
const vo = { [event.target.name]: event.target.checked };
dispatch.map.setLayerVisible(vo);
@@ -97,6 +112,36 @@ function LayersDlg({ onClose }) {
diff --git a/src/views/Home/MapCtrl/mapstyle/bxjclayer.js b/src/views/Home/MapCtrl/mapstyle/bxjclayer.js
new file mode 100644
index 0000000..7ff160f
--- /dev/null
+++ b/src/views/Home/MapCtrl/mapstyle/bxjclayer.js
@@ -0,0 +1,4267 @@
+import clone from "clone";
+import { PicStPromise, TestPicStPromise } from "../../../../models/_/real";
+import { parseGeoJSON } from "../../../../utils/tools";
+import { InfoPopNames } from "../../InfoPops";
+import BaseLayer from "./baselayer";
+
+const SourceName = '变形监测';
+
+const ShapeStyle = {
+ id: SourceName,
+ type: 'symbol',
+ source: SourceName,
+ layout: {
+ 'icon-allow-overlap': true,
+ 'text-allow-overlap': true,
+ 'icon-image': '变形监测',
+ 'icon-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 0.4,
+ 14, 0.8,
+ ],
+
+ 'text-allow-overlap': true,
+ 'text-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 10,
+ 14, 14,
+ ],
+ 'text-font': ['Roboto Black'],
+ 'text-field': [
+ 'step',
+ ['zoom'],
+ '',
+ 12, ['get', 'stnm']
+ ],
+ 'text-anchor': 'top',
+ 'text-offset': [0, 1],
+
+ 'visibility': 'none',
+ },
+ paint: {
+ 'text-color': '#fff'
+ }
+};
+
+const page1 = [
+ {
+ "res_cd": "42118140035",
+ "res_lon": 115.14137,
+ "res_lat": 31.55095,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140006-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "大堰口水库",
+ "de_value": -11.5381,
+ "dn_value": -11.2248,
+ "du_value": 113.8833,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.9303,
+ "max_dn": -2.1648,
+ "max_du": 113.8833,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140035",
+ "res_lon": 115.14137,
+ "res_lat": 31.55095,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140006-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "大堰口水库",
+ "de_value": -4.6573,
+ "dn_value": -13.3668,
+ "du_value": 90.3308,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.9303,
+ "max_dn": -2.1648,
+ "max_du": 113.8833,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140035",
+ "res_lon": 115.14137,
+ "res_lat": 31.55095,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140006-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "大堰口水库",
+ "de_value": 2.9303,
+ "dn_value": -5.8347,
+ "du_value": 70.3184,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.9303,
+ "max_dn": -2.1648,
+ "max_du": 113.8833,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140035",
+ "res_lon": 115.14137,
+ "res_lat": 31.55095,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140006-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "大堰口水库",
+ "de_value": -7.7559,
+ "dn_value": -2.1648,
+ "du_value": 35.7968,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.9303,
+ "max_dn": -2.1648,
+ "max_du": 113.8833,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140017",
+ "res_lon": 115.14545,
+ "res_lat": 30.95398,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140031-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "群建水库",
+ "de_value": 0.8613,
+ "dn_value": 2.7278,
+ "du_value": 12.5563,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.8662,
+ "max_dn": 3.8228,
+ "max_du": 12.5563,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140022",
+ "res_lon": 115.39612,
+ "res_lat": 31.1526,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140014-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "何门咀水库",
+ "de_value": 0.0925,
+ "dn_value": 1.816,
+ "du_value": -10.784,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1965,
+ "max_dn": 3.7425,
+ "max_du": -9.0186,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140011",
+ "res_lon": 115.11878,
+ "res_lat": 30.88904,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140019-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181104000",
+ "town_nm": "夫子河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "黄麻坳水库",
+ "de_value": -5.8331,
+ "dn_value": 3.6656,
+ "du_value": -10.4277,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -5.2944,
+ "max_dn": 3.6656,
+ "max_du": -8.6375,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140017",
+ "res_lon": 115.14545,
+ "res_lat": 30.95398,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140031-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "群建水库",
+ "de_value": 0.3535,
+ "dn_value": 3.0299,
+ "du_value": 10.4047,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.8662,
+ "max_dn": 3.8228,
+ "max_du": 12.5563,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140011",
+ "res_lon": 115.11878,
+ "res_lat": 30.88904,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140019-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181104000",
+ "town_nm": "夫子河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "黄麻坳水库",
+ "de_value": -6.3224,
+ "dn_value": 2.6518,
+ "du_value": -9.7302,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -5.2944,
+ "max_dn": 3.6656,
+ "max_du": -8.6375,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140017",
+ "res_lon": 115.14545,
+ "res_lat": 30.95398,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140031-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "群建水库",
+ "de_value": 1.3647,
+ "dn_value": 3.8228,
+ "du_value": 9.6284,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.8662,
+ "max_dn": 3.8228,
+ "max_du": 12.5563,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140011",
+ "res_lon": 115.11878,
+ "res_lat": 30.88904,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140019-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181104000",
+ "town_nm": "夫子河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "黄麻坳水库",
+ "de_value": -5.3099,
+ "dn_value": 2.9222,
+ "du_value": -9.3104,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -5.2944,
+ "max_dn": 3.6656,
+ "max_du": -8.6375,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140022",
+ "res_lon": 115.39612,
+ "res_lat": 31.1526,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140014-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "何门咀水库",
+ "de_value": 0.1965,
+ "dn_value": 3.7425,
+ "du_value": -9.0186,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1965,
+ "max_dn": 3.7425,
+ "max_du": -9.0186,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140011",
+ "res_lon": 115.11878,
+ "res_lat": 30.88904,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140019-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181104000",
+ "town_nm": "夫子河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "黄麻坳水库",
+ "de_value": -5.2944,
+ "dn_value": 2.7225,
+ "du_value": -8.6375,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -5.2944,
+ "max_dn": 3.6656,
+ "max_du": -8.6375,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140017",
+ "res_lon": 115.14545,
+ "res_lat": 30.95398,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140031-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "群建水库",
+ "de_value": 2.8662,
+ "dn_value": 3.4571,
+ "du_value": 7.9819,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.8662,
+ "max_dn": 3.8228,
+ "max_du": 12.5563,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140029",
+ "res_lon": 115.12048,
+ "res_lat": 31.18362,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140043-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "永红水库",
+ "de_value": -0.4604,
+ "dn_value": -2.8518,
+ "du_value": -6.7047,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1576,
+ "max_dn": -1.8328,
+ "max_du": -5.0825,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140037",
+ "res_lon": 114.91277,
+ "res_lat": 31.41363,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140024-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "落衣山水库",
+ "de_value": 9.1116,
+ "dn_value": 4.0582,
+ "du_value": -6.2469,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 10.3557,
+ "max_dn": 4.0707,
+ "max_du": -4.2624,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140032",
+ "res_lon": 115.13073,
+ "res_lat": 31.35489,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140020-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "待除险加固",
+ "label": "2023高标准",
+ "res_nm": "鸡翅关水库",
+ "de_value": -2.1056,
+ "dn_value": -1.416,
+ "du_value": -5.949,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.6795,
+ "max_dn": -1.416,
+ "max_du": -1.2877,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140029",
+ "res_lon": 115.12048,
+ "res_lat": 31.18362,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140043-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "永红水库",
+ "de_value": 0.1576,
+ "dn_value": -2.3981,
+ "du_value": -5.874,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1576,
+ "max_dn": -1.8328,
+ "max_du": -5.0825,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ }
+]
+const page2 = [
+ {
+ "res_cd": "42118140009",
+ "res_lon": 114.73138,
+ "res_lat": 31.01948,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140028-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181102000",
+ "town_nm": "歧亭镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "鲇鱼坝水库",
+ "de_value": -2.8915,
+ "dn_value": -13.173,
+ "du_value": -5.752,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -1.451,
+ "max_dn": -13.11,
+ "max_du": -2.7112,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140044",
+ "res_lon": 114.82084,
+ "res_lat": 31.36288,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140003-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "茶田水库",
+ "de_value": -0.7815,
+ "dn_value": -3.5592,
+ "du_value": 5.5501,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.3756,
+ "max_dn": -1.6821,
+ "max_du": 5.5501,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140029",
+ "res_lon": 115.12048,
+ "res_lat": 31.18362,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140043-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "永红水库",
+ "de_value": -0.791,
+ "dn_value": -1.8328,
+ "du_value": -5.3623,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1576,
+ "max_dn": -1.8328,
+ "max_du": -5.0825,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140008",
+ "res_lon": 114.78397,
+ "res_lat": 31.19451,
+ "cd": "06",
+ "cd_nm": "GN6",
+ "res_reg_cd": "42118140013-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181101000",
+ "town_nm": "宋埠镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "管山水库",
+ "de_value": -3.5584,
+ "dn_value": 0.2089,
+ "du_value": -5.2911,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -1.0942,
+ "max_dn": 2.3586,
+ "max_du": -1.0305,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140037",
+ "res_lon": 114.91277,
+ "res_lat": 31.41363,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140024-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "落衣山水库",
+ "de_value": 10.3557,
+ "dn_value": 2.6427,
+ "du_value": -5.2645,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 10.3557,
+ "max_dn": 4.0707,
+ "max_du": -4.2624,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140015",
+ "res_lon": 115.22541,
+ "res_lat": 30.98156,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140025-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "麻城坳水库",
+ "de_value": 4.4497,
+ "dn_value": 1.6159,
+ "du_value": -5.2414,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.4497,
+ "max_dn": 1.6159,
+ "max_du": -3.2207,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140037",
+ "res_lon": 114.91277,
+ "res_lat": 31.41363,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140024-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "落衣山水库",
+ "de_value": 7.4146,
+ "dn_value": 3.2583,
+ "du_value": -5.186,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 10.3557,
+ "max_dn": 4.0707,
+ "max_du": -4.2624,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140034",
+ "res_lon": 115.02647,
+ "res_lat": 31.49235,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140039-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "夏家冲水库",
+ "de_value": 0.1999,
+ "dn_value": -1.7642,
+ "du_value": -5.097,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1999,
+ "max_dn": -0.3629,
+ "max_du": 0.6777,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140029",
+ "res_lon": 115.12048,
+ "res_lat": 31.18362,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140043-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "永红水库",
+ "de_value": -0.7041,
+ "dn_value": -2.0247,
+ "du_value": -5.0825,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1576,
+ "max_dn": -1.8328,
+ "max_du": -5.0825,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140032",
+ "res_lon": 115.13073,
+ "res_lat": 31.35489,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140020-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "待除险加固",
+ "label": "2023高标准",
+ "res_nm": "鸡翅关水库",
+ "de_value": 0.0506,
+ "dn_value": -1.8644,
+ "du_value": -4.7269,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.6795,
+ "max_dn": -1.416,
+ "max_du": -1.2877,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140009",
+ "res_lon": 114.73138,
+ "res_lat": 31.01948,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140028-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181102000",
+ "town_nm": "歧亭镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "鲇鱼坝水库",
+ "de_value": -1.6345,
+ "dn_value": -15.5719,
+ "du_value": -4.4644,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -1.451,
+ "max_dn": -13.11,
+ "max_du": -2.7112,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140004",
+ "res_lon": 115.05541,
+ "res_lat": 31.11106,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140042-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "永丰水库",
+ "de_value": 0.1333,
+ "dn_value": 0.1412,
+ "du_value": -4.4458,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.217,
+ "max_dn": 2.5534,
+ "max_du": 0.8965,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140034",
+ "res_lon": 115.02647,
+ "res_lat": 31.49235,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140039-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "夏家冲水库",
+ "de_value": 0.1406,
+ "dn_value": -2.2237,
+ "du_value": -4.4174,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1999,
+ "max_dn": -0.3629,
+ "max_du": 0.6777,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140037",
+ "res_lon": 114.91277,
+ "res_lat": 31.41363,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140024-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "落衣山水库",
+ "de_value": 7.8789,
+ "dn_value": 4.0707,
+ "du_value": -4.2624,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 10.3557,
+ "max_dn": 4.0707,
+ "max_du": -4.2624,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140002",
+ "res_lon": 115.00789,
+ "res_lat": 31.23247,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140018-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181001000",
+ "town_nm": "龙池办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2021地方雨水情,2023高标准",
+ "res_nm": "虎形地水库",
+ "de_value": 3.0733,
+ "dn_value": -5.1186,
+ "du_value": -4.2518,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.9924,
+ "max_dn": 0.8199,
+ "max_du": -0.028,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140027",
+ "res_lon": 115.29013,
+ "res_lat": 31.24841,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140038-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181110000",
+ "town_nm": "三河口镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "吴河水库",
+ "de_value": 1.0968,
+ "dn_value": -1.012,
+ "du_value": -4.1872,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.4987,
+ "max_dn": 0.5787,
+ "max_du": -2.1062,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140015",
+ "res_lon": 115.22541,
+ "res_lat": 30.98156,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140025-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "麻城坳水库",
+ "de_value": 1.3293,
+ "dn_value": -2.1,
+ "du_value": -3.9628,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.4497,
+ "max_dn": 1.6159,
+ "max_du": -3.2207,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140044",
+ "res_lon": 114.82084,
+ "res_lat": 31.36288,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140003-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "茶田水库",
+ "de_value": -2.1868,
+ "dn_value": -1.6821,
+ "du_value": 3.9353,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.3756,
+ "max_dn": -1.6821,
+ "max_du": 5.5501,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ }
+]
+const page3 = [
+ {
+ "res_cd": "42118140042",
+ "res_lon": 114.84792,
+ "res_lat": 31.44124,
+ "cd": "06",
+ "cd_nm": "GN6",
+ "res_reg_cd": "42118140015-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "黑龙潭水库",
+ "de_value": -2.8164,
+ "dn_value": -0.693,
+ "du_value": -3.8995,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.7526,
+ "max_dn": 1.2134,
+ "max_du": -0.6187,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140026",
+ "res_lon": 115.24053,
+ "res_lat": 31.40858,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140032-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181110000",
+ "town_nm": "三河口镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "群乐水库",
+ "de_value": 2.1014,
+ "dn_value": 3.0464,
+ "du_value": -3.7394,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.7035,
+ "max_dn": 4.2584,
+ "max_du": -1.711,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140008",
+ "res_lon": 114.78397,
+ "res_lat": 31.19451,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140013-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181101000",
+ "town_nm": "宋埠镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "管山水库",
+ "de_value": -1.6124,
+ "dn_value": -0.2589,
+ "du_value": -3.4862,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -1.0942,
+ "max_dn": 2.3586,
+ "max_du": -1.0305,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140001",
+ "res_lon": 115.17423,
+ "res_lat": 31.17169,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140034-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181106000",
+ "town_nm": "龟山镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "四新水库",
+ "de_value": 2.8371,
+ "dn_value": -1.8709,
+ "du_value": 3.4062,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.8371,
+ "max_dn": 2.6863,
+ "max_du": 3.4062,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140015",
+ "res_lon": 115.22541,
+ "res_lat": 30.98156,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140025-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "麻城坳水库",
+ "de_value": 0.9747,
+ "dn_value": -0.4469,
+ "du_value": -3.3595,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.4497,
+ "max_dn": 1.6159,
+ "max_du": -3.2207,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140015",
+ "res_lon": 115.22541,
+ "res_lat": 30.98156,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140025-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "麻城坳水库",
+ "de_value": -0.812,
+ "dn_value": -1.3469,
+ "du_value": -3.2207,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.4497,
+ "max_dn": 1.6159,
+ "max_du": -3.2207,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140009",
+ "res_lon": 114.73138,
+ "res_lat": 31.01948,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140028-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181102000",
+ "town_nm": "歧亭镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "鲇鱼坝水库",
+ "de_value": -2.3518,
+ "dn_value": -13.2196,
+ "du_value": -3.0993,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -1.451,
+ "max_dn": -13.11,
+ "max_du": -2.7112,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140008",
+ "res_lon": 114.78397,
+ "res_lat": 31.19451,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140013-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181101000",
+ "town_nm": "宋埠镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "管山水库",
+ "de_value": -3.5353,
+ "dn_value": 1.1677,
+ "du_value": -3.0879,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -1.0942,
+ "max_dn": 2.3586,
+ "max_du": -1.0305,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140026",
+ "res_lon": 115.24053,
+ "res_lat": 31.40858,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140032-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181110000",
+ "town_nm": "三河口镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "群乐水库",
+ "de_value": 3.7035,
+ "dn_value": 4.2584,
+ "du_value": -3.0456,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.7035,
+ "max_dn": 4.2584,
+ "max_du": -1.711,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140023",
+ "res_lon": 115.29541,
+ "res_lat": 31.20317,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140044-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "游家冲水库",
+ "de_value": 4.0272,
+ "dn_value": 4.2708,
+ "du_value": -2.9752,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.0272,
+ "max_dn": 4.2708,
+ "max_du": 0.6769,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140042",
+ "res_lon": 114.84792,
+ "res_lat": 31.44124,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140015-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "黑龙潭水库",
+ "de_value": -0.5924,
+ "dn_value": -1.9907,
+ "du_value": -2.8118,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.7526,
+ "max_dn": 1.2134,
+ "max_du": -0.6187,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140009",
+ "res_lon": 114.73138,
+ "res_lat": 31.01948,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140028-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181102000",
+ "town_nm": "歧亭镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "鲇鱼坝水库",
+ "de_value": -1.451,
+ "dn_value": -13.11,
+ "du_value": -2.7112,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -1.451,
+ "max_dn": -13.11,
+ "max_du": -2.7112,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140008",
+ "res_lon": 114.78397,
+ "res_lat": 31.19451,
+ "cd": "05",
+ "cd_nm": "GN5",
+ "res_reg_cd": "42118140013-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181101000",
+ "town_nm": "宋埠镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "管山水库",
+ "de_value": -1.0942,
+ "dn_value": 0.2496,
+ "du_value": -2.7015,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -1.0942,
+ "max_dn": 2.3586,
+ "max_du": -1.0305,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140027",
+ "res_lon": 115.29013,
+ "res_lat": 31.24841,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140038-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181110000",
+ "town_nm": "三河口镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "吴河水库",
+ "de_value": 1.4987,
+ "dn_value": 0.5787,
+ "du_value": -2.6407,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.4987,
+ "max_dn": 0.5787,
+ "max_du": -2.1062,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140042",
+ "res_lon": 114.84792,
+ "res_lat": 31.44124,
+ "cd": "05",
+ "cd_nm": "GN5",
+ "res_reg_cd": "42118140015-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "黑龙潭水库",
+ "de_value": 2.7526,
+ "dn_value": 1.0671,
+ "du_value": -2.6004,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.7526,
+ "max_dn": 1.2134,
+ "max_du": -0.6187,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140024",
+ "res_lon": 115.4501,
+ "res_lat": 31.3021,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140022-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "界岭水库",
+ "de_value": 0.2916,
+ "dn_value": -4.3873,
+ "du_value": 2.5291,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.5031,
+ "max_dn": -2.378,
+ "max_du": 2.5291,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140041",
+ "res_lon": 114.92974,
+ "res_lat": 31.26744,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140001-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "白石河水库",
+ "de_value": 3.5796,
+ "dn_value": 1.0887,
+ "du_value": -2.5211,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.5796,
+ "max_dn": 2.635,
+ "max_du": 0.6617,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140038",
+ "res_lon": 115.01664,
+ "res_lat": 31.40681,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140011-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "蛤蟆岗水库",
+ "de_value": 1.0284,
+ "dn_value": -0.0444,
+ "du_value": -2.4174,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.9069,
+ "max_dn": 0.3515,
+ "max_du": -1.9678,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ }
+]
+const page4 = [
+ {
+ "res_cd": "42118140002",
+ "res_lon": 115.00789,
+ "res_lat": 31.23247,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140018-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181001000",
+ "town_nm": "龙池办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2021地方雨水情,2023高标准",
+ "res_nm": "虎形地水库",
+ "de_value": 3.744,
+ "dn_value": -2.4588,
+ "du_value": -2.4051,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.9924,
+ "max_dn": 0.8199,
+ "max_du": -0.028,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140010",
+ "res_lon": 115.05867,
+ "res_lat": 30.92704,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140005-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181104000",
+ "town_nm": "夫子河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "大石板水库",
+ "de_value": 2.4245,
+ "dn_value": -2.7684,
+ "du_value": -2.3713,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.4245,
+ "max_dn": 1.7072,
+ "max_du": -1.0829,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140001",
+ "res_lon": 115.17423,
+ "res_lat": 31.17169,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140034-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181106000",
+ "town_nm": "龟山镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "四新水库",
+ "de_value": -2.1761,
+ "dn_value": 2.6863,
+ "du_value": -2.362,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.8371,
+ "max_dn": 2.6863,
+ "max_du": 3.4062,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140010",
+ "res_lon": 115.05867,
+ "res_lat": 30.92704,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140005-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181104000",
+ "town_nm": "夫子河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "大石板水库",
+ "de_value": 0.8389,
+ "dn_value": -1.5703,
+ "du_value": -2.3497,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.4245,
+ "max_dn": 1.7072,
+ "max_du": -1.0829,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140042",
+ "res_lon": 114.84792,
+ "res_lat": 31.44124,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140015-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "黑龙潭水库",
+ "de_value": -0.9251,
+ "dn_value": -0.9812,
+ "du_value": -2.3467,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.7526,
+ "max_dn": 1.2134,
+ "max_du": -0.6187,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140036",
+ "res_lon": 115.20524,
+ "res_lat": 31.5182,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140033-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "双碾河水库",
+ "de_value": 4.7482,
+ "dn_value": 7.5596,
+ "du_value": 2.3457,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.7482,
+ "max_dn": 7.5596,
+ "max_du": 2.3457,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140004",
+ "res_lon": 115.05541,
+ "res_lat": 31.11106,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140042-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "永丰水库",
+ "de_value": 1.4277,
+ "dn_value": 2.5534,
+ "du_value": -2.2948,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.217,
+ "max_dn": 2.5534,
+ "max_du": 0.8965,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140027",
+ "res_lon": 115.29013,
+ "res_lat": 31.24841,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140038-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181110000",
+ "town_nm": "三河口镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "吴河水库",
+ "de_value": 0.9693,
+ "dn_value": -0.3195,
+ "du_value": -2.2379,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.4987,
+ "max_dn": 0.5787,
+ "max_du": -2.1062,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140026",
+ "res_lon": 115.24053,
+ "res_lat": 31.40858,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140032-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181110000",
+ "town_nm": "三河口镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "群乐水库",
+ "de_value": -0.0633,
+ "dn_value": 1.5164,
+ "du_value": -2.1067,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.7035,
+ "max_dn": 4.2584,
+ "max_du": -1.711,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140027",
+ "res_lon": 115.29013,
+ "res_lat": 31.24841,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140038-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181110000",
+ "town_nm": "三河口镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "吴河水库",
+ "de_value": 1.1501,
+ "dn_value": -0.9322,
+ "du_value": -2.1062,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.4987,
+ "max_dn": 0.5787,
+ "max_du": -2.1062,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140010",
+ "res_lon": 115.05867,
+ "res_lat": 30.92704,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140005-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181104000",
+ "town_nm": "夫子河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "大石板水库",
+ "de_value": 1.5505,
+ "dn_value": -2.8295,
+ "du_value": -2.0983,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.4245,
+ "max_dn": 1.7072,
+ "max_du": -1.0829,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140038",
+ "res_lon": 115.01664,
+ "res_lat": 31.40681,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140011-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "蛤蟆岗水库",
+ "de_value": 1.9069,
+ "dn_value": 0.0592,
+ "du_value": -2.0089,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.9069,
+ "max_dn": 0.3515,
+ "max_du": -1.9678,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140010",
+ "res_lon": 115.05867,
+ "res_lat": 30.92704,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140005-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181104000",
+ "town_nm": "夫子河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "大石板水库",
+ "de_value": -0.2056,
+ "dn_value": 1.1621,
+ "du_value": -1.999,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.4245,
+ "max_dn": 1.7072,
+ "max_du": -1.0829,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140001",
+ "res_lon": 115.17423,
+ "res_lat": 31.17169,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140034-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181106000",
+ "town_nm": "龟山镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "四新水库",
+ "de_value": -1.14,
+ "dn_value": 0.9576,
+ "du_value": -1.9916,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.8371,
+ "max_dn": 2.6863,
+ "max_du": 3.4062,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140038",
+ "res_lon": 115.01664,
+ "res_lat": 31.40681,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140011-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "蛤蟆岗水库",
+ "de_value": 1.2244,
+ "dn_value": 0.3515,
+ "du_value": -1.9678,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.9069,
+ "max_dn": 0.3515,
+ "max_du": -1.9678,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140010",
+ "res_lon": 115.05867,
+ "res_lat": 30.92704,
+ "cd": "06",
+ "cd_nm": "GN6",
+ "res_reg_cd": "42118140005-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181104000",
+ "town_nm": "夫子河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "大石板水库",
+ "de_value": 0.3948,
+ "dn_value": 1.7072,
+ "du_value": -1.9658,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.4245,
+ "max_dn": 1.7072,
+ "max_du": -1.0829,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140024",
+ "res_lon": 115.4501,
+ "res_lat": 31.3021,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140022-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "界岭水库",
+ "de_value": -1.6463,
+ "dn_value": -2.6898,
+ "du_value": 1.9454,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.5031,
+ "max_dn": -2.378,
+ "max_du": 2.5291,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140023",
+ "res_lon": 115.29541,
+ "res_lat": 31.20317,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140044-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "游家冲水库",
+ "de_value": 0.4601,
+ "dn_value": 2.1969,
+ "du_value": -1.8871,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.0272,
+ "max_dn": 4.2708,
+ "max_du": 0.6769,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ }
+]
+const page5 = [
+ {
+ "res_cd": "42118140002",
+ "res_lon": 115.00789,
+ "res_lat": 31.23247,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140018-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181001000",
+ "town_nm": "龙池办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2021地方雨水情,2023高标准",
+ "res_nm": "虎形地水库",
+ "de_value": 2.1314,
+ "dn_value": -1.035,
+ "du_value": -1.885,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.9924,
+ "max_dn": 0.8199,
+ "max_du": -0.028,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140002",
+ "res_lon": 115.00789,
+ "res_lat": 31.23247,
+ "cd": "05",
+ "cd_nm": "GN5",
+ "res_reg_cd": "42118140018-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181001000",
+ "town_nm": "龙池办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2021地方雨水情,2023高标准",
+ "res_nm": "虎形地水库",
+ "de_value": 3.9924,
+ "dn_value": -5.3834,
+ "du_value": -1.8594,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.9924,
+ "max_dn": 0.8199,
+ "max_du": -0.028,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140008",
+ "res_lon": 114.78397,
+ "res_lat": 31.19451,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140013-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181101000",
+ "town_nm": "宋埠镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "管山水库",
+ "de_value": -4.2262,
+ "dn_value": 0.806,
+ "du_value": -1.8194,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -1.0942,
+ "max_dn": 2.3586,
+ "max_du": -1.0305,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140042",
+ "res_lon": 114.84792,
+ "res_lat": 31.44124,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140015-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "黑龙潭水库",
+ "de_value": -1.014,
+ "dn_value": -1.0174,
+ "du_value": -1.8035,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.7526,
+ "max_dn": 1.2134,
+ "max_du": -0.6187,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140044",
+ "res_lon": 114.82084,
+ "res_lat": 31.36288,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140003-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "茶田水库",
+ "de_value": 0.3756,
+ "dn_value": -2.9818,
+ "du_value": 1.736,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.3756,
+ "max_dn": -1.6821,
+ "max_du": 5.5501,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140041",
+ "res_lon": 114.92974,
+ "res_lat": 31.26744,
+ "cd": "05",
+ "cd_nm": "GN5",
+ "res_reg_cd": "42118140001-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "白石河水库",
+ "de_value": 2.2383,
+ "dn_value": 2.635,
+ "du_value": -1.7134,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.5796,
+ "max_dn": 2.635,
+ "max_du": 0.6617,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140026",
+ "res_lon": 115.24053,
+ "res_lat": 31.40858,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140032-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181110000",
+ "town_nm": "三河口镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "群乐水库",
+ "de_value": 1.5666,
+ "dn_value": 3.3568,
+ "du_value": -1.711,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.7035,
+ "max_dn": 4.2584,
+ "max_du": -1.711,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140028",
+ "res_lon": 115.18962,
+ "res_lat": 31.23425,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140017-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "红心水库",
+ "de_value": 0.2088,
+ "dn_value": 1.2586,
+ "du_value": -1.6315,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.6868,
+ "max_dn": 1.5179,
+ "max_du": 0.9868,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140041",
+ "res_lon": 114.92974,
+ "res_lat": 31.26744,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140001-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "白石河水库",
+ "de_value": 2.6386,
+ "dn_value": 1.811,
+ "du_value": -1.5889,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.5796,
+ "max_dn": 2.635,
+ "max_du": 0.6617,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140001",
+ "res_lon": 115.17423,
+ "res_lat": 31.17169,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140034-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181106000",
+ "town_nm": "龟山镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "四新水库",
+ "de_value": -0.5686,
+ "dn_value": 0.6531,
+ "du_value": -1.5265,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.8371,
+ "max_dn": 2.6863,
+ "max_du": 3.4062,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140040",
+ "res_lon": 114.98519,
+ "res_lat": 31.32334,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140002-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "草庙沟水库",
+ "de_value": 0.6558,
+ "dn_value": 0.395,
+ "du_value": -1.4973,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.8988,
+ "max_dn": 1.6804,
+ "max_du": 0.3542,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140041",
+ "res_lon": 114.92974,
+ "res_lat": 31.26744,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140001-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "白石河水库",
+ "de_value": 2.461,
+ "dn_value": 1.7176,
+ "du_value": -1.4031,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.5796,
+ "max_dn": 2.635,
+ "max_du": 0.6617,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140028",
+ "res_lon": 115.18962,
+ "res_lat": 31.23425,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140017-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "红心水库",
+ "de_value": -2.9894,
+ "dn_value": 0.297,
+ "du_value": -1.3872,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.6868,
+ "max_dn": 1.5179,
+ "max_du": 0.9868,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140031",
+ "res_lon": 115.13493,
+ "res_lat": 31.39278,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140036-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "桐枧冲水库",
+ "de_value": 0.4356,
+ "dn_value": 1.3887,
+ "du_value": -1.3258,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.4356,
+ "max_dn": 1.3887,
+ "max_du": 0.5677,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140016",
+ "res_lon": 115.23163,
+ "res_lat": 30.97045,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140009-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "东风水库",
+ "de_value": -5.2258,
+ "dn_value": -1.8304,
+ "du_value": -1.317,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -4.7594,
+ "max_dn": 3.1064,
+ "max_du": -0.202,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140024",
+ "res_lon": 115.4501,
+ "res_lat": 31.3021,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140022-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "界岭水库",
+ "de_value": -1.7011,
+ "dn_value": -2.378,
+ "du_value": 1.3094,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.5031,
+ "max_dn": -2.378,
+ "max_du": 2.5291,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140032",
+ "res_lon": 115.13073,
+ "res_lat": 31.35489,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140020-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "待除险加固",
+ "label": "2023高标准",
+ "res_nm": "鸡翅关水库",
+ "de_value": 2.6795,
+ "dn_value": -1.6127,
+ "du_value": -1.2877,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.6795,
+ "max_dn": -1.416,
+ "max_du": -1.2877,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140003",
+ "res_lon": 114.98531,
+ "res_lat": 31.20469,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140026-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "毛家冲水库",
+ "de_value": -2.3673,
+ "dn_value": -0.865,
+ "du_value": -1.2856,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -2.3673,
+ "max_dn": 0.9652,
+ "max_du": 0.2467,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ }
+]
+const page6 = [
+ {
+ "res_cd": "42118140004",
+ "res_lon": 115.05541,
+ "res_lat": 31.11106,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140042-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "永丰水库",
+ "de_value": -0.5777,
+ "dn_value": 1.989,
+ "du_value": -1.2375,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.217,
+ "max_dn": 2.5534,
+ "max_du": 0.8965,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140010",
+ "res_lon": 115.05867,
+ "res_lat": 30.92704,
+ "cd": "05",
+ "cd_nm": "GN5",
+ "res_reg_cd": "42118140005-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181104000",
+ "town_nm": "夫子河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "大石板水库",
+ "de_value": 1.8612,
+ "dn_value": -2.0716,
+ "du_value": -1.0829,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.4245,
+ "max_dn": 1.7072,
+ "max_du": -1.0829,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140003",
+ "res_lon": 114.98531,
+ "res_lat": 31.20469,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140026-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "毛家冲水库",
+ "de_value": -5.4068,
+ "dn_value": -0.3667,
+ "du_value": -1.0736,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -2.3673,
+ "max_dn": 0.9652,
+ "max_du": 0.2467,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140008",
+ "res_lon": 114.78397,
+ "res_lat": 31.19451,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140013-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181101000",
+ "town_nm": "宋埠镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "管山水库",
+ "de_value": -1.6917,
+ "dn_value": 2.3586,
+ "du_value": -1.0305,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -1.0942,
+ "max_dn": 2.3586,
+ "max_du": -1.0305,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140041",
+ "res_lon": 114.92974,
+ "res_lat": 31.26744,
+ "cd": "06",
+ "cd_nm": "GN6",
+ "res_reg_cd": "42118140001-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "白石河水库",
+ "de_value": 3.5703,
+ "dn_value": 1.727,
+ "du_value": -0.9957,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.5796,
+ "max_dn": 2.635,
+ "max_du": 0.6617,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140036",
+ "res_lon": 115.20524,
+ "res_lat": 31.5182,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140033-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "双碾河水库",
+ "de_value": 4.6098,
+ "dn_value": 6.0469,
+ "du_value": 0.9956,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.7482,
+ "max_dn": 7.5596,
+ "max_du": 2.3457,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140028",
+ "res_lon": 115.18962,
+ "res_lat": 31.23425,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140017-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "红心水库",
+ "de_value": -0.3589,
+ "dn_value": 1.0201,
+ "du_value": 0.9868,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.6868,
+ "max_dn": 1.5179,
+ "max_du": 0.9868,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140004",
+ "res_lon": 115.05541,
+ "res_lat": 31.11106,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140042-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "永丰水库",
+ "de_value": 4.217,
+ "dn_value": -0.761,
+ "du_value": 0.8965,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.217,
+ "max_dn": 2.5534,
+ "max_du": 0.8965,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140016",
+ "res_lon": 115.23163,
+ "res_lat": 30.97045,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140009-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "东风水库",
+ "de_value": -4.7594,
+ "dn_value": -0.6034,
+ "du_value": -0.8942,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -4.7594,
+ "max_dn": 3.1064,
+ "max_du": -0.202,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140033",
+ "res_lon": 114.99636,
+ "res_lat": 30.70309,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140023-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "刘家冲水库",
+ "de_value": -3.0464,
+ "dn_value": -3.422,
+ "du_value": 0.8184,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1615,
+ "max_dn": -3.2614,
+ "max_du": 0.8184,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140028",
+ "res_lon": 115.18962,
+ "res_lat": 31.23425,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140017-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "红心水库",
+ "de_value": 2.6868,
+ "dn_value": 1.2594,
+ "du_value": -0.7362,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.6868,
+ "max_dn": 1.5179,
+ "max_du": 0.9868,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140024",
+ "res_lon": 115.4501,
+ "res_lat": 31.3021,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140022-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "界岭水库",
+ "de_value": 0.5031,
+ "dn_value": -3.2023,
+ "du_value": 0.7212,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.5031,
+ "max_dn": -2.378,
+ "max_du": 2.5291,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140028",
+ "res_lon": 115.18962,
+ "res_lat": 31.23425,
+ "cd": "06",
+ "cd_nm": "GN6",
+ "res_reg_cd": "42118140017-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "红心水库",
+ "de_value": -1.1868,
+ "dn_value": 1.1028,
+ "du_value": -0.6885,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.6868,
+ "max_dn": 1.5179,
+ "max_du": 0.9868,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140033",
+ "res_lon": 114.99636,
+ "res_lat": 30.70309,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140023-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "刘家冲水库",
+ "de_value": -2.3452,
+ "dn_value": -3.2614,
+ "du_value": 0.6787,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1615,
+ "max_dn": -3.2614,
+ "max_du": 0.8184,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140034",
+ "res_lon": 115.02647,
+ "res_lat": 31.49235,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140039-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "夏家冲水库",
+ "de_value": -0.6189,
+ "dn_value": -0.3629,
+ "du_value": 0.6777,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1999,
+ "max_dn": -0.3629,
+ "max_du": 0.6777,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140023",
+ "res_lon": 115.29541,
+ "res_lat": 31.20317,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140044-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "游家冲水库",
+ "de_value": -0.0393,
+ "dn_value": -1.7579,
+ "du_value": 0.6769,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.0272,
+ "max_dn": 4.2708,
+ "max_du": 0.6769,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140041",
+ "res_lon": 114.92974,
+ "res_lat": 31.26744,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140001-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "白石河水库",
+ "de_value": 3.2793,
+ "dn_value": 0.7598,
+ "du_value": 0.6617,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.5796,
+ "max_dn": 2.635,
+ "max_du": 0.6617,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140042",
+ "res_lon": 114.84792,
+ "res_lat": 31.44124,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140015-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "黑龙潭水库",
+ "de_value": 0.8302,
+ "dn_value": 1.2134,
+ "du_value": -0.6187,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.7526,
+ "max_dn": 1.2134,
+ "max_du": -0.6187,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ }
+]
+const page7 = [
+ {
+ "res_cd": "42118140033",
+ "res_lon": 114.99636,
+ "res_lat": 30.70309,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140023-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "刘家冲水库",
+ "de_value": 0.1615,
+ "dn_value": -3.7045,
+ "du_value": 0.6059,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1615,
+ "max_dn": -3.2614,
+ "max_du": 0.8184,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140031",
+ "res_lon": 115.13493,
+ "res_lat": 31.39278,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140036-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "桐枧冲水库",
+ "de_value": -0.5021,
+ "dn_value": 0.3907,
+ "du_value": -0.5806,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.4356,
+ "max_dn": 1.3887,
+ "max_du": 0.5677,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140031",
+ "res_lon": 115.13493,
+ "res_lat": 31.39278,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140036-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "桐枧冲水库",
+ "de_value": -1.2984,
+ "dn_value": 0.8246,
+ "du_value": 0.5677,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.4356,
+ "max_dn": 1.3887,
+ "max_du": 0.5677,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140031",
+ "res_lon": 115.13493,
+ "res_lat": 31.39278,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140036-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "桐枧冲水库",
+ "de_value": -0.115,
+ "dn_value": 0.816,
+ "du_value": 0.5284,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.4356,
+ "max_dn": 1.3887,
+ "max_du": 0.5677,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140036",
+ "res_lon": 115.20524,
+ "res_lat": 31.5182,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140033-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "双碾河水库",
+ "de_value": 1.9689,
+ "dn_value": 6.2014,
+ "du_value": 0.5281,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.7482,
+ "max_dn": 7.5596,
+ "max_du": 2.3457,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140028",
+ "res_lon": 115.18962,
+ "res_lat": 31.23425,
+ "cd": "05",
+ "cd_nm": "GN5",
+ "res_reg_cd": "42118140017-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "红心水库",
+ "de_value": 1.0042,
+ "dn_value": 1.5179,
+ "du_value": -0.5155,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 2.6868,
+ "max_dn": 1.5179,
+ "max_du": 0.9868,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140003",
+ "res_lon": 114.98531,
+ "res_lat": 31.20469,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140026-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "毛家冲水库",
+ "de_value": -4.668,
+ "dn_value": 0.5188,
+ "du_value": -0.4771,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -2.3673,
+ "max_dn": 0.9652,
+ "max_du": 0.2467,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140033",
+ "res_lon": 114.99636,
+ "res_lat": 30.70309,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140023-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "刘家冲水库",
+ "de_value": -3.1153,
+ "dn_value": -4.4569,
+ "du_value": 0.4721,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.1615,
+ "max_dn": -3.2614,
+ "max_du": 0.8184,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140016",
+ "res_lon": 115.23163,
+ "res_lat": 30.97045,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140009-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "东风水库",
+ "de_value": -5.9914,
+ "dn_value": 3.1064,
+ "du_value": -0.3862,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -4.7594,
+ "max_dn": 3.1064,
+ "max_du": -0.202,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140044",
+ "res_lon": 114.82084,
+ "res_lat": 31.36288,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140003-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "茶田水库",
+ "de_value": -2.1834,
+ "dn_value": -2.9935,
+ "du_value": -0.3706,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 0.3756,
+ "max_dn": -1.6821,
+ "max_du": 5.5501,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140040",
+ "res_lon": 114.98519,
+ "res_lat": 31.32334,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140002-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "草庙沟水库",
+ "de_value": 1.8988,
+ "dn_value": 1.6804,
+ "du_value": 0.3542,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.8988,
+ "max_dn": 1.6804,
+ "max_du": 0.3542,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140023",
+ "res_lon": 115.29541,
+ "res_lat": 31.20317,
+ "cd": "04",
+ "cd_nm": "GN4",
+ "res_reg_cd": "42118140044-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "游家冲水库",
+ "de_value": -1.2077,
+ "dn_value": 0.7251,
+ "du_value": 0.3528,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.0272,
+ "max_dn": 4.2708,
+ "max_du": 0.6769,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140040",
+ "res_lon": 114.98519,
+ "res_lat": 31.32334,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140002-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "草庙沟水库",
+ "de_value": 1.5244,
+ "dn_value": 1.1647,
+ "du_value": 0.2989,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.8988,
+ "max_dn": 1.6804,
+ "max_du": 0.3542,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140036",
+ "res_lon": 115.20524,
+ "res_lat": 31.5182,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140033-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "双碾河水库",
+ "de_value": 4.1523,
+ "dn_value": 6.728,
+ "du_value": -0.2642,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 4.7482,
+ "max_dn": 7.5596,
+ "max_du": 2.3457,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140003",
+ "res_lon": 114.98531,
+ "res_lat": 31.20469,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140026-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "毛家冲水库",
+ "de_value": -4.5301,
+ "dn_value": 0.9652,
+ "du_value": 0.2467,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -2.3673,
+ "max_dn": 0.9652,
+ "max_du": 0.2467,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140016",
+ "res_lon": 115.23163,
+ "res_lat": 30.97045,
+ "cd": "01",
+ "cd_nm": "GN1",
+ "res_reg_cd": "42118140009-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "东风水库",
+ "de_value": -5.9283,
+ "dn_value": 2.479,
+ "du_value": -0.202,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": -4.7594,
+ "max_dn": 3.1064,
+ "max_du": -0.202,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140040",
+ "res_lon": 114.98519,
+ "res_lat": 31.32334,
+ "cd": "02",
+ "cd_nm": "GN2",
+ "res_reg_cd": "42118140002-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "res_nm": "草庙沟水库",
+ "de_value": 0.606,
+ "dn_value": 1.1139,
+ "du_value": 0.1655,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 1.8988,
+ "max_dn": 1.6804,
+ "max_du": 0.3542,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ },
+ {
+ "res_cd": "42118140002",
+ "res_lon": 115.00789,
+ "res_lat": 31.23247,
+ "cd": "03",
+ "cd_nm": "GN3",
+ "res_reg_cd": "42118140018-A4",
+ "ch": "0+000",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181001000",
+ "town_nm": "龙池办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2021地方雨水情,2023高标准",
+ "res_nm": "虎形地水库",
+ "de_value": 2.8843,
+ "dn_value": 0.8199,
+ "du_value": -0.028,
+ "de_trend": null,
+ "dn_trend": null,
+ "du_trend": null,
+ "max_de": 3.9924,
+ "max_dn": 0.8199,
+ "max_du": -0.028,
+ "dt": "2025-05-25",
+ "is_has_data": "y"
+ }
+]
+
+export default class BxjcLayer extends BaseLayer {
+
+ static LayerName = 'BxjcLayer';
+
+ static SourceName = SourceName;
+
+ getStyle() {
+
+ const ret = clone(ShapeStyle);
+ this._setStyleVisibility(ret);
+ return ret;
+
+ }
+
+ getName() {
+ return BxjcLayer.LayerName;
+ }
+
+ getSubLayers() {
+ return [ShapeStyle.id];
+ }
+
+ async doRefreshLayer(mapCtrl) {
+ const ms = mapCtrl.getSource(SourceName);
+
+ let data =
+ [...page1,...page2,...page3,...page4,...page5,...page6].map((item)=>{
+ const obj = {...item}
+ obj.lgtd = item.res_lon
+ obj.lttd = item.res_lat
+ return obj
+ })
+ ms.setData(parseGeoJSON(data));
+ return true;
+ }
+
+ getFeatureTip(record) {
+ return record.stnm;
+ }
+
+ featureClicked(properties, dispatch) {
+ dispatch.runtime.setFeaturePop({
+ type: InfoPopNames.PicStPop,
+ properties,
+ coordinates: [properties.lgtd, properties.lttd],
+ offsetPop: true,
+ });
+ }
+}
diff --git a/src/views/Home/MapCtrl/mapstyle/byjclayer.js b/src/views/Home/MapCtrl/mapstyle/byjclayer.js
new file mode 100644
index 0000000..f46d89b
--- /dev/null
+++ b/src/views/Home/MapCtrl/mapstyle/byjclayer.js
@@ -0,0 +1,227 @@
+import clone from "clone";
+import { PicStPromise, TestPicStPromise } from "../../../../models/_/real";
+import { parseGeoJSON } from "../../../../utils/tools";
+import { InfoPopNames } from "../../InfoPops";
+import BaseLayer from "./baselayer";
+
+const SourceName = '白蚁监测';
+
+const ShapeStyle = {
+ id: SourceName,
+ type: 'symbol',
+ source: SourceName,
+ layout: {
+ 'icon-allow-overlap': true,
+ 'text-allow-overlap': true,
+ 'icon-image': '白蚁监测',
+ 'icon-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 0.4,
+ 14, 0.8,
+ ],
+
+ 'text-allow-overlap': true,
+ 'text-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 10,
+ 14, 14,
+ ],
+ 'text-font': ['Roboto Black'],
+ 'text-field': [
+ 'step',
+ ['zoom'],
+ '',
+ 12, ['get', 'stnm']
+ ],
+ 'text-anchor': 'top',
+ 'text-offset': [0, 1],
+
+ 'visibility': 'none',
+ },
+ paint: {
+ 'text-color': '#fff'
+ }
+};
+
+
+export default class ByjcLayer extends BaseLayer {
+
+ static LayerName = 'ByjcLayer';
+
+ static SourceName = SourceName;
+
+ getStyle() {
+
+ const ret = clone(ShapeStyle);
+ this._setStyleVisibility(ret);
+ return ret;
+
+ }
+
+ getName() {
+ return ByjcLayer.LayerName;
+ }
+
+ getSubLayers() {
+ return [ShapeStyle.id];
+ }
+
+ async doRefreshLayer(mapCtrl) {
+ const ms = mapCtrl.getSource(SourceName);
+
+ let data =
+ // await PicStPromise.get();
+ [
+ {
+ "res_cd": "42118140004",
+ "res_nm": "永丰水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "rv_name": "举水",
+ "bas_guid": "鄂东五河片区",
+ "res_lon": 115.05541,
+ "res_lat": 31.11106,
+ "res_reg_cd": "42118140042-A4",
+ "eng_scal": "小(1)型",
+ "eng_g": "IV",
+ "children": [
+ {
+ "res_cd": "42118140004",
+ "res_nm": "永丰水库",
+ "cd": 5821,
+ "cd_nm": "永丰水库",
+ "termite_status": "n",
+ "tm": "2025-05-21 09:18:28",
+ "is_main_cd": "y"
+ }
+ ]
+ },
+ {
+ "res_cd": "42118140015",
+ "res_nm": "麻城坳水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "rv_name": "举水",
+ "bas_guid": "鄂东五河片区",
+ "res_lon": 115.22541,
+ "res_lat": 30.98156,
+ "res_reg_cd": "42118140025-A4",
+ "eng_scal": "小(1)型",
+ "eng_g": "IV",
+ "children": [
+ {
+ "res_cd": "42118140015",
+ "res_nm": "麻城坳水库",
+ "cd": 5820,
+ "cd_nm": "麻城坳水库",
+ "termite_status": "y",
+ "tm": "2025-05-21 04:27:18",
+ "is_main_cd": "y"
+ }
+ ]
+ },
+ {
+ "res_cd": "42118140023",
+ "res_nm": "游家冲水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "rv_name": "巴河",
+ "bas_guid": "鄂东五河片区",
+ "res_lon": 115.29541,
+ "res_lat": 31.20317,
+ "res_reg_cd": "42118140044-A4",
+ "eng_scal": "小(1)型",
+ "eng_g": "IV",
+ "children": [
+ {
+ "res_cd": "42118140023",
+ "res_nm": "游家冲水库",
+ "cd": 5819,
+ "cd_nm": "游家冲水库",
+ "termite_status": "n",
+ "tm": "2025-05-21 04:25:56",
+ "is_main_cd": "y"
+ }
+ ]
+ },
+ {
+ "res_cd": "42118140013",
+ "res_nm": "高峰水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181106000",
+ "town_nm": "龟山镇",
+ "rv_name": "举水",
+ "bas_guid": "鄂东五河片区",
+ "res_lon": 115.21201,
+ "res_lat": 31.05011,
+ "res_reg_cd": "42118140010-A4",
+ "eng_scal": "小(1)型",
+ "eng_g": "IV",
+ "children": null
+ },
+ {
+ "res_cd": "42118140039",
+ "res_nm": "姚家河水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "rv_name": "举水",
+ "bas_guid": "鄂东五河片区",
+ "res_lon": 114.9355,
+ "res_lat": 31.28804,
+ "res_reg_cd": "42118140041-A4",
+ "eng_scal": "小(1)型",
+ "eng_g": "IV",
+ "children": null
+ }
+ ].map((item)=>{
+ const obj = {...item}
+ obj.lgtd = item.res_lon
+ obj.lttd = item.res_lat
+ return obj
+ })
+ ms.setData(parseGeoJSON(data));
+ return true;
+ }
+
+ getFeatureTip(record) {
+ return record.stnm;
+ }
+
+ featureClicked(properties, dispatch) {
+ dispatch.runtime.setFeaturePop({
+ type: InfoPopNames.PicStPop,
+ properties,
+ coordinates: [properties.lgtd, properties.lttd],
+ offsetPop: true,
+ });
+ }
+}
diff --git a/src/views/Home/MapCtrl/mapstyle/bzlayer.js b/src/views/Home/MapCtrl/mapstyle/bzlayer.js
new file mode 100644
index 0000000..deca106
--- /dev/null
+++ b/src/views/Home/MapCtrl/mapstyle/bzlayer.js
@@ -0,0 +1,5623 @@
+import clone from "clone";
+import { PicStPromise, TestPicStPromise } from "../../../../models/_/real";
+import { parseGeoJSON } from "../../../../utils/tools";
+import { InfoPopNames } from "../../InfoPops";
+import BaseLayer from "./baselayer";
+
+const SourceName = '泵站2';
+
+const ShapeStyle = {
+ id: SourceName,
+ type: 'symbol',
+ source: SourceName,
+ layout: {
+ 'icon-allow-overlap': true,
+ 'text-allow-overlap': true,
+ 'icon-image': '泵站2',
+ 'icon-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 0.4,
+ 14, 0.8,
+ ],
+
+ 'text-allow-overlap': true,
+ 'text-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 10,
+ 14, 14,
+ ],
+ 'text-font': ['Roboto Black'],
+ 'text-field': [
+ 'step',
+ ['zoom'],
+ '',
+ 12, ['get', 'stnm']
+ ],
+ 'text-anchor': 'top',
+ 'text-offset': [0, 1],
+
+ 'visibility': 'none',
+ },
+ paint: {
+ 'text-color': '#fff'
+ }
+};
+
+const page1 = [
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG200038",
+ "wasuRang": "生态用水",
+ "wainWasoType": null,
+ "lttd": 30.97131,
+ "updserRsn": null,
+ "updDate": "2023-03-21",
+ "pustCode": "HP0104208040001543",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "生态取水点1",
+ "stfl": 0.1,
+ "adCode": "420804004000000",
+ "adCode_dictText": "双喜街道办事处",
+ "lgtd": 112.18575,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "16+870",
+ "engScal": null,
+ "pumpSetNum": 2,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 101,
+ "desHead": 15,
+ "compDate": "2013-11-01",
+ "totInsCap": 8,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG200038",
+ "wasuRang": "生态用水",
+ "wainWasoType": null,
+ "lttd": 30.96613,
+ "updserRsn": null,
+ "updDate": "2023-03-21",
+ "pustCode": "HP0104208040001558",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "生态取水点2",
+ "stfl": 0.1,
+ "adCode": "420804001003000",
+ "adCode_dictText": "白石坡社区",
+ "lgtd": 112.19441,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "18+000",
+ "engScal": null,
+ "pumpSetNum": 3,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 102,
+ "desHead": 15,
+ "compDate": "2009-08-01",
+ "totInsCap": 22.5,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "年久失修",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG200038",
+ "wasuRang": "车桥三组",
+ "wainWasoType": null,
+ "lttd": 30.972222,
+ "updserRsn": null,
+ "updDate": "2023-03-21",
+ "pustCode": "HP0104208040001467",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "车桥泵站1",
+ "stfl": 0.1,
+ "adCode": "420804004213000",
+ "adCode_dictText": "车桥村",
+ "lgtd": 112.121667,
+ "actIrrA": 40,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "8+155",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 103,
+ "desHead": 8,
+ "compDate": "1982-07-01",
+ "totInsCap": 4,
+ "serCod": "异常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "年久失修",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG200038",
+ "wasuRang": "车桥三组",
+ "wainWasoType": null,
+ "lttd": 30.972222,
+ "updserRsn": null,
+ "updDate": "2023-03-21",
+ "pustCode": "HP0104208040001471",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "车桥泵站2",
+ "stfl": 0.3,
+ "adCode": "420804004213000",
+ "adCode_dictText": "车桥村",
+ "lgtd": 112.126389,
+ "actIrrA": 80,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "8+590",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 104,
+ "desHead": 22,
+ "compDate": "1982-07-01",
+ "totInsCap": 75,
+ "serCod": "异常",
+ "dsfl": 0.3,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "年久失修",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG200038",
+ "wasuRang": "车桥三组",
+ "wainWasoType": null,
+ "lttd": 30.97,
+ "updserRsn": null,
+ "updDate": "2023-03-21",
+ "pustCode": "HP0104208040001486",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "车桥泵站3",
+ "stfl": 0.05,
+ "adCode": "420804004213000",
+ "adCode_dictText": "车桥村",
+ "lgtd": 112.128056,
+ "actIrrA": 22,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "8+865",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 105,
+ "desHead": 25,
+ "compDate": "1982-07-01",
+ "totInsCap": 15,
+ "serCod": "异常",
+ "dsfl": 0.05,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG200038",
+ "wasuRang": null,
+ "wainWasoType": null,
+ "lttd": 30.96709,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208040001888",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "双井泵站",
+ "stfl": null,
+ "adCode": "420804004211000",
+ "adCode_dictText": "双井村",
+ "lgtd": 112.14953,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "11+240",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 106,
+ "desHead": null,
+ "compDate": null,
+ "totInsCap": 4,
+ "serCod": null,
+ "dsfl": null,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-03-21"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2013-11-01",
+ "engManCode": "ENG200038",
+ "wasuRang": "谭店一组",
+ "wainWasoType": null,
+ "lttd": 30.959167,
+ "updserRsn": "小农水更新改造",
+ "updDate": "2023-03-21",
+ "pustCode": "HP0104208040001490",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "谭店泵站1",
+ "stfl": 0.3,
+ "adCode": "420804004207000",
+ "adCode_dictText": "谭店村",
+ "lgtd": 112.159444,
+ "actIrrA": 200,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "14+125",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 107,
+ "desHead": 15,
+ "compDate": "1982-07-01",
+ "totInsCap": 20,
+ "serCod": "正常",
+ "dsfl": 0.3,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2013-11-01",
+ "engManCode": "ENG200038",
+ "wasuRang": "谭店二组",
+ "wainWasoType": null,
+ "lttd": 30.958889,
+ "updserRsn": "小农水更新改造",
+ "updDate": "2023-03-21",
+ "pustCode": "HP0104208040001505",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "谭店泵站2",
+ "stfl": 0.2,
+ "adCode": "420804004207000",
+ "adCode_dictText": "谭店村",
+ "lgtd": 112.161389,
+ "actIrrA": 120,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "14+340",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 108,
+ "desHead": 15,
+ "compDate": "1982-07-01",
+ "totInsCap": 18,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2010-08-01",
+ "engManCode": "ENG200038",
+ "wasuRang": "凤凰一组",
+ "wainWasoType": null,
+ "lttd": 30.961,
+ "updserRsn": "土地平整改造",
+ "updDate": "2023-08-27",
+ "pustCode": "HP010420804000151X",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "凤凰泵站1",
+ "stfl": 0.2,
+ "adCode": "420804004219000",
+ "adCode_dictText": "凤凰村",
+ "lgtd": 112.17466,
+ "actIrrA": 60,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "15+165",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 109,
+ "desHead": 15,
+ "compDate": "1982-07-01",
+ "totInsCap": 17,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2010-08-01",
+ "engManCode": "ENG200038",
+ "wasuRang": "凤凰二组",
+ "wainWasoType": null,
+ "lttd": 30.96207,
+ "updserRsn": "土地平整改造",
+ "updDate": "2023-03-21",
+ "pustCode": "HP0104208040001524",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "凤凰泵站2",
+ "stfl": 0.2,
+ "adCode": "420804004219000",
+ "adCode_dictText": "凤凰村",
+ "lgtd": 112.175,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "15+260",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 110,
+ "desHead": 15,
+ "compDate": "1982-07-01",
+ "totInsCap": 17,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "年久失修",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG200038",
+ "wasuRang": "苏院村",
+ "wainWasoType": null,
+ "lttd": 30.962937,
+ "updserRsn": null,
+ "updDate": "2023-03-21",
+ "pustCode": "HP0104208020001448",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "苏院泵站",
+ "stfl": 0.1,
+ "adCode": "420802102215000",
+ "adCode_dictText": "苏院村",
+ "lgtd": 112.093791,
+ "actIrrA": 80,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "3+050",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 111,
+ "desHead": 12,
+ "compDate": "1982-07-01",
+ "totInsCap": 22,
+ "serCod": "异常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "年久失修",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG200038",
+ "wasuRang": "和平五组",
+ "wainWasoType": null,
+ "lttd": 30.973611,
+ "updserRsn": null,
+ "updDate": "2023-03-21",
+ "pustCode": "HP0104208020001452",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "和平五组泵站",
+ "stfl": 0.05,
+ "adCode": "420802102214000",
+ "adCode_dictText": "和平村",
+ "lgtd": 112.107222,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": "6+490",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 112,
+ "desHead": 10,
+ "compDate": "1982-07-01",
+ "totInsCap": 7.5,
+ "serCod": "异常",
+ "dsfl": 0.05,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "却集五组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001672",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "丁兴发泵站",
+ "stfl": 0.1,
+ "adCode": "420802102232105",
+ "adCode_dictText": "却集村五组",
+ "lgtd": null,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 113,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 5.5,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "却集二组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001649",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "家富泵站",
+ "stfl": 0.1,
+ "adCode": "420802102232102",
+ "adCode_dictText": "却集村二组",
+ "lgtd": null,
+ "actIrrA": 300,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 114,
+ "desHead": 24,
+ "compDate": null,
+ "totInsCap": 30,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "却集五组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001687",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "刘传权泵站",
+ "stfl": 0.1,
+ "adCode": "420802102232105",
+ "adCode_dictText": "却集村五组",
+ "lgtd": null,
+ "actIrrA": 100,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 115,
+ "desHead": 15,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ }
+]
+const page2 =[
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "双堰一组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001706",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "白马垱一机台",
+ "stfl": 0.1,
+ "adCode": "420802102231101",
+ "adCode_dictText": "双堰村一组",
+ "lgtd": null,
+ "actIrrA": 200,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 116,
+ "desHead": 14,
+ "compDate": null,
+ "totInsCap": 17,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP010420802000162X",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "烂泥冲水库西泵站",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 350,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 117,
+ "desHead": 12.5,
+ "compDate": null,
+ "totInsCap": 18.5,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "夹园一组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001562",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "夹园一组泵站",
+ "stfl": 0.1,
+ "adCode": "420802102213000",
+ "adCode_dictText": "夹园村",
+ "lgtd": null,
+ "actIrrA": 40,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 118,
+ "desHead": 18,
+ "compDate": null,
+ "totInsCap": 15,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "却集五组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001691",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "烂泥冲水库泵站",
+ "stfl": 0.1,
+ "adCode": "420802102232105",
+ "adCode_dictText": "却集村五组",
+ "lgtd": null,
+ "actIrrA": 150,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 119,
+ "desHead": 12.5,
+ "compDate": null,
+ "totInsCap": 18.5,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "夹园三组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001581",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "夹园三组泵站",
+ "stfl": 0.1,
+ "adCode": "420802102213000",
+ "adCode_dictText": "夹园村",
+ "lgtd": null,
+ "actIrrA": 70,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 120,
+ "desHead": 18,
+ "compDate": null,
+ "totInsCap": 15,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "却集二组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001634",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "余华泵站",
+ "stfl": 0.1,
+ "adCode": "420802102232102",
+ "adCode_dictText": "却集村二组",
+ "lgtd": null,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 121,
+ "desHead": 15,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "却集四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001668",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "却集四组泵站",
+ "stfl": 0.1,
+ "adCode": "420802102232104",
+ "adCode_dictText": "却集村四组",
+ "lgtd": null,
+ "actIrrA": 260,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 122,
+ "desHead": 12.5,
+ "compDate": null,
+ "totInsCap": 18.5,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "却集三组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001653",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "却集三组泵站",
+ "stfl": 0.1,
+ "adCode": "420802102232103",
+ "adCode_dictText": "却集村三组",
+ "lgtd": null,
+ "actIrrA": 300,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 123,
+ "desHead": 12.5,
+ "compDate": null,
+ "totInsCap": 18.5,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "夹园四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001600",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "夹园四组泵站2",
+ "stfl": 0.1,
+ "adCode": "420802102213000",
+ "adCode_dictText": "夹园村",
+ "lgtd": null,
+ "actIrrA": 90,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 124,
+ "desHead": 12.5,
+ "compDate": null,
+ "totInsCap": 18.5,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001615",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "文昌一组泵站",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 40,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 125,
+ "desHead": 12,
+ "compDate": null,
+ "totInsCap": 10,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "夹园二组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001577",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "夹园二组泵站",
+ "stfl": 0.1,
+ "adCode": "420802102213000",
+ "adCode_dictText": "夹园村",
+ "lgtd": null,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 126,
+ "desHead": 12.5,
+ "compDate": null,
+ "totInsCap": 18.5,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "双堰一组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001710",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "白马垱二机台",
+ "stfl": 0.1,
+ "adCode": "420802102231101",
+ "adCode_dictText": "双堰村一组",
+ "lgtd": null,
+ "actIrrA": 800,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 127,
+ "desHead": 15,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100049",
+ "wasuRang": "夹园四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001596",
+ "chanCode": "420802001353",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "夹园四组泵站1",
+ "stfl": 0.1,
+ "adCode": "420802102213000",
+ "adCode_dictText": "夹园村",
+ "lgtd": null,
+ "actIrrA": 110,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠一支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "一支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 128,
+ "desHead": 18,
+ "compDate": null,
+ "totInsCap": 15,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "四井一组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP010420802000184X",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "李维金",
+ "stfl": 0.1,
+ "adCode": "420802102230101",
+ "adCode_dictText": "四井村一组",
+ "lgtd": null,
+ "actIrrA": 120,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 129,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 13,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001801",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "文昌三组泵站2",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 100,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 130,
+ "desHead": 16,
+ "compDate": null,
+ "totInsCap": 10,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ }
+]
+const page3 =[
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001763",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "文昌一组泵站4",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 150,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 131,
+ "desHead": 15,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "四井四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001873",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "丁兴元",
+ "stfl": 0.1,
+ "adCode": "420802102230104",
+ "adCode_dictText": "四井村四组",
+ "lgtd": null,
+ "actIrrA": 920,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 132,
+ "desHead": 14,
+ "compDate": null,
+ "totInsCap": 17,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001778",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "文昌二组泵站1",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 200,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 133,
+ "desHead": 14,
+ "compDate": null,
+ "totInsCap": 17,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "四井四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001869",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "丁兴元",
+ "stfl": 0.1,
+ "adCode": "420802102230104",
+ "adCode_dictText": "四井村四组",
+ "lgtd": null,
+ "actIrrA": 920,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 134,
+ "desHead": 12,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP010420802000173X",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "文昌一组泵站1",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 200,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 135,
+ "desHead": 16,
+ "compDate": null,
+ "totInsCap": 10,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "四井三组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001854",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "李生林",
+ "stfl": 0.1,
+ "adCode": "420802102230103",
+ "adCode_dictText": "四井村三组",
+ "lgtd": null,
+ "actIrrA": 180,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 136,
+ "desHead": 18,
+ "compDate": null,
+ "totInsCap": 15,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001759",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "文昌一组泵站3",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 137,
+ "desHead": 16,
+ "compDate": null,
+ "totInsCap": 10,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "四井一组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001835",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "万志中",
+ "stfl": 0.1,
+ "adCode": "420802102230101",
+ "adCode_dictText": "四井村一组",
+ "lgtd": null,
+ "actIrrA": 680,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 138,
+ "desHead": 38,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001797",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "文昌三组泵站1",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 60,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 139,
+ "desHead": 16,
+ "compDate": null,
+ "totInsCap": 10,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001816",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "文昌三组泵站3",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 150,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 140,
+ "desHead": 12,
+ "compDate": null,
+ "totInsCap": 10,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001782",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "文昌二组泵站2",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 300,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 141,
+ "desHead": 15,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001744",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "文昌一组泵站2",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 150,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 142,
+ "desHead": 16,
+ "compDate": null,
+ "totInsCap": 10,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "四井六组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001888",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "李家林",
+ "stfl": 0.1,
+ "adCode": "420802102230106",
+ "adCode_dictText": "四井村六组",
+ "lgtd": null,
+ "actIrrA": 120,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 143,
+ "desHead": 18,
+ "compDate": null,
+ "totInsCap": 13,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001820",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "烂泥冲水库三组泵站",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 200,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 144,
+ "desHead": 12,
+ "compDate": null,
+ "totInsCap": 10,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100050",
+ "wasuRang": "文昌村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001725",
+ "chanCode": "420802001362",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "烂泥冲水库东泵站",
+ "stfl": 0.1,
+ "adCode": "420802102236000",
+ "adCode_dictText": "文昌村",
+ "lgtd": null,
+ "actIrrA": 400,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干渠二支渠",
+ "desIrrA": null,
+ "engManCode_dictText": "二支渠农民用水者协会",
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 145,
+ "desHead": 10,
+ "compDate": null,
+ "totInsCap": 7.5,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ }
+]
+const page4 =[
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "谭店五组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208040001429",
+ "chanCode": "420804001377",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "谭店五组泵站",
+ "stfl": 0.3,
+ "adCode": "420804004207105",
+ "adCode_dictText": "谭店村五组",
+ "lgtd": null,
+ "actIrrA": 200,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干二分渠",
+ "desIrrA": null,
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 146,
+ "desHead": 15,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.3,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "凤凰村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104210000001431",
+ "chanCode": "420804001378",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "合作社泵站",
+ "stfl": 0.4,
+ "adCode": "421000000000000",
+ "adCode_dictText": "荆州市",
+ "lgtd": null,
+ "actIrrA": 300,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "总干三分渠",
+ "desIrrA": null,
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 147,
+ "desHead": 20,
+ "compDate": null,
+ "totInsCap": 28,
+ "serCod": null,
+ "dsfl": 0.4,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "周河七组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP010420804000140X",
+ "chanCode": "420804001381",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "周河七组泵站",
+ "stfl": 0.1,
+ "adCode": "420804004215107",
+ "adCode_dictText": "周河村七组",
+ "lgtd": null,
+ "actIrrA": 100,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "周河提水抗旱渠",
+ "desIrrA": null,
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 148,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 12,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "周河三组",
+ "wainWasoType": null,
+ "lttd": 30.986885,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208040001395",
+ "chanCode": "420804001381",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "周河三组泵站",
+ "stfl": 0.1,
+ "adCode": "420804004215103",
+ "adCode_dictText": "周河村三组",
+ "lgtd": 112.113909,
+ "actIrrA": 220,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "周河提水抗旱渠",
+ "desIrrA": null,
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 149,
+ "desHead": 10,
+ "compDate": null,
+ "totInsCap": 12,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "周河一组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208040001380",
+ "chanCode": "420804001381",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "周河一组泵站",
+ "stfl": 0.3,
+ "adCode": "420804000000000",
+ "adCode_dictText": "掇刀区",
+ "lgtd": null,
+ "actIrrA": 80,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "周河提水抗旱渠",
+ "desIrrA": null,
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 150,
+ "desHead": 30,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.3,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "响岭村",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208040001414",
+ "chanCode": "420804001382",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "响岭村泵站",
+ "stfl": 0.8,
+ "adCode": "420804004217000",
+ "adCode_dictText": "响岭村",
+ "lgtd": null,
+ "actIrrA": 1200,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "总干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "响岭提水抗旱渠",
+ "desIrrA": null,
+ "pumpNum": null,
+ "irrCode": "D00000290",
+ "sort": 151,
+ "desHead": 20,
+ "compDate": null,
+ "totInsCap": 205,
+ "serCod": null,
+ "dsfl": 0.8,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": null,
+ "wainWasoType": null,
+ "lttd": 31.450507,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020000016",
+ "chanCode": null,
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "林业泵站",
+ "stfl": 0.65,
+ "adCode": "420802102000000",
+ "adCode_dictText": "漳河镇",
+ "lgtd": 111.657545,
+ "actIrrA": 2600,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "一干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": null,
+ "insFlow": null,
+ "desIrrA": null,
+ "pumpNum": null,
+ "irrCode": "D00001190",
+ "sort": 201,
+ "desHead": 22,
+ "compDate": null,
+ "totInsCap": 190,
+ "serCod": null,
+ "dsfl": null,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG200038",
+ "wasuRang": "夹园四组",
+ "wainWasoType": null,
+ "lttd": 30.939877,
+ "updserRsn": null,
+ "updDate": "2023-04-01",
+ "pustCode": "HP0104208020000020",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "夹园1#泵站",
+ "stfl": null,
+ "adCode": "420802102000000",
+ "adCode_dictText": "漳河镇",
+ "lgtd": 112.074139,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": "0+470",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 40,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 301,
+ "desHead": 10,
+ "compDate": "2012-01-01",
+ "totInsCap": 10,
+ "serCod": "正常",
+ "dsfl": 0.05,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": 70.99,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "居委会一组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000659",
+ "chanCode": "420822000640",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "四方1组泵站",
+ "stfl": 0.1,
+ "adCode": "420822103001101",
+ "adCode_dictText": "四方社区一组",
+ "lgtd": null,
+ "actIrrA": 280,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": "1+050",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠新二分干渠",
+ "desIrrA": 280,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 302,
+ "desHead": 6,
+ "compDate": "1985-01-01",
+ "totInsCap": 30,
+ "serCod": "老化",
+ "dsfl": 0.15,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "同乐六组",
+ "wainWasoType": null,
+ "lttd": 30.939285,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP010420802000004X",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "同乐1#泵站",
+ "stfl": null,
+ "adCode": "420802102000000",
+ "adCode_dictText": "漳河镇",
+ "lgtd": 112.070444,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": "1+320",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 75,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 303,
+ "desHead": 10,
+ "compDate": "2015-01-01",
+ "totInsCap": 5.5,
+ "serCod": "正常",
+ "dsfl": 0.02,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG200038",
+ "wasuRang": "夹园四组",
+ "wainWasoType": null,
+ "lttd": 31.32595,
+ "updserRsn": null,
+ "updDate": "2023-04-01",
+ "pustCode": "HP0104208020000035",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "夹园2#泵站",
+ "stfl": null,
+ "adCode": "420802102000000",
+ "adCode_dictText": "漳河镇",
+ "lgtd": 112.074138,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": "1+740",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 50,
+ "engManCode_dictText": "村(镇)",
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 304,
+ "desHead": 10,
+ "compDate": "2013-01-01",
+ "totInsCap": 18.5,
+ "serCod": "正常",
+ "dsfl": 0.05,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "同乐六组",
+ "wainWasoType": null,
+ "lttd": 31.054296,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020000054",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "同乐2#泵站",
+ "stfl": null,
+ "adCode": "420802102000000",
+ "adCode_dictText": "漳河镇",
+ "lgtd": 111.97117,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": "2+160",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 100,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 305,
+ "desHead": 10,
+ "compDate": "2014-01-01",
+ "totInsCap": 18.5,
+ "serCod": "正常",
+ "dsfl": 0.05,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "同乐三组",
+ "wainWasoType": null,
+ "lttd": 31.039904,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020000069",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "同乐3#泵站",
+ "stfl": null,
+ "adCode": "420802102000000",
+ "adCode_dictText": "漳河镇",
+ "lgtd": 111.967812,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": "2+770",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 256,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 306,
+ "desHead": 10,
+ "compDate": "2014-01-01",
+ "totInsCap": 18.5,
+ "serCod": "正常",
+ "dsfl": 0.05,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "同乐五组",
+ "wainWasoType": null,
+ "lttd": 31.035372,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020000073",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "同乐4#泵站",
+ "stfl": null,
+ "adCode": "420802102000000",
+ "adCode_dictText": "漳河镇",
+ "lgtd": 111.96541,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": "3+000",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 360,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 307,
+ "desHead": 10,
+ "compDate": "2014-01-01",
+ "totInsCap": 18.5,
+ "serCod": "正常",
+ "dsfl": 0.05,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "同乐二、六组",
+ "wainWasoType": null,
+ "lttd": 31.027495,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020000088",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "同乐5#泵站",
+ "stfl": null,
+ "adCode": "420802102000000",
+ "adCode_dictText": "漳河镇",
+ "lgtd": 111.96105,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": "3+250",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 70,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 308,
+ "desHead": 10,
+ "compDate": "2014-01-01",
+ "totInsCap": 18.5,
+ "serCod": "正常",
+ "dsfl": 0.05,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ }
+]
+const page5 =[
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": null,
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208040000350",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "苏场二组机台",
+ "stfl": null,
+ "adCode": "420804100237102",
+ "adCode_dictText": "苏场村二组",
+ "lgtd": null,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 2,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": null,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 339,
+ "desHead": 25,
+ "compDate": "1981-01-01",
+ "totInsCap": 23,
+ "serCod": "老化",
+ "dsfl": null,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "王场村三组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000610",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "金桥泵站",
+ "stfl": 0.05,
+ "adCode": "420822102216000",
+ "adCode_dictText": "王场村",
+ "lgtd": null,
+ "actIrrA": 18,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 38,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 340,
+ "desHead": 6,
+ "compDate": "1987-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "荷堰村七组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000591",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "金鸡湾泵站",
+ "stfl": 0.05,
+ "adCode": "420822102212000",
+ "adCode_dictText": "荷堰村",
+ "lgtd": null,
+ "actIrrA": 22,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 43,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 341,
+ "desHead": 6,
+ "compDate": "1999-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "荷堰村七组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000587",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "门口河泵站",
+ "stfl": 0.05,
+ "adCode": "420822102212000",
+ "adCode_dictText": "荷堰村",
+ "lgtd": null,
+ "actIrrA": 18,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 36,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 342,
+ "desHead": 6,
+ "compDate": "1989-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "荷堰村六组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000572",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "河里泵站",
+ "stfl": 0.05,
+ "adCode": "420822102212000",
+ "adCode_dictText": "荷堰村",
+ "lgtd": null,
+ "actIrrA": 28,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 50,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 343,
+ "desHead": 5.3,
+ "compDate": "1989-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "荷堰村五组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000568",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "高湾河泵站",
+ "stfl": 0.05,
+ "adCode": "420822102212000",
+ "adCode_dictText": "荷堰村",
+ "lgtd": null,
+ "actIrrA": 26,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 44,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 344,
+ "desHead": 6,
+ "compDate": "1988-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "荷堰村四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000553",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "下头河泵站",
+ "stfl": 0.05,
+ "adCode": "420822102212000",
+ "adCode_dictText": "荷堰村",
+ "lgtd": null,
+ "actIrrA": 32,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 50,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 345,
+ "desHead": 6,
+ "compDate": "1987-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "荷堰村七组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000606",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "下长堰泵站",
+ "stfl": 0.05,
+ "adCode": "420822102212000",
+ "adCode_dictText": "荷堰村",
+ "lgtd": null,
+ "actIrrA": 33,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 56,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 346,
+ "desHead": 6,
+ "compDate": "1987-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "王场村七组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000625",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "祠堂山泵站",
+ "stfl": 0.05,
+ "adCode": "420822102216000",
+ "adCode_dictText": "王场村",
+ "lgtd": null,
+ "actIrrA": 22,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 40,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 347,
+ "desHead": 6,
+ "compDate": "1986-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "荷堰村二组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP010420822000052X",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "金鸡港泵站",
+ "stfl": 0.05,
+ "adCode": "420822102212000",
+ "adCode_dictText": "荷堰村",
+ "lgtd": null,
+ "actIrrA": 33,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 50,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 348,
+ "desHead": 6,
+ "compDate": "1986-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "荷堰村一组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000515",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "上长堰泵站",
+ "stfl": 0.05,
+ "adCode": "420822102212000",
+ "adCode_dictText": "荷堰村",
+ "lgtd": null,
+ "actIrrA": 30,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 50,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 349,
+ "desHead": 6,
+ "compDate": "1989-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "荷堰村一组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000500",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "河里泵站",
+ "stfl": 0.05,
+ "adCode": "420822102212000",
+ "adCode_dictText": "荷堰村",
+ "lgtd": null,
+ "actIrrA": 27,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 39,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 350,
+ "desHead": 6,
+ "compDate": "1985-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "九堰村四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000496",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "王湾泵站",
+ "stfl": 0.05,
+ "adCode": "420822102211000",
+ "adCode_dictText": "九堰村",
+ "lgtd": null,
+ "actIrrA": 30,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 50,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 351,
+ "desHead": 6,
+ "compDate": "1986-01-01",
+ "totInsCap": 17,
+ "serCod": "老化",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "九堰村四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000481",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "九堰村二级泵站",
+ "stfl": 0.1,
+ "adCode": "420822102211000",
+ "adCode_dictText": "九堰村",
+ "lgtd": null,
+ "actIrrA": 34,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 50,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 352,
+ "desHead": 5.3,
+ "compDate": "1988-01-01",
+ "totInsCap": 10,
+ "serCod": "老化",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "需配套更新",
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "九堰村三组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000477",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "吴垱泵站",
+ "stfl": 0.2,
+ "adCode": "420822102211000",
+ "adCode_dictText": "九堰村",
+ "lgtd": null,
+ "actIrrA": 30,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "二干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "二干渠",
+ "desIrrA": 50,
+ "pumpNum": null,
+ "irrCode": "D00000300",
+ "sort": 353,
+ "desHead": 13,
+ "compDate": "1988-01-01",
+ "totInsCap": 30,
+ "serCod": "老化",
+ "dsfl": 0.3,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ }
+]
+const page6 =[
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100009",
+ "wasuRang": "掇刀区白鹤村五组",
+ "wainWasoType": null,
+ "lttd": 30.890211,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "更新",
+ "updDate": null,
+ "pustCode": "HP0104208040000714",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠3号九家湾白鹤5队泵站",
+ "stfl": 0.15,
+ "adCode": "420804100212105",
+ "adCode_dictText": "白鹤村五组",
+ "lgtd": 112.206459,
+ "actIrrA": 80,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "9+325",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 100,
+ "engManCode_dictText": "九家湾中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 403,
+ "desHead": 8,
+ "compDate": "1966-01-01",
+ "totInsCap": 18,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100009",
+ "wasuRang": "掇刀区白鹤村四组",
+ "wainWasoType": null,
+ "lttd": 30.88388,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "更新",
+ "updDate": null,
+ "pustCode": "HP0104208040000729",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠4号九家湾白鹤4队泵站",
+ "stfl": 0.15,
+ "adCode": "420804100212104",
+ "adCode_dictText": "白鹤村四组",
+ "lgtd": 112.211521,
+ "actIrrA": 100,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "10+186",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 120,
+ "engManCode_dictText": "九家湾中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 404,
+ "desHead": 8,
+ "compDate": "1966-01-01",
+ "totInsCap": 18,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100009",
+ "wasuRang": "掇刀区白鹤村二组",
+ "wainWasoType": null,
+ "lttd": 30.881478,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "更新",
+ "updDate": null,
+ "pustCode": "HP0104208040000733",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠5号九家湾白鹤大桥泵站",
+ "stfl": 0.15,
+ "adCode": "420804100212102",
+ "adCode_dictText": "白鹤村二组",
+ "lgtd": 112.21305,
+ "actIrrA": 80,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "10+560",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 100,
+ "engManCode_dictText": "九家湾中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 405,
+ "desHead": 8,
+ "compDate": "1966-01-01",
+ "totInsCap": 18,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100009",
+ "wasuRang": "掇刀区白鹤村三组",
+ "wainWasoType": null,
+ "lttd": 30.88133,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "更新",
+ "updDate": null,
+ "pustCode": "HP0104208040000748",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠6号九家湾白鹤7队泵站",
+ "stfl": 0.15,
+ "adCode": "420804100212103",
+ "adCode_dictText": "白鹤村三组",
+ "lgtd": 112.213077,
+ "actIrrA": 500,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "10+612",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 520,
+ "engManCode_dictText": "九家湾中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 406,
+ "desHead": 8,
+ "compDate": "1966-01-01",
+ "totInsCap": 18,
+ "serCod": "良好",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100009",
+ "wasuRang": "掇刀区白鹤村一组",
+ "wainWasoType": null,
+ "lttd": 30.880445,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "更新",
+ "updDate": null,
+ "pustCode": "HP0104208040000752",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠7号九家湾白鹤3队泵站",
+ "stfl": 0.15,
+ "adCode": "420804100212101",
+ "adCode_dictText": "白鹤村一组",
+ "lgtd": 112.21385,
+ "actIrrA": 120,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "10+652",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 150,
+ "engManCode_dictText": "九家湾中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 407,
+ "desHead": 8,
+ "compDate": "1966-01-01",
+ "totInsCap": 18,
+ "serCod": "良好",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100009",
+ "wasuRang": "掇刀区陈集村",
+ "wainWasoType": null,
+ "lttd": 30.87436,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "更新",
+ "updDate": null,
+ "pustCode": "HP0104208040000767",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠8号九家湾白鹤1队泵站",
+ "stfl": 0.15,
+ "adCode": "420804100203000",
+ "adCode_dictText": "陈集村",
+ "lgtd": 112.222684,
+ "actIrrA": 120,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "11+696",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 150,
+ "engManCode_dictText": "九家湾中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 408,
+ "desHead": 8,
+ "compDate": "1966-01-01",
+ "totInsCap": 30,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100009",
+ "wasuRang": "团林镇陈集村",
+ "wainWasoType": null,
+ "lttd": 30.862232,
+ "updserRsn": null,
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040001892",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠9号九家湾陈集泵站",
+ "stfl": 0.15,
+ "adCode": "420804100203000",
+ "adCode_dictText": "陈集村",
+ "lgtd": 112.227907,
+ "actIrrA": 120,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "13+200",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 150,
+ "engManCode_dictText": "九家湾中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 409,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 30,
+ "serCod": null,
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100009",
+ "wasuRang": "团林镇陈集村",
+ "wainWasoType": null,
+ "lttd": 30.856782,
+ "updserRsn": null,
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040001907",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠10号九家湾陈集泵站",
+ "stfl": 0.15,
+ "adCode": "420804100203000",
+ "adCode_dictText": "陈集村",
+ "lgtd": 112.227734,
+ "actIrrA": 118,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "13+734",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 150,
+ "engManCode_dictText": "九家湾中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 410,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 18,
+ "serCod": null,
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100009",
+ "wasuRang": "兴隆街办龙王社区",
+ "wainWasoType": null,
+ "lttd": 30.895707,
+ "updserRsn": null,
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040001911",
+ "chanCode": "420804001141",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一分干引水渠1号泵站",
+ "stfl": 0.1,
+ "adCode": "420804003000000",
+ "adCode_dictText": "兴隆街办",
+ "lgtd": 112.192701,
+ "actIrrA": 80,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "0+750",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一分干渠",
+ "desIrrA": 100,
+ "engManCode_dictText": "九家湾中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 411,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 11,
+ "serCod": null,
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100009",
+ "wasuRang": "团林镇双碑村",
+ "wainWasoType": null,
+ "lttd": 30.889901,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "更新",
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040000771",
+ "chanCode": "420804001141",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一分干引水渠2号泵站",
+ "stfl": 0.15,
+ "adCode": "420804100231000",
+ "adCode_dictText": "双碑村",
+ "lgtd": 112.186985,
+ "actIrrA": 200,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "1+600",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一分干渠",
+ "desIrrA": 210,
+ "engManCode_dictText": "九家湾中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 412,
+ "desHead": 8,
+ "compDate": "1966-01-01",
+ "totInsCap": 18,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2014-01-01",
+ "engManCode": "ENG100012",
+ "wasuRang": "团林镇五岭村",
+ "wainWasoType": null,
+ "lttd": 30.854889,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "新建",
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040000843",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠11号雷集五岭泵站",
+ "stfl": 0.1,
+ "adCode": "420804100204000",
+ "adCode_dictText": "五岭村",
+ "lgtd": 112.248034,
+ "actIrrA": 80,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "20+160",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 100,
+ "engManCode_dictText": "雷集中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 413,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 30,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2014-01-01",
+ "engManCode": "ENG100012",
+ "wasuRang": "团林镇五岭村",
+ "wainWasoType": null,
+ "lttd": 30.860333,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "新建",
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040000858",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠12号雷集乌龙洞泵站",
+ "stfl": 0.1,
+ "adCode": "420804100204000",
+ "adCode_dictText": "五岭村",
+ "lgtd": 112.259556,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "22+300",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 100,
+ "engManCode_dictText": "雷集中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 414,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 30,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2014-01-01",
+ "engManCode": "ENG100012",
+ "wasuRang": "麻城镇横店村",
+ "wainWasoType": null,
+ "lttd": 30.858938,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "新建",
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040000862",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠13号雷集横店7队泵站",
+ "stfl": 0.1,
+ "adCode": "420804101216000",
+ "adCode_dictText": "横店村",
+ "lgtd": 112.261386,
+ "actIrrA": 40,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "22+642",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 100,
+ "engManCode_dictText": "雷集中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 415,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 30,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2014-01-01",
+ "engManCode": "ENG100012",
+ "wasuRang": "麻城镇横店村",
+ "wainWasoType": null,
+ "lttd": 30.848602,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "新建",
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040000896",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠14号雷集横店9队泵站",
+ "stfl": 0.2,
+ "adCode": "420804101216000",
+ "adCode_dictText": "横店村",
+ "lgtd": 112.266562,
+ "actIrrA": 300,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "23+948",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 350,
+ "engManCode_dictText": "雷集中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 416,
+ "desHead": 9.5,
+ "compDate": null,
+ "totInsCap": 35,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2014-01-01",
+ "engManCode": "ENG100012",
+ "wasuRang": "麻城镇横店村",
+ "wainWasoType": null,
+ "lttd": 30.848623,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "新建",
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040000877",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠15号雷集横店9队泵站",
+ "stfl": 0.1,
+ "adCode": "420804101216000",
+ "adCode_dictText": "横店村",
+ "lgtd": 112.265596,
+ "actIrrA": 80,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "23+965",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 100,
+ "engManCode_dictText": "雷集中心管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 417,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 30,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ }
+]
+const page7 =[
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100015",
+ "wasuRang": "曾集镇雷都村",
+ "wainWasoType": null,
+ "lttd": 30.76403,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220001253",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠31号柴集雷都1组泵站",
+ "stfl": 0.1,
+ "adCode": "420822112213000",
+ "adCode_dictText": "雷都村",
+ "lgtd": 112.326091,
+ "actIrrA": 68,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "41+200",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 98,
+ "engManCode_dictText": "柴集管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 433,
+ "desHead": 10,
+ "compDate": null,
+ "totInsCap": 17,
+ "serCod": null,
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100015",
+ "wasuRang": "曾集镇雷都村",
+ "wainWasoType": null,
+ "lttd": 30.763142,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220001268",
+ "chanCode": "420804001388",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "干渠32号柴集雷都2队泵站",
+ "stfl": 0.1,
+ "adCode": "420822112213000",
+ "adCode_dictText": "雷都村",
+ "lgtd": 112.327784,
+ "actIrrA": 80,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "41+395",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠",
+ "desIrrA": 115,
+ "engManCode_dictText": "柴集管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 434,
+ "desHead": 12,
+ "compDate": null,
+ "totInsCap": 17,
+ "serCod": null,
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100011",
+ "wasuRang": "五里镇杨集村一组",
+ "wainWasoType": null,
+ "lttd": 30.809147,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000788",
+ "chanCode": "420804001141",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一分干1号杨集1队泵站",
+ "stfl": 0.19,
+ "adCode": "420822101205101",
+ "adCode_dictText": "杨集村一组",
+ "lgtd": 112.181173,
+ "actIrrA": 500,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "9+760",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一分干渠",
+ "desIrrA": 800,
+ "engManCode_dictText": "杨集管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 435,
+ "desHead": 20,
+ "compDate": "1964-01-01",
+ "totInsCap": 17,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100011",
+ "wasuRang": "五里镇杨集村二组",
+ "wainWasoType": null,
+ "lttd": 30.804494,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000792",
+ "chanCode": "420804001141",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一分干2号杨集岳飞城泵站",
+ "stfl": 0.29,
+ "adCode": "420822101205102",
+ "adCode_dictText": "杨集村二组",
+ "lgtd": 112.183123,
+ "actIrrA": 600,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "10+280",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一分干渠",
+ "desIrrA": 800,
+ "engManCode_dictText": "杨集管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 436,
+ "desHead": 25,
+ "compDate": "1964-01-01",
+ "totInsCap": 30,
+ "serCod": "正常",
+ "dsfl": 0.3,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100011",
+ "wasuRang": "五里镇杨集村七组",
+ "wainWasoType": null,
+ "lttd": 30.776081,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000807",
+ "chanCode": "420804001141",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一分干3号杨集7队泵站",
+ "stfl": 0.35,
+ "adCode": "420822101205107",
+ "adCode_dictText": "杨集村七组",
+ "lgtd": 112.184573,
+ "actIrrA": 400,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "13+400",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一分干渠",
+ "desIrrA": 500,
+ "engManCode_dictText": "杨集管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 437,
+ "desHead": 30,
+ "compDate": "1964-01-01",
+ "totInsCap": 40,
+ "serCod": "正常",
+ "dsfl": 0.4,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100011",
+ "wasuRang": "五里镇杨集村七组",
+ "wainWasoType": null,
+ "lttd": 30.774526,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220000811",
+ "chanCode": "420804001141",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一分干4号杨集7队泵站",
+ "stfl": 0.19,
+ "adCode": "420822101205107",
+ "adCode_dictText": "杨集村七组",
+ "lgtd": 112.184773,
+ "actIrrA": 300,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "14+050",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一分干渠",
+ "desIrrA": 350,
+ "engManCode_dictText": "杨集管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 438,
+ "desHead": 30,
+ "compDate": "1964-01-01",
+ "totInsCap": 30,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 105.715,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2008-01-01",
+ "engManCode": "ENG100010",
+ "wasuRang": "兴隆街办龙王三、八组",
+ "wainWasoType": null,
+ "lttd": 30.902752,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": null,
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040000824",
+ "chanCode": "420804001143",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "二分干1号龙王8队泵站",
+ "stfl": 0.2,
+ "adCode": "420804003202000",
+ "adCode_dictText": "龙王村",
+ "lgtd": 112.203857,
+ "actIrrA": 260,
+ "updserInvst": 10,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "0+420",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠二分干渠",
+ "desIrrA": 400,
+ "engManCode_dictText": "斗笠管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 439,
+ "desHead": 8,
+ "compDate": "2008-01-01",
+ "totInsCap": 15,
+ "serCod": "良好",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2014-01-01",
+ "engManCode": "ENG100010",
+ "wasuRang": "麻城镇斗笠村",
+ "wainWasoType": null,
+ "lttd": 30.926887,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "新建",
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040000839",
+ "chanCode": "420804001143",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "二分干2号斗笠泵站",
+ "stfl": 0.1,
+ "adCode": "420804101209000",
+ "adCode_dictText": "斗立村",
+ "lgtd": 112.246118,
+ "actIrrA": 100,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "9+600",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠二分干渠",
+ "desIrrA": 100,
+ "engManCode_dictText": "斗笠管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 440,
+ "desHead": 8,
+ "compDate": "2014-01-01",
+ "totInsCap": 11,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "wasuRang": "麻城镇板庙村三、四组",
+ "wainWasoType": null,
+ "lttd": 30.833201,
+ "updserRsn": null,
+ "updDate": "2023-06-14",
+ "pustCode": "HP0104208040000949",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一支干1号朱庙10队泵站",
+ "stfl": 0.1,
+ "adCode": "420804101215000",
+ "adCode_dictText": "板庙村",
+ "lgtd": 112.292751,
+ "actIrrA": 300,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "2+800",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干渠",
+ "desIrrA": 400,
+ "engManCode_dictText": "帅店管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 441,
+ "desHead": 8,
+ "compDate": "1964-01-01",
+ "totInsCap": 18.5,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "wasuRang": "麻城镇板庙村",
+ "wainWasoType": null,
+ "lttd": 30.85119,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208040001945",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一支干2号板庙5队泵站",
+ "stfl": 0.1,
+ "adCode": "420804101215000",
+ "adCode_dictText": "板庙村",
+ "lgtd": 112.29746,
+ "actIrrA": 400,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "4+900",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干渠",
+ "desIrrA": 450,
+ "engManCode_dictText": "帅店管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 442,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "wasuRang": "麻城镇板庙村",
+ "wainWasoType": null,
+ "lttd": 30.853204,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP010420804000195X",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一支干3号板庙水能泵站",
+ "stfl": 0.5,
+ "adCode": "420804101215000",
+ "adCode_dictText": "板庙村",
+ "lgtd": 112.297194,
+ "actIrrA": 1100,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "5+380",
+ "engScal": null,
+ "pumpSetNum": 2,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干渠",
+ "desIrrA": 1200,
+ "engManCode_dictText": "帅店管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 443,
+ "desHead": 12,
+ "compDate": null,
+ "totInsCap": null,
+ "serCod": null,
+ "dsfl": 0.5,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "wasuRang": "麻城镇板庙村",
+ "wainWasoType": null,
+ "lttd": 30.864829,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208040001964",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一支干4号板庙2队泵站",
+ "stfl": 0.1,
+ "adCode": "420804101215000",
+ "adCode_dictText": "板庙村",
+ "lgtd": 112.308891,
+ "actIrrA": 299,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "7+800",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干渠",
+ "desIrrA": 350,
+ "engManCode_dictText": "帅店管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 444,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 11,
+ "serCod": null,
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "wasuRang": "麻城镇双庙村",
+ "wainWasoType": null,
+ "lttd": 30.878569,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220001306",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一支干5号双庙泵站",
+ "stfl": 0.1,
+ "adCode": "420822111203000",
+ "adCode_dictText": "双庙村",
+ "lgtd": 112.320502,
+ "actIrrA": 199,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "11+355",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干渠",
+ "desIrrA": 250,
+ "engManCode_dictText": "帅店管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 445,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 11,
+ "serCod": null,
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "wasuRang": "麻城镇彭堰村",
+ "wainWasoType": null,
+ "lttd": 30.880428,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220001310",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一支干6号彭堰泵站",
+ "stfl": 0.1,
+ "adCode": "420822111202000",
+ "adCode_dictText": "彭堰村",
+ "lgtd": 112.33564,
+ "actIrrA": 200,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "13+870",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干渠",
+ "desIrrA": 250,
+ "engManCode_dictText": "帅店管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 446,
+ "desHead": 8,
+ "compDate": null,
+ "totInsCap": 22,
+ "serCod": null,
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "wasuRang": "沈集镇帅店村",
+ "wainWasoType": null,
+ "lttd": 30.883567,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208220001325",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "一支干7号帅店社区后泵站",
+ "stfl": 0.1,
+ "adCode": "420822111204000",
+ "adCode_dictText": "帅店村",
+ "lgtd": 112.340569,
+ "actIrrA": 49,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": "16+000",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干渠",
+ "desIrrA": 50,
+ "engManCode_dictText": "帅店管理段",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 447,
+ "desHead": 3,
+ "compDate": null,
+ "totInsCap": 11,
+ "serCod": null,
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2023-06-14"
+ }
+]
+const page8 =[
+ {
+ "note": null,
+ "inEle": 5,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "石牌镇洪山观四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810000984",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "洪山观4组泵站",
+ "stfl": 0.15,
+ "adCode": "420881108250104",
+ "adCode_dictText": "洪山观村四组",
+ "lgtd": null,
+ "actIrrA": 200,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 200,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 463,
+ "desHead": 25,
+ "compDate": "2004-01-01",
+ "totInsCap": 25,
+ "serCod": "正常",
+ "dsfl": 0.15,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 5,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "石牌镇洪山观五组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810000999",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "洪山观5组泵站",
+ "stfl": 0.35,
+ "adCode": "420881108250105",
+ "adCode_dictText": "洪山观村五组",
+ "lgtd": null,
+ "actIrrA": 400,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 3,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 400,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 464,
+ "desHead": 20,
+ "compDate": "2004-01-01",
+ "totInsCap": 60,
+ "serCod": "正常",
+ "dsfl": 0.35,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "石牌镇瓦瓷村八组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810001005",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "雷湖泵站",
+ "stfl": 0.3,
+ "adCode": "420881108245108",
+ "adCode_dictText": "瓦瓷村八组",
+ "lgtd": null,
+ "actIrrA": 300,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 300,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 465,
+ "desHead": 40,
+ "compDate": "1976-01-01",
+ "totInsCap": 155,
+ "serCod": "正常",
+ "dsfl": 0.5,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "石牌镇瓦瓷村五组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP010420881000101X",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "乌湖泵站",
+ "stfl": 0.4,
+ "adCode": "420881108245105",
+ "adCode_dictText": "瓦瓷村五组",
+ "lgtd": null,
+ "actIrrA": 400,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 400,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 466,
+ "desHead": 40,
+ "compDate": "1978-01-01",
+ "totInsCap": 100,
+ "serCod": "正常",
+ "dsfl": 0.5,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 2.5,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "石牌镇肖店村三组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810001024",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "阳岗泵站",
+ "stfl": 0.3,
+ "adCode": "420881108249103",
+ "adCode_dictText": "肖店村三组",
+ "lgtd": null,
+ "actIrrA": 300,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 300,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 467,
+ "desHead": 10,
+ "compDate": "2009-01-01",
+ "totInsCap": 30,
+ "serCod": "正常",
+ "dsfl": 0.3,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 2,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "石牌镇肖店村四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810001039",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "行政光泵站",
+ "stfl": 0.2,
+ "adCode": "420881108249104",
+ "adCode_dictText": "肖店村四组",
+ "lgtd": null,
+ "actIrrA": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": null,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 468,
+ "desHead": 6,
+ "compDate": "2009-01-01",
+ "totInsCap": 20,
+ "serCod": "损坏",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 4,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "八姓庙村四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810001043",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "八姓庙村4组泵站",
+ "stfl": 0.3,
+ "adCode": "420881108251104",
+ "adCode_dictText": "八姓庙村四组",
+ "lgtd": null,
+ "actIrrA": 200,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 200,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 469,
+ "desHead": 5,
+ "compDate": "2011-01-01",
+ "totInsCap": 22,
+ "serCod": "正常",
+ "dsfl": 0.4,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 3,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "八姓庙村四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810001058",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "八姓庙村4组泵站",
+ "stfl": 0.1,
+ "adCode": "420881108251104",
+ "adCode_dictText": "八姓庙村四组",
+ "lgtd": null,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 50,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 470,
+ "desHead": 30,
+ "compDate": "2011-01-01",
+ "totInsCap": 37,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 3,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "八姓庙村三组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810001062",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "八姓庙村3组泵站",
+ "stfl": 0.1,
+ "adCode": "420881108251103",
+ "adCode_dictText": "八姓庙村三组",
+ "lgtd": null,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 50,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 471,
+ "desHead": 28,
+ "compDate": "2011-01-01",
+ "totInsCap": 185,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 4,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "八姓庙村四组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810001077",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "八姓庙村4组泵站",
+ "stfl": 0.1,
+ "adCode": "420881108251104",
+ "adCode_dictText": "八姓庙村四组",
+ "lgtd": null,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 50,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 472,
+ "desHead": 20,
+ "compDate": "2011-01-01",
+ "totInsCap": 22,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 4,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "八姓庙村五组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810001081",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "八姓庙村5组泵站",
+ "stfl": 0.2,
+ "adCode": "420881108251105",
+ "adCode_dictText": "八姓庙村五组",
+ "lgtd": null,
+ "actIrrA": 100,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 100,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 473,
+ "desHead": 5,
+ "compDate": "2011-01-01",
+ "totInsCap": 11,
+ "serCod": "正常",
+ "dsfl": 0.2,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 4,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "wasuRang": "八姓庙村五组",
+ "wainWasoType": null,
+ "lttd": null,
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208810001096",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "八姓庙村5组泵站",
+ "stfl": 0.1,
+ "adCode": "420881108251105",
+ "adCode_dictText": "八姓庙村五组",
+ "lgtd": null,
+ "actIrrA": 50,
+ "updserInvst": null,
+ "engGrad": null,
+ "irrCode_dictText": "三干渠",
+ "engTask": null,
+ "bnch": null,
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "desIrrA": 50,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "pumpNum": null,
+ "irrCode": "D00000020",
+ "sort": 474,
+ "desHead": 5,
+ "compDate": "2011-01-01",
+ "totInsCap": 11,
+ "serCod": "正常",
+ "dsfl": 0.1,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": 99.336,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": "2013-01-01",
+ "engManCode": "ENG100031",
+ "wasuRang": "长兴村二组",
+ "wainWasoType": null,
+ "lttd": 31.093388,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": null,
+ "updDate": "2023-10-30",
+ "pustCode": "HP0104208020001266",
+ "chanCode": "420802001163",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "长兴村2组",
+ "stfl": 0.08,
+ "adCode": "420802105000000",
+ "adCode_dictText": "牌楼镇",
+ "lgtd": 112.274443,
+ "actIrrA": 140,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "四干渠",
+ "engTask": null,
+ "bnch": "11+246",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "四干渠东干渠",
+ "desIrrA": 150,
+ "engManCode_dictText": "安栈口管理段",
+ "pumpNum": null,
+ "irrCode": "D00000310",
+ "sort": 501,
+ "desHead": 6.5,
+ "compDate": "1969-01-01",
+ "totInsCap": 30,
+ "serCod": "正常",
+ "dsfl": 0.08,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": "只有村没有镇",
+ "inEle": 101.815,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": "ENG100031",
+ "wasuRang": "子陵村十四组",
+ "wainWasoType": null,
+ "lttd": 31.101158,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": null,
+ "updDate": "2023-10-30",
+ "pustCode": "HP0104208020001251",
+ "chanCode": "420802001163",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "子陵村14组",
+ "stfl": 0.08,
+ "adCode": "420802101000000",
+ "adCode_dictText": "子陵铺镇",
+ "lgtd": 112.225365,
+ "actIrrA": 240,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "四干渠",
+ "engTask": null,
+ "bnch": "2+735",
+ "engScal": null,
+ "pumpSetNum": 1,
+ "insFlow": null,
+ "chanCode_dictText": "四干渠东干渠",
+ "desIrrA": 240,
+ "engManCode_dictText": "安栈口管理段",
+ "pumpNum": null,
+ "irrCode": "D00000310",
+ "sort": 502,
+ "desHead": 9.5,
+ "compDate": "2008-01-01",
+ "totInsCap": 35,
+ "serCod": "正常",
+ "dsfl": 0.08,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ },
+ {
+ "note": null,
+ "inEle": null,
+ "mainBuildGrad": null,
+ "pustType": null,
+ "updserDate": null,
+ "engManCode": null,
+ "wasuRang": "城山三-八组",
+ "wainWasoType": null,
+ "lttd": 31.078316,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": null,
+ "updDate": null,
+ "pustCode": "HP0104208020001270",
+ "chanCode": "420802001223",
+ "engStat": null,
+ "startRunDate": null,
+ "pustName": "城山泵站",
+ "stfl": 0.4,
+ "adCode": "420802105206108",
+ "adCode_dictText": "城山村八组",
+ "lgtd": 112.314916,
+ "actIrrA": 600,
+ "updserInvst": null,
+ "engGrad": "5",
+ "irrCode_dictText": "四干渠",
+ "engTask": null,
+ "bnch": "1+710",
+ "engScal": null,
+ "pumpSetNum": 2,
+ "insFlow": null,
+ "chanCode_dictText": "四干渠老一分干",
+ "desIrrA": 1200,
+ "pumpNum": null,
+ "irrCode": "D00000310",
+ "sort": 503,
+ "desHead": 45,
+ "compDate": null,
+ "totInsCap": 150,
+ "serCod": "正常",
+ "dsfl": 0.4,
+ "insPow": null,
+ "admDep": null,
+ "startDate": null,
+ "collDate": "2022-08-23"
+ }
+]
+
+export default class BzLayer extends BaseLayer {
+
+ static LayerName = 'BzLayer';
+
+ static SourceName = SourceName;
+
+ getStyle() {
+
+ const ret = clone(ShapeStyle);
+ this._setStyleVisibility(ret);
+ return ret;
+
+ }
+
+ getName() {
+ return BzLayer.LayerName;
+ }
+
+ getSubLayers() {
+ return [ShapeStyle.id];
+ }
+
+ async doRefreshLayer(mapCtrl) {
+ const ms = mapCtrl.getSource(SourceName);
+
+ let data =
+ // await PicStPromise.get();
+ [...page1,...page2,...page3,...page4,...page5,...page6,...page7,...page8].map((item)=>{
+ const obj = {...item}
+ obj.lgtd = item.lgtd + 2.9619
+ obj.lttd = item.lttd + 0.2002
+ return obj
+ })
+ ms.setData(parseGeoJSON(data));
+ return true;
+ }
+
+ getFeatureTip(record) {
+ return record.stnm;
+ }
+
+ featureClicked(properties, dispatch) {
+ dispatch.runtime.setFeaturePop({
+ type: InfoPopNames.PicStPop,
+ properties,
+ coordinates: [properties.lgtd, properties.lttd],
+ offsetPop: true,
+ });
+ }
+}
diff --git a/src/views/Home/MapCtrl/mapstyle/layermgr.js b/src/views/Home/MapCtrl/mapstyle/layermgr.js
index dac6a55..7a1c210 100644
--- a/src/views/Home/MapCtrl/mapstyle/layermgr.js
+++ b/src/views/Home/MapCtrl/mapstyle/layermgr.js
@@ -19,6 +19,17 @@ import YuwaiLayer from "./yuwailayer";
import PicStLayer from "./picstlayer";
import PumpLayer from "./tmp/pumplayer";
import BxSkLayer from "./tmp/bxsk";
+import BxjcLayer from "./bxjclayer"
+import SyjcLayer from "./syjclayer"
+import SljcLayer from "./sljclayer"
+import ByjcLayer from "./byjclayer"
+import ShuiZhaLayer from "./shuizhalayer"
+import BzLayer from "./bzlayer"
+import SbLayer from "./sblayer"
+import QdLayer from "./qdlayer"
+import ShuizhiLayer from "./shuizhilayer"
+import TrsqLayer from "./trsqlayer"
+
class LayerMgr {
@@ -35,6 +46,16 @@ class LayerMgr {
this.sublayerMap = {};
this.layers = [];
+ this.layers.push(new BxjcLayer());
+ this.layers.push(new SyjcLayer());
+ this.layers.push(new SljcLayer());
+ this.layers.push(new ByjcLayer());
+ this.layers.push(new ShuiZhaLayer());
+ this.layers.push(new BzLayer());
+ this.layers.push(new SbLayer());
+ this.layers.push(new QdLayer());
+ this.layers.push(new ShuizhiLayer());
+ this.layers.push(new TrsqLayer());
this.layers.push(new RealDrpLayer());
this.layers.push(new RealHDLayer());
this.layers.push(new RealSkLayer());
@@ -152,6 +173,16 @@ class LayerMgr {
this.layerMap.AdcdLayer.getStyle(0),
this.layerMap.FzdxLayer.getStyle(),
+ this.layerMap.BxjcLayer.getStyle(),
+ this.layerMap.SyjcLayer.getStyle(),
+ this.layerMap.SljcLayer.getStyle(),
+ this.layerMap.ByjcLayer.getStyle(),
+ this.layerMap.ShuiZhaLayer.getStyle(),
+ this.layerMap.BzLayer.getStyle(),
+ this.layerMap.SbLayer.getStyle(),
+ this.layerMap.QdLayer.getStyle(),
+ this.layerMap.ShuizhiLayer.getStyle(),
+ this.layerMap.TrsqLayer.getStyle(),
this.layerMap.RivlLayer.getStyle('rivlLabel'),
diff --git a/src/views/Home/MapCtrl/mapstyle/qdlayer.js b/src/views/Home/MapCtrl/mapstyle/qdlayer.js
new file mode 100644
index 0000000..b8c8c6f
--- /dev/null
+++ b/src/views/Home/MapCtrl/mapstyle/qdlayer.js
@@ -0,0 +1,1355 @@
+import clone from "clone";
+import { PicStPromise, TestPicStPromise } from "../../../../models/_/real";
+import { parseGeoJSON } from "../../../../utils/tools";
+import { InfoPopNames } from "../../InfoPops";
+import BaseLayer from "./baselayer";
+
+const SourceName = '渠道';
+
+const ShapeStyle = {
+ id: SourceName,
+ type: 'symbol',
+ source: SourceName,
+ layout: {
+ 'icon-allow-overlap': true,
+ 'text-allow-overlap': true,
+ 'icon-image': '渠道',
+ 'icon-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 0.4,
+ 14, 0.8,
+ ],
+
+ 'text-allow-overlap': true,
+ 'text-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 10,
+ 14, 14,
+ ],
+ 'text-font': ['Roboto Black'],
+ 'text-field': [
+ 'step',
+ ['zoom'],
+ '',
+ 12, ['get', 'stnm']
+ ],
+ 'text-anchor': 'top',
+ 'text-offset': [0, 1],
+
+ 'visibility': 'none',
+ },
+ paint: {
+ 'text-color': '#fff'
+ }
+};
+
+const page1 = [
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-10-01 21:00:00",
+ "comments": "水资源多孔闸门控制系统",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "4211221029",
+ "rz": 1.123,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 120057496
+ },
+ "lttd": 31.240848,
+ "sttp": "QQ",
+ "irrCode": "D00001300",
+ "sort": 6001,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 0,
+ "stcd": "4211221029",
+ "stnm": "口泉测流站",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 111.826413,
+ "irrCode_dictText": "水库枢纽",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-10-26 21:00:00",
+ "comments": "水资源多孔闸门控制系统",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 14416,
+ "formatAccq": null,
+ "stcd": "4211221030",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 159106928
+ },
+ "lttd": 31.249561,
+ "sttp": "QQ",
+ "irrCode": "D00001300",
+ "sort": 6002,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 0,
+ "stcd": "4211221030",
+ "stnm": "苍坪测流站",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 111.866217,
+ "irrCode_dictText": "水库枢纽",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-06-26 21:00:00",
+ "comments": "水资源多孔闸门控制系统",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "3.956",
+ "vol": 16128,
+ "formatAccq": null,
+ "stcd": "4208820100",
+ "rz": 2.339,
+ "tm": "2025-05-26 16:00",
+ "hq": 3.956,
+ "fr": null,
+ "chan": "1",
+ "accq": 377975936
+ },
+ "lttd": 30.959561,
+ "sttp": "QQ",
+ "irrCode": "D00000290",
+ "sort": 6030,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 110.042,
+ "stcd": "4208820100",
+ "stnm": "渠首时差法流量站",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.077549,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-05-01 21:00:00",
+ "comments": "水资源多孔闸门控制系统",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "4211223302",
+ "rz": 0,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "0",
+ "accq": null
+ },
+ "lttd": 30.946457,
+ "sttp": "QQ",
+ "irrCode": "D00000300",
+ "sort": 6031,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 0,
+ "stcd": "4211223302",
+ "stnm": "二干进口流量",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.07475,
+ "irrCode_dictText": "二干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2023-04-04 17:06:30",
+ "comments": "水资源多孔闸门控制系统,2023-04-25楚禹公司提供高程,2023-05-23楚禹重新调整了高程",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "4208820200",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 151531776
+ },
+ "lttd": 30.964597,
+ "sttp": "QQ",
+ "irrCode": "D00000020,D00000290",
+ "sort": 6032,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 108.487,
+ "stcd": "4208820200",
+ "stnm": "三干渠进口时差法",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.190279,
+ "irrCode_dictText": "三干渠,总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2023-03-14 21:00:00",
+ "comments": ",水资源多孔闸门控制系统,楚禹2023-04-21回复基础高程,2023-05-24楚禹提供新高程,2023-08-17防办要求改高程,原值108.420,2023-08-24得知掇刀段业主要求孙文凯改108.42,原值108.4",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "4.488",
+ "vol": 16384,
+ "formatAccq": null,
+ "stcd": "4202023102",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 4.488,
+ "fr": null,
+ "chan": "1",
+ "accq": 157973216
+ },
+ "lttd": 30.97052,
+ "sttp": "QQ",
+ "irrCode": "D00000310,D00000290",
+ "sort": 6033,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 108.42,
+ "stcd": "4202023102",
+ "stnm": "四干渠进口时差法",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.191741,
+ "irrCode_dictText": "四干渠,总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2023-04-28 18:00:19",
+ "comments": "水资源多孔闸门控制系统",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "4220230428",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 1852741
+ },
+ "lttd": 30.952737,
+ "sttp": "QQ",
+ "irrCode": "D00000290",
+ "sort": 6034,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 110.8,
+ "stcd": "4220230428",
+ "stnm": "总干一支渠时差法",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.086584,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2023-04-17 21:40:02",
+ "comments": "漳河遥测,于2023-04-17新建时差法流量站",
+ "src": "zhzj",
+ "chidCount": 2,
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "0000000036",
+ "rz": 0,
+ "tm": "2025-05-26 15:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 6709564
+ },
+ "lttd": 30.960069,
+ "sttp": "QQ",
+ "irrCode": "D00000290",
+ "sort": 6035,
+ "hasImg": true,
+ "stlc": "荆门市",
+ "dtmel": 0,
+ "stcd": "0000000036",
+ "stnm": "总干渠二支渠时差法",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.103121,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "moditime": "2022-05-01 21:00:00",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.006",
+ "vol": 29,
+ "formatAccq": null,
+ "stcd": "0007240081",
+ "rz": 0.137,
+ "tm": "2025-05-26 15:00",
+ "hq": 0.006,
+ "fr": null,
+ "chan": "1",
+ "accq": 6782715
+ },
+ "lttd": 0,
+ "sttp": "QQ",
+ "irrCode": "D00000290",
+ "sort": 6036,
+ "hasImg": false,
+ "dtmel": 110.51,
+ "stcd": "0007240081",
+ "stnm": "总干三分渠",
+ "lgtd": 0,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-05-01 21:00:00",
+ "comments": "漳河遥测",
+ "src": "zhzj",
+ "chidCount": 2,
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 75,
+ "formatAccq": null,
+ "stcd": "ZH201841",
+ "rz": null,
+ "tm": "2025-03-09 20:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 8549582
+ },
+ "lttd": 30.96556,
+ "sttp": "QQ",
+ "irrCode": "D00000290",
+ "sort": 6037,
+ "hasImg": true,
+ "stlc": "荆门市",
+ "usfl": "1",
+ "dtmel": 0,
+ "stcd": "ZH201841",
+ "stnm": "双井六组管道测流站",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.129,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-05-01 21:00:00",
+ "comments": "漳河遥测",
+ "src": "zhzj",
+ "chidCount": 1,
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "ZH201842",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 2168227
+ },
+ "lttd": 30.96576,
+ "sttp": "QQ",
+ "irrCode": "D00000290",
+ "sort": 6038,
+ "hasImg": true,
+ "stlc": "荆门市",
+ "usfl": "1",
+ "dtmel": 0,
+ "stcd": "ZH201842",
+ "stnm": "双井七组管道测流站",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.1317,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-05-01 21:00:00",
+ "comments": "漳河遥测",
+ "src": "zhzj",
+ "chidCount": 2,
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "1.687",
+ "vol": 1,
+ "formatAccq": null,
+ "stcd": "ZH201839",
+ "rz": null,
+ "tm": "2025-05-22 10:00",
+ "hq": 1.687,
+ "fr": null,
+ "chan": "1",
+ "accq": 2452285
+ },
+ "lttd": 30.966457,
+ "sttp": "QQ",
+ "irrCode": "D00000290",
+ "sort": 6039,
+ "hasImg": true,
+ "stlc": "荆门市",
+ "usfl": "1",
+ "dtmel": 0,
+ "stcd": "ZH201839",
+ "stnm": "车桥管理段管道测流站",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.153327,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2023-05-05 09:49:53",
+ "comments": "水资源多孔闸门控制系统",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "0020230430",
+ "rz": 0,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 0
+ },
+ "lttd": 30.965858,
+ "sttp": "QQ",
+ "irrCode": "D00000290",
+ "sort": 6040,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 0,
+ "stcd": "0020230430",
+ "stnm": "乌盆冲底涵时差法",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.138655,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2023-04-26 17:51:37",
+ "comments": "水资源多孔闸门控制系统",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.198",
+ "vol": 1230,
+ "formatAccq": null,
+ "stcd": "0020230426",
+ "rz": 1.685,
+ "tm": "2025-05-26 16:00",
+ "hq": 0.198,
+ "fr": null,
+ "chan": "1",
+ "accq": 913530
+ },
+ "lttd": 30.97058,
+ "sttp": "QQ",
+ "irrCode": "D00000290",
+ "sort": 6041,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "stcd": "0020230426",
+ "stnm": "杨家冲底涵时差法",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.148252,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2023-05-15 15:13:36",
+ "comments": "水资源多孔闸门控制系统",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.003",
+ "vol": 18,
+ "formatAccq": null,
+ "stcd": "0020230509",
+ "rz": 0.081,
+ "tm": "2025-05-26 16:00",
+ "hq": 0.003,
+ "fr": null,
+ "chan": "1",
+ "accq": 104020
+ },
+ "lttd": 30.961038,
+ "sttp": "QQ",
+ "irrCode": "D00000290",
+ "sort": 6042,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 0,
+ "stcd": "0020230509",
+ "stnm": "总干和平一组测流站",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.107041,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域"
+ }
+]
+const page2 = [
+ {
+ "moditime": "2024-05-17 07:04:39",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "7724051501",
+ "rz": 0.471,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 50022556
+ },
+ "lttd": 30.84823,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "7724051501",
+ "stnm": "五岭包进口时差法",
+ "lgtd": 112.244086,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-18 22:35:37",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.004",
+ "vol": 24,
+ "formatAccq": null,
+ "stcd": "2024052101",
+ "rz": 0.05,
+ "tm": "2025-05-26 16:00",
+ "hq": 0.004,
+ "fr": null,
+ "chan": "1",
+ "accq": 640828
+ },
+ "lttd": 30.843365,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024052101",
+ "stnm": "三干渠37#闸箱涵",
+ "lgtd": 112.231308,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-18 22:38:04",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024051301",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 172942
+ },
+ "lttd": 30.837432,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024051301",
+ "stnm": "三干渠43#闸管道",
+ "lgtd": 112.241321,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-18 22:40:15",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024051701",
+ "rz": 0,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 10822
+ },
+ "lttd": 30.843648,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024051701",
+ "stnm": "三干渠45#闸管道",
+ "lgtd": 112.240618,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-18 22:45:18",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024051702",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 103186
+ },
+ "lttd": 30.848709,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024051702",
+ "stnm": "三干渠46#闸管道",
+ "lgtd": 112.243456,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-18 22:49:50",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024051703",
+ "rz": 0.053,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 30458
+ },
+ "lttd": 30.860144,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024051703",
+ "stnm": "三干渠49#闸箱涵",
+ "lgtd": 112.251748,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-20 14:47:14",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024052001",
+ "rz": 0.1,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 27239
+ },
+ "lttd": 30.856526,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024052001",
+ "stnm": "三干渠51#箱涵测流",
+ "lgtd": 112.253808,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-20 17:07:38",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024011001",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 33677
+ },
+ "lttd": 30.851024,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024011001",
+ "stnm": "三干渠47#箱涵",
+ "lgtd": 112.244785,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-21 16:59:21",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024052107",
+ "rz": 0.253,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 179683
+ },
+ "lttd": 30.869017,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024052107",
+ "stnm": "三干渠50号箱涵流量站",
+ "lgtd": 112.257414,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-21 20:43:02",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024052005",
+ "rz": 0,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 593309
+ },
+ "lttd": 30.841479,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024052005",
+ "stnm": "三干渠42#闸",
+ "lgtd": 112.240741,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-21 20:45:12",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024052002",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 75167
+ },
+ "lttd": 33.333,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024052002",
+ "stnm": "三干渠52#闸",
+ "lgtd": 111.111,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-21 20:54:48",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024051201",
+ "rz": 0.02,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 476698
+ },
+ "lttd": 30.843365,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024051201",
+ "stnm": "三干渠38#闸",
+ "lgtd": 112.231308,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-22 15:38:42",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024252201",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 738753
+ },
+ "lttd": 29.875855,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024252201",
+ "stnm": "三干渠30#智能明渠",
+ "lgtd": 112.220891,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-24 14:26:28",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 2,
+ "formatAccq": null,
+ "stcd": "2024051302",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 14424
+ },
+ "lttd": 30.874159,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024051302",
+ "stnm": "三干渠44#闸管道",
+ "lgtd": 112.247115,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-05-29 15:02:51",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024042001",
+ "rz": 1,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 9050007
+ },
+ "lttd": 30.973932,
+ "sttp": "QQ",
+ "irrCode": "D00000310",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024042001",
+ "stnm": "四干渠杨树港闸前箱涵",
+ "lgtd": 112.192707,
+ "irrCode_dictText": "四干渠"
+ }
+]
+const page3 = [
+ {
+ "moditime": "2025-04-28 15:42:00",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2025042804",
+ "rz": null,
+ "tm": "2025-05-07 18:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 30.803111,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "usfl": "1",
+ "stcd": "2025042804",
+ "stnm": "三干渠干渠75#涵闸",
+ "lgtd": 112.292755,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2025-04-28 15:43:12",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2025042805",
+ "rz": null,
+ "tm": "2025-05-07 18:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 30.813708,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "usfl": "1",
+ "stcd": "2025042805",
+ "stnm": "三干渠干渠73#涵闸",
+ "lgtd": 112.288246,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2025-04-28 15:44:28",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2025042806",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 30.813708,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "usfl": "1",
+ "stcd": "2025042806",
+ "stnm": "三干渠干渠68#涵闸",
+ "lgtd": 112.288246,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2025-04-28 15:46:33",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2025042807",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 30.813708,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "usfl": "1",
+ "stcd": "2025042807",
+ "stnm": "三干渠三分干67#涵闸",
+ "lgtd": 112.288246,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2025-04-28 15:49:33",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2025042808",
+ "rz": null,
+ "tm": "2025-05-07 18:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 30.813708,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "usfl": "1",
+ "stcd": "2025042808",
+ "stnm": "三干渠三分干61#涵闸",
+ "lgtd": 112.288246,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2025-04-28 15:51:20",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2025042809",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 30.840615,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "usfl": "1",
+ "stcd": "2025042809",
+ "stnm": "三干渠干渠63#涵闸",
+ "lgtd": 112.274622,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2025-04-28 15:53:02",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2025042810",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 30.843608,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "usfl": "1",
+ "stcd": "2025042810",
+ "stnm": "三干渠干渠65#涵闸",
+ "lgtd": 112.278118,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-03-27 14:07:13",
+ "src": "sanganqu",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "lev9SAFR5a4",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 0,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "lev9SAFR5a4",
+ "stnm": "三干渠三分干61#涵闸",
+ "lgtd": 0,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-03-27 14:07:13",
+ "stcd": "kBPV2eJxb3m",
+ "src": "sanganqu",
+ "stnm": "三干渠干渠65#涵闸",
+ "esstym": "",
+ "lgtd": 0,
+ "lttd": 0,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-03-27 14:07:13",
+ "stcd": "BRrsXb6kYM5",
+ "src": "sanganqu",
+ "stnm": "三干渠三分干67#涵闸",
+ "esstym": "",
+ "lgtd": 0,
+ "lttd": 0,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-03-27 14:07:13",
+ "stcd": "gd6dRNv6i5N",
+ "src": "sanganqu",
+ "stnm": "三干渠干渠68#涵闸",
+ "esstym": "",
+ "lgtd": 0,
+ "lttd": 0,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-03-27 14:07:13",
+ "src": "sanganqu",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "t4jR5EFonLD",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 0,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "t4jR5EFonLD",
+ "stnm": "三干渠干渠70#涵闸",
+ "lgtd": 0,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-03-27 14:07:13",
+ "src": "sanganqu",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "PbwX1mjbUGS",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 0,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "PbwX1mjbUGS",
+ "stnm": "三干渠干渠73#涵闸",
+ "lgtd": 0,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-03-27 14:07:13",
+ "src": "sanganqu",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "xgd6V3doA52",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": null
+ },
+ "lttd": 0,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "xgd6V3doA52",
+ "stnm": "三干渠干渠75#涵闸",
+ "lgtd": 0,
+ "irrCode_dictText": "三干渠"
+ },
+ {
+ "moditime": "2024-03-27 14:07:13",
+ "stcd": "aJycOKyng92",
+ "src": "sanganqu",
+ "stnm": "三干渠干渠100#涵闸",
+ "esstym": "",
+ "lgtd": 0,
+ "lttd": 0,
+ "sttp": "QQ",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "hasImg": false,
+ "irrCode_dictText": "三干渠"
+ }
+]
+
+
+export default class QdLayer extends BaseLayer {
+
+ static LayerName = 'QdLayer';
+
+ static SourceName = SourceName;
+
+ getStyle() {
+
+ const ret = clone(ShapeStyle);
+ this._setStyleVisibility(ret);
+ return ret;
+
+ }
+
+ getName() {
+ return QdLayer.LayerName;
+ }
+
+ getSubLayers() {
+ return [ShapeStyle.id];
+ }
+
+ async doRefreshLayer(mapCtrl) {
+ const ms = mapCtrl.getSource(SourceName);
+
+ let data =
+ // await PicStPromise.get();
+ [...page1, ...page2, ...page3].map((item)=>{
+ const obj = {...item}
+ obj.lgtd = item.lgtd + 2.9619
+ obj.lttd = item.lttd + 0.2002
+ return obj
+ })
+ ms.setData(parseGeoJSON(data));
+ return true;
+ }
+
+ getFeatureTip(record) {
+ return record.stnm;
+ }
+
+ featureClicked(properties, dispatch) {
+ dispatch.runtime.setFeaturePop({
+ type: InfoPopNames.PicStPop,
+ properties,
+ coordinates: [properties.lgtd, properties.lttd],
+ offsetPop: true,
+ });
+ }
+}
diff --git a/src/views/Home/MapCtrl/mapstyle/sblayer.js b/src/views/Home/MapCtrl/mapstyle/sblayer.js
new file mode 100644
index 0000000..6344a6a
--- /dev/null
+++ b/src/views/Home/MapCtrl/mapstyle/sblayer.js
@@ -0,0 +1,783 @@
+import clone from "clone";
+import { PicStPromise, TestPicStPromise } from "../../../../models/_/real";
+import { parseGeoJSON } from "../../../../utils/tools";
+import { InfoPopNames } from "../../InfoPops";
+import BaseLayer from "./baselayer";
+
+const SourceName = '水表';
+
+const ShapeStyle = {
+ id: SourceName,
+ type: 'symbol',
+ source: SourceName,
+ layout: {
+ 'icon-allow-overlap': true,
+ 'text-allow-overlap': true,
+ 'icon-image': '水表',
+ 'icon-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 0.4,
+ 14, 0.8,
+ ],
+
+ 'text-allow-overlap': true,
+ 'text-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 10,
+ 14, 14,
+ ],
+ 'text-font': ['Roboto Black'],
+ 'text-field': [
+ 'step',
+ ['zoom'],
+ '',
+ 12, ['get', 'stnm']
+ ],
+ 'text-anchor': 'top',
+ 'text-offset': [0, 1],
+
+ 'visibility': 'none',
+ },
+ paint: {
+ 'text-color': '#fff'
+ }
+};
+
+const page1 = [
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-12-01 19:30:00",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.298",
+ "vol": 1072,
+ "formatAccq": null,
+ "stcd": "42080204",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0.298,
+ "fr": 0,
+ "chan": "1",
+ "accq": 87999472
+ },
+ "lttd": 31.021727,
+ "sttp": "PQ",
+ "irrCode": "D00001300",
+ "sort": 3001,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "flowType_dictText": "工业",
+ "stcd": "42080204",
+ "stnm": "荆门热电厂",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.099215,
+ "irrCode_dictText": "水库枢纽",
+ "bsnm": "漳河流域",
+ "flowType": "3"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-12-01 19:30:00",
+ "comments": "漳河水库供水",
+ "src": "zhzj",
+ "esstym": " ",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.217",
+ "vol": 782,
+ "formatAccq": null,
+ "stcd": "42000003",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0.217,
+ "fr": 0,
+ "chan": "1",
+ "accq": 33193457
+ },
+ "lttd": 30.953887,
+ "sttp": "PQ",
+ "irrCode": "D00000020",
+ "sort": 3002,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "flowType_dictText": "工业",
+ "usfl": "1",
+ "stcd": "42000003",
+ "stnm": "格林美",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.190551,
+ "irrCode_dictText": "三干渠",
+ "bsnm": "漳河流域",
+ "flowType": "3"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-12-01 19:30:00",
+ "comments": "漳河水库供水",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.009",
+ "vol": 31,
+ "formatAccq": null,
+ "stcd": "42000005",
+ "rz": null,
+ "tm": "2025-05-26 06:00",
+ "hq": 0.009,
+ "fr": null,
+ "chan": "1",
+ "accq": 1541415
+ },
+ "lttd": 30.93926,
+ "sttp": "PQ",
+ "irrCode": "D00000020",
+ "sort": 3003,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "flowType_dictText": "工业",
+ "stcd": "42000005",
+ "stnm": "福耀玻璃",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.191703,
+ "irrCode_dictText": "三干渠",
+ "bsnm": "漳河流域",
+ "flowType": "3"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-12-01 19:30:00",
+ "comments": "漳河水库供水",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.065",
+ "vol": 235,
+ "formatAccq": null,
+ "stcd": "42000011",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0.065,
+ "fr": null,
+ "chan": "1",
+ "accq": 8643445
+ },
+ "lttd": 30.923904,
+ "sttp": "PQ",
+ "irrCode": "D00000020",
+ "sort": 3004,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "flowType_dictText": "工业",
+ "stcd": "42000011",
+ "stnm": "绿动集团取水点",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.19131,
+ "irrCode_dictText": "三干渠",
+ "bsnm": "漳河流域",
+ "flowType": "3"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-12-01 19:30:00",
+ "comments": "漳河水库供水",
+ "src": "zhzj",
+ "chidCount": 1,
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.482",
+ "vol": 1734,
+ "formatAccq": null,
+ "stcd": "42080202",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0.482,
+ "fr": 0,
+ "chan": "1",
+ "accq": 120347052
+ },
+ "lttd": 31.020675,
+ "sttp": "PQ",
+ "irrCode": "D00001300",
+ "sort": 3005,
+ "hasImg": true,
+ "stlc": "荆门市",
+ "flowType_dictText": "工业",
+ "usfl": "1",
+ "stcd": "42080202",
+ "stnm": "荆门石化总厂",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.096162,
+ "irrCode_dictText": "水库枢纽",
+ "bsnm": "漳河流域",
+ "flowType": "3"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-12-01 19:30:00",
+ "comments": "漳河水库供水",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.264",
+ "vol": 947,
+ "formatAccq": null,
+ "stcd": "42000010",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0.264,
+ "fr": 0,
+ "chan": "1",
+ "accq": 11497137
+ },
+ "lttd": 31.074535,
+ "sttp": "PQ",
+ "irrCode": "D00000310",
+ "sort": 3006,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "flowType_dictText": "工业",
+ "usfl": "1",
+ "stcd": "42000010",
+ "stnm": "华能热电",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.199915,
+ "irrCode_dictText": "四干渠",
+ "bsnm": "漳河流域",
+ "flowType": "3"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-12-01 19:30:00",
+ "comments": "漳河水库供水,2024年1月12号变更rtu编码 4208020800",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.370",
+ "vol": 1332,
+ "formatAccq": null,
+ "stcd": "42080208",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0.37,
+ "fr": 0,
+ "chan": "1",
+ "accq": 45187209
+ },
+ "lttd": 31.033908,
+ "sttp": "PQ",
+ "irrCode": "D00000310",
+ "sort": 3007,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "flowType_dictText": "生活",
+ "stcd": "42080208",
+ "stnm": "荆门一水厂",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.189707,
+ "irrCode_dictText": "四干渠",
+ "bsnm": "漳河流域",
+ "flowType": "1"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-12-01 19:30:00",
+ "comments": "漳河水库供水",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.048",
+ "vol": 1564,
+ "formatAccq": null,
+ "stcd": "42080201",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0.048,
+ "fr": null,
+ "chan": "1",
+ "accq": 59409048
+ },
+ "lttd": 31.014198,
+ "sttp": "PQ",
+ "irrCode": "D00001300",
+ "sort": 3008,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "flowType_dictText": "生活",
+ "stcd": "42080201",
+ "stnm": "荆门二水厂",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.059217,
+ "irrCode_dictText": "水库枢纽",
+ "bsnm": "漳河流域",
+ "flowType": "1"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-12-01 19:30:00",
+ "comments": "漳河水库供水",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "42080401",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0,
+ "fr": 0,
+ "chan": "1",
+ "accq": 41103262
+ },
+ "lttd": 30.972017,
+ "sttp": "PQ",
+ "irrCode": "D00000290",
+ "sort": 3009,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "flowType_dictText": "生活",
+ "stcd": "42080401",
+ "stnm": "荆门三水厂",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.184665,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域",
+ "flowType": "1"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-12-01 19:30:00",
+ "comments": "漳河水库供水",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.090",
+ "vol": 3213,
+ "formatAccq": null,
+ "stcd": "42080207",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0.09,
+ "fr": null,
+ "chan": "1",
+ "accq": 262192755
+ },
+ "lttd": 31.013848,
+ "sttp": "PQ",
+ "irrCode": "D00001300",
+ "sort": 3010,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "flowType_dictText": "生活",
+ "stcd": "42080207",
+ "stnm": "三水厂备用水源",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.059227,
+ "irrCode_dictText": "水库枢纽",
+ "bsnm": "漳河流域",
+ "flowType": "1"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2023-04-14 10:25:52",
+ "comments": "水资源多孔闸门控制系统",
+ "src": "zhzj",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 18,
+ "formatAccq": null,
+ "stcd": "0020230414",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0,
+ "fr": 0,
+ "chan": "1",
+ "accq": 372776
+ },
+ "lttd": 30.971243,
+ "sttp": "PQ",
+ "irrCode": "D00000290",
+ "sort": 3012,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "flowType_dictText": "农业",
+ "stcd": "0020230414",
+ "stnm": "杨家冲秀江南取水点",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.154102,
+ "irrCode_dictText": "总干渠",
+ "bsnm": "漳河流域",
+ "flowType": "4"
+ },
+ {
+ "comments": "大表系统",
+ "src": "other",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.439",
+ "vol": 1579,
+ "formatAccq": null,
+ "stcd": "42999999",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0.439,
+ "fr": null,
+ "chan": "1",
+ "accq": 31584428
+ },
+ "lttd": 31.006966,
+ "sttp": "PQ",
+ "irrCode": "D00001300",
+ "sort": 3013,
+ "hasImg": false,
+ "stlc": "宜昌市当阳市育溪镇",
+ "flowType_dictText": "工业生活",
+ "stcd": "42999999",
+ "stnm": "引漳入城站",
+ "lgtd": 111.982362,
+ "irrCode_dictText": "水库枢纽",
+ "flowType": "5"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-05-31 21:00:00",
+ "comments": "漳河遥测",
+ "src": "zhzj",
+ "chidCount": 2,
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "3.208",
+ "vol": 10373,
+ "formatAccq": null,
+ "stcd": "0000000185",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 3.208,
+ "fr": 0,
+ "chan": "1",
+ "accq": 164381452
+ },
+ "lttd": 31.0656,
+ "sttp": "PQ",
+ "irrCode": "D00001300",
+ "sort": 3014,
+ "hasImg": true,
+ "stlc": "荆门市",
+ "flowType_dictText": "发电",
+ "stcd": "0000000185",
+ "stnm": "电站八百车间",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 111.931,
+ "irrCode_dictText": "水库枢纽",
+ "bsnm": "漳河流域",
+ "flowType": "2"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-05-31 21:00:00",
+ "comments": "漳河遥测",
+ "src": "zhzj",
+ "chidCount": 1,
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "0000000186",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0,
+ "fr": 0,
+ "chan": "1",
+ "accq": 82137899
+ },
+ "lttd": 31.0617,
+ "sttp": "PQ",
+ "irrCode": "D00001300",
+ "sort": 3015,
+ "hasImg": true,
+ "stlc": "荆门市",
+ "flowType_dictText": "发电",
+ "stcd": "0000000186",
+ "stnm": "电站三千车间",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 111.9308,
+ "irrCode_dictText": "水库枢纽",
+ "bsnm": "漳河流域",
+ "flowType": "2"
+ },
+ {
+ "moditime": "2023-09-07 09:17:13",
+ "comments": "16+500",
+ "src": "zhzj",
+ "esstym": "202309",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2023090001",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 36120
+ },
+ "lttd": 30.973775,
+ "sttp": "PQ",
+ "irrCode": "D00000290",
+ "sort": 3016,
+ "hasImg": false,
+ "stcd": "2023090001",
+ "stnm": "汉通闸流量站",
+ "lgtd": 112.17597,
+ "irrCode_dictText": "总干渠"
+ }
+]
+const page2 = [
+ {
+ "moditime": "2023-11-17 09:38:47",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.004",
+ "vol": 15,
+ "formatAccq": null,
+ "stcd": "2023111501",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0.004,
+ "fr": 0,
+ "chan": "1",
+ "accq": 61933
+ },
+ "lttd": 30.972626,
+ "sttp": "PQ",
+ "irrCode": "D00000290",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2023111501",
+ "stnm": "可可取水点",
+ "lgtd": 112.126579,
+ "irrCode_dictText": "总干渠"
+ },
+ {
+ "moditime": "2024-03-19 15:36:57",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024031901",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 91497
+ },
+ "lttd": 31.027036,
+ "sttp": "PQ",
+ "irrCode": "D00000310",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024031901",
+ "stnm": "团结水库取水口",
+ "lgtd": 112.187742,
+ "irrCode_dictText": "四干渠"
+ },
+ {
+ "moditime": "2024-03-19 16:24:14",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024031902",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 14580
+ },
+ "lttd": 31.031071,
+ "sttp": "PQ",
+ "irrCode": "D00000310",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024031902",
+ "stnm": "文明湖取水口",
+ "lgtd": 112.189671,
+ "irrCode_dictText": "四干渠"
+ },
+ {
+ "moditime": "2024-04-26 14:17:34",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.016",
+ "vol": 17,
+ "formatAccq": null,
+ "stcd": "7724042601",
+ "rz": null,
+ "tm": "2025-05-26 16:00",
+ "hq": 0.016,
+ "fr": null,
+ "chan": "1",
+ "accq": 102474
+ },
+ "lttd": 31.040052,
+ "sttp": "PQ",
+ "irrCode": "D00000310",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "7724042601",
+ "stnm": "西山林语取水口(四干渠管道)",
+ "lgtd": 112.191118,
+ "irrCode_dictText": "四干渠"
+ },
+ {
+ "moditime": "2024-07-26 11:37:05",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.255",
+ "vol": 919,
+ "formatAccq": null,
+ "stcd": "4208020669",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0.255,
+ "fr": null,
+ "chan": "1",
+ "accq": 6684229
+ },
+ "lttd": 30.886438,
+ "sttp": "PQ",
+ "irrCode": "D00000290",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "4208020669",
+ "stnm": "岳飞城",
+ "lgtd": 112.209508,
+ "irrCode_dictText": "总干渠"
+ },
+ {
+ "moditime": "2024-07-27 08:09:52",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 30,
+ "formatAccq": null,
+ "stcd": "7720240725",
+ "rz": null,
+ "tm": "2025-05-26 15:00",
+ "hq": 0,
+ "fr": 0,
+ "chan": "1",
+ "accq": 1187333
+ },
+ "lttd": 33.33333,
+ "sttp": "PQ",
+ "irrCode": "D00000290",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "7720240725",
+ "stnm": "象山大道桥取水点(掇刀)",
+ "lgtd": 111.111111,
+ "irrCode_dictText": "总干渠"
+ },
+ {
+ "moditime": "2024-11-27 15:20:43",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "formatTm": null,
+ "formatHq": "0.000",
+ "vol": 0,
+ "formatAccq": null,
+ "stcd": "2024112701",
+ "rz": null,
+ "tm": "2025-05-06 18:00",
+ "hq": 0,
+ "fr": null,
+ "chan": "1",
+ "accq": 103355
+ },
+ "lttd": 30.952161,
+ "sttp": "PQ",
+ "irrCode": "D00000290",
+ "sort": 9999,
+ "hasImg": false,
+ "stcd": "2024112701",
+ "stnm": "总干渠夹园闸管道流量",
+ "lgtd": 112.081919,
+ "irrCode_dictText": "总干渠"
+ }
+]
+
+export default class SbLayer extends BaseLayer {
+
+ static LayerName = 'SbLayer';
+
+ static SourceName = SourceName;
+
+ getStyle() {
+
+ const ret = clone(ShapeStyle);
+ this._setStyleVisibility(ret);
+ return ret;
+
+ }
+
+ getName() {
+ return SbLayer.LayerName;
+ }
+
+ getSubLayers() {
+ return [ShapeStyle.id];
+ }
+
+ async doRefreshLayer(mapCtrl) {
+ const ms = mapCtrl.getSource(SourceName);
+
+ let data =
+ // await PicStPromise.get();
+ [...page1,...page2].map((item)=>{
+ const obj = {...item}
+ obj.lgtd = item.lgtd + 2.9619
+ obj.lttd = item.lttd + 0.2002
+ return obj
+ })
+ ms.setData(parseGeoJSON(data));
+ return true;
+ }
+
+ getFeatureTip(record) {
+ return record.stnm;
+ }
+
+ featureClicked(properties, dispatch) {
+ dispatch.runtime.setFeaturePop({
+ type: InfoPopNames.PicStPop,
+ properties,
+ coordinates: [properties.lgtd, properties.lttd],
+ offsetPop: true,
+ });
+ }
+}
diff --git a/src/views/Home/MapCtrl/mapstyle/shuizhalayer.js b/src/views/Home/MapCtrl/mapstyle/shuizhalayer.js
new file mode 100644
index 0000000..1399d33
--- /dev/null
+++ b/src/views/Home/MapCtrl/mapstyle/shuizhalayer.js
@@ -0,0 +1,4929 @@
+import clone from "clone";
+import { PicStPromise, TestPicStPromise } from "../../../../models/_/real";
+import { parseGeoJSON } from "../../../../utils/tools";
+import { InfoPopNames } from "../../InfoPops";
+import BaseLayer from "./baselayer";
+
+const SourceName = '水闸2';
+
+const ShapeStyle = {
+ id: SourceName,
+ type: 'symbol',
+ source: SourceName,
+ layout: {
+ 'icon-allow-overlap': true,
+ 'text-allow-overlap': true,
+ 'icon-image': '水闸2',
+ 'icon-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 0.4,
+ 14, 0.8,
+ ],
+
+ 'text-allow-overlap': true,
+ 'text-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 10,
+ 14, 14,
+ ],
+ 'text-font': ['Roboto Black'],
+ 'text-field': [
+ 'step',
+ ['zoom'],
+ '',
+ 12, ['get', 'stnm']
+ ],
+ 'text-anchor': 'top',
+ 'text-offset': [0, 1],
+
+ 'visibility': 'none',
+ },
+ paint: {
+ 'text-color': '#fff'
+ }
+};
+
+const page1 = [
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2025-01-07",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3*3*2,4*4*2",
+ "wagaCode": "HP0074208020000170",
+ "adCode": "420802102000000",
+ "adCode_dictText": "漳河镇",
+ "lgtd": 112.075597,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "水库枢纽",
+ "flow": null,
+ "bnch": "0+000",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "副坝管理所",
+ "irrCode": "D00001300",
+ "sort": 1001,
+ "stcd": "4262630017",
+ "dsfl": 121,
+ "admDep": null,
+ "startDate": null,
+ "note": "年久失修,需配套更新",
+ "inEle": 110,
+ "pwrTp": "2",
+ "updserDate": null,
+ "engManCode": "ENG100051",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.961122,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 131,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 110,
+ "pwrTp_dictText": "电动",
+ "wagaName": "渠首闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": "7",
+ "compDate": null,
+ "startLong": null,
+ "gaorNum": 8,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板钢闸门",
+ "hdgrTp_dictText": "7",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": "换启闭机",
+ "gtctrTp": null,
+ "updDate": "2023-08-31",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3*2.8",
+ "wagaCode": "HP0074208020000185",
+ "adCode": "420802102000000",
+ "adCode_dictText": "漳河镇",
+ "lgtd": 112.078158,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "0+920",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "烟墩管理段",
+ "irrCode": "D00000290",
+ "sort": 1002,
+ "stcd": "0000000004",
+ "dsfl": 50,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 108,
+ "pwrTp": "2",
+ "updserDate": "2014-01-01",
+ "engManCode": "ENG100035",
+ "chidCount": 1,
+ "whthInWat_dictText": "是",
+ "lttd": 30.953845,
+ "whthInWat": "1",
+ "hasImg": true,
+ "stfl": 32,
+ "endLat": null,
+ "wagaType": "1",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 108,
+ "pwrTp_dictText": "电动",
+ "wagaName": "二干渠进水闸",
+ "wagaType_dictText": "分水闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅱ",
+ "updserRsn": "闸门漏水严重",
+ "gtctrTp": null,
+ "updDate": "2023-03-22",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "5.6*3",
+ "wagaCode": "HP007420804000188X",
+ "adCode": "420804004213000",
+ "adCode_dictText": "车桥村",
+ "lgtd": 112.118889,
+ "updserInvst": 20,
+ "engGrad": "2",
+ "runStat": "1",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "7+670",
+ "startLat": null,
+ "engScal": "2",
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "车桥管理段",
+ "irrCode": "D00000290",
+ "sort": 1003,
+ "stcd": "4263630188",
+ "dsfl": 140,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 109.33,
+ "pwrTp": "3",
+ "updserDate": "2010-01-01",
+ "engManCode": "ENG100037",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.974167,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 5,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 99.5,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "车桥泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "1963-06-01",
+ "startLong": null,
+ "gaorNum": 4,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅱ",
+ "updserRsn": "更换1台螺杆启闭机内丝杆涡轮铜套",
+ "gtctrTp": null,
+ "updDate": "2023-07-19",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "5*4*1,5*3*3",
+ "wagaCode": "HP0074208040001894",
+ "adCode": "420804004213000",
+ "adCode_dictText": "车桥村",
+ "lgtd": 112.119164,
+ "updserInvst": 2,
+ "engGrad": "2",
+ "runStat": "1",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "7+725",
+ "startLat": null,
+ "engScal": "2",
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "车桥管理段",
+ "irrCode": "D00000290",
+ "sort": 1004,
+ "stcd": "4263630189",
+ "dsfl": 121,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 109.33,
+ "pwrTp": "3",
+ "updserDate": "2015-08-01",
+ "engManCode": "ENG100037",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.973831,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 110,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 109.33,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "车桥节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "7",
+ "compDate": "1963-06-01",
+ "startLong": null,
+ "gaorNum": 4,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "7",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "除险加固",
+ "gtctrTp": null,
+ "updDate": "2023-08-02",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.2*1.2",
+ "wagaCode": "HP0074208040001909",
+ "adCode": "420804004213000",
+ "adCode_dictText": "车桥村",
+ "lgtd": 112.11843,
+ "updserInvst": 15,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "7+545",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "车桥水库管理所",
+ "irrCode": "D00000290",
+ "sort": 1005,
+ "stcd": "4262630190",
+ "dsfl": 4.2,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 103.5,
+ "pwrTp": "3",
+ "updserDate": "2006-01-01",
+ "engManCode": "ENG100036",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.97566,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 103.5,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "车桥水库底涵闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": "2",
+ "compDate": "1962-05-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "更换启闭机及丝杆",
+ "gtctrTp": null,
+ "updDate": "2023-03-21",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.5*2.5",
+ "wagaCode": "HP0074208040001913",
+ "adCode": "420804004213000",
+ "adCode_dictText": "车桥村",
+ "lgtd": 112.119316,
+ "updserInvst": 1.2,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "7+605",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "车桥水库管理所",
+ "irrCode": "D00000290",
+ "sort": 1006,
+ "stcd": "4262630191",
+ "dsfl": 32,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 109.7,
+ "pwrTp": "3",
+ "updserDate": "2017-05-01",
+ "engManCode": "ENG100036",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.975327,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 5,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 109.7,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "车桥水库泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "1962-05-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "除险加固",
+ "gtctrTp": null,
+ "updDate": "2023-07-19",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "0.9*0.9",
+ "wagaCode": "HP0074208040001928",
+ "adCode": "420804004211000",
+ "adCode_dictText": "双井村",
+ "lgtd": 112.138056,
+ "updserInvst": 15,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "10+665",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "车桥水库管理所",
+ "irrCode": "D00000290",
+ "sort": 1007,
+ "stcd": "4262630192",
+ "dsfl": 4.3,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 103.5,
+ "pwrTp": "3",
+ "updserDate": "2009-01-01",
+ "engManCode": "ENG100036",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.967778,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 103.5,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "乌盆冲水库底涵闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": "2",
+ "compDate": "1962-05-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "除险加固",
+ "gtctrTp": null,
+ "updDate": "2023-03-21",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.2*1.5",
+ "wagaCode": "HP0074208040001932",
+ "adCode": "420804004211000",
+ "adCode_dictText": "双井村",
+ "lgtd": 112.143295,
+ "updserInvst": 15,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "11+225",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "车桥水库管理所",
+ "irrCode": "D00000290",
+ "sort": 1008,
+ "stcd": "4290630193",
+ "dsfl": 10,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 109.5,
+ "pwrTp": "3",
+ "updserDate": "2009-01-01",
+ "engManCode": "ENG100036",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.969287,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 109.5,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "乌盆冲水库泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "1990-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "除险加固",
+ "gtctrTp": null,
+ "updDate": "2023-10-27",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "0.9*0.9",
+ "wagaCode": "HP0074208040001947",
+ "adCode": "420804004211000",
+ "adCode_dictText": "双井村",
+ "lgtd": 112.148038,
+ "updserInvst": 15,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "12+005",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "车桥水库管理所",
+ "irrCode": "D00000290",
+ "sort": 1009,
+ "stcd": "4262630194",
+ "dsfl": 4.2,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 103.5,
+ "pwrTp": "3",
+ "updserDate": "2009-01-01",
+ "engManCode": "ENG100036",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.971492,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "杨家冲水库底涵闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": "2",
+ "compDate": "1962-05-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "除险加固",
+ "gtctrTp": null,
+ "updDate": "2023-10-27",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.2*1.2",
+ "wagaCode": "HP0074208040001951",
+ "adCode": "420804004211000",
+ "adCode_dictText": "双井村",
+ "lgtd": 112.153889,
+ "updserInvst": 15,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "12+525",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "车桥水库管理所",
+ "irrCode": "D00000290",
+ "sort": 1010,
+ "stcd": "4297630195",
+ "dsfl": 10.2,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 109.5,
+ "pwrTp": "3",
+ "updserDate": "2009-01-01",
+ "engManCode": "ENG100036",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.971111,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 109.5,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "杨家冲水库泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "1997-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅱ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-07-20",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "4*6.45*2,3*6.65*4",
+ "wagaCode": "HP0074208040001966",
+ "adCode": "420804001003000",
+ "adCode_dictText": "白石坡社区",
+ "lgtd": 112.189167,
+ "updserInvst": null,
+ "engGrad": "2",
+ "runStat": "2",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "18+050",
+ "startLat": null,
+ "engScal": "2",
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "掇刀管理段",
+ "irrCode": "D00000290",
+ "sort": 1011,
+ "stcd": "4265630196",
+ "dsfl": 91,
+ "admDep": null,
+ "startDate": null,
+ "note": "启闭机、闸门老化",
+ "inEle": 108.44,
+ "pwrTp": "3",
+ "updserDate": null,
+ "engManCode": "ENG100038",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.968056,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 60,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 108.39,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "三干渠进水闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": "7",
+ "compDate": "1965-05-01",
+ "startLong": null,
+ "gaorNum": 6,
+ "runStat_dictText": "在用故障",
+ "gateTp": null,
+ "hdgrTp_dictText": "7",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "闸门漏水严重",
+ "gtctrTp": null,
+ "updDate": "2023-07-20",
+ "chanCode": "420802001350",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3*5.2",
+ "wagaCode": "HP0074208040001970",
+ "adCode": "420804001003000",
+ "adCode_dictText": "白石坡社区",
+ "lgtd": 112.189444,
+ "updserInvst": 10,
+ "engGrad": "3",
+ "runStat": "2",
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": "18+050",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "总干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "掇刀管理段",
+ "irrCode": "D00000290",
+ "sort": 1012,
+ "stcd": "4265630197",
+ "dsfl": 35,
+ "admDep": null,
+ "startDate": null,
+ "note": "启闭机老化",
+ "inEle": 108.5,
+ "pwrTp": "3",
+ "updserDate": "2014-01-01",
+ "engManCode": "ENG100038",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.968333,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 22,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 108.4,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "四干渠进水闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": "2",
+ "compDate": "1965-03-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用故障",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-07-18",
+ "chanCode": null,
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": null,
+ "wagaCode": "HP0074208040002169",
+ "adCode": "420804004213000",
+ "adCode_dictText": "车桥村",
+ "lgtd": 112.118125,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "总干渠",
+ "flow": null,
+ "bnch": null,
+ "startLat": null,
+ "engScal": null,
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "车桥水库管理所",
+ "irrCode": "D00000290",
+ "sort": 1013,
+ "stcd": null,
+ "dsfl": null,
+ "admDep": null,
+ "startDate": null,
+ "note": "车桥水库底涵闸出口",
+ "inEle": null,
+ "pwrTp": null,
+ "updserDate": null,
+ "engManCode": "ENG100036",
+ "chidCount": null,
+ "lttd": 30.974901,
+ "whthInWat": null,
+ "hasImg": false,
+ "stfl": null,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "wagaName": "新三干进水闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": null,
+ "compDate": null,
+ "startLong": null,
+ "gaorNum": null,
+ "gateTp": null,
+ "insPow": null,
+ "collDate": "2023-07-18"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2025-01-06",
+ "chanCode": "420582000001",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3.2×2.2",
+ "wagaCode": "HP007420582000001X",
+ "adCode": "420582103207000",
+ "adCode_dictText": "春新村",
+ "lgtd": 111.97775,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "一干渠",
+ "flow": null,
+ "bnch": "2+315",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "一干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "一干渠管理处",
+ "irrCode": "D00001190",
+ "sort": 2001,
+ "stcd": "4262630001",
+ "dsfl": 4,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 100.4,
+ "pwrTp": "1",
+ "updserDate": "2010-11-01",
+ "engManCode": "ENG100001",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.996297,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 4,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "石桥冲泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "1962-04-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "直升平面",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "维修",
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420582000001",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3.0×2.2",
+ "wagaCode": "HP0074205820000024",
+ "adCode": "420582103207000",
+ "adCode_dictText": "春新村",
+ "lgtd": 111.988748,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "一干渠",
+ "flow": null,
+ "bnch": "6+830",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "一干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "一干渠管理处",
+ "irrCode": "D00001190",
+ "sort": 2002,
+ "stcd": "4288630002",
+ "dsfl": 4,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 99.14,
+ "pwrTp": "1",
+ "updserDate": "2010-11-01",
+ "engManCode": "ENG100001",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.976072,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 4,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "冷水港泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "1988-03-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "直升平面",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ }
+]
+const page2 = [
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "续建配套",
+ "gtctrTp": null,
+ "updDate": "2023-07-20",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "0.6*0.6",
+ "wagaCode": "HP0074208220000335",
+ "adCode": "420822102000000",
+ "adCode_dictText": "十里镇",
+ "lgtd": 112.094395,
+ "updserInvst": null,
+ "engGrad": "5",
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "48+670",
+ "startLat": null,
+ "engScal": "5",
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "三界管理段",
+ "irrCode": "D00000300",
+ "sort": 3019,
+ "stcd": "4261630033",
+ "dsfl": 2,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "1",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100006",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.649309,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 1.5,
+ "endLat": null,
+ "wagaType": "1",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "二干渠二支渠分水闸",
+ "wagaType_dictText": "分水闸",
+ "hdgrTp": "2",
+ "compDate": "1961-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "设备老化",
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3*3",
+ "wagaCode": "HP0074208220000282",
+ "adCode": "420822102000000",
+ "adCode_dictText": "十里镇",
+ "lgtd": 112.093557,
+ "updserInvst": 10,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "49+080",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "三界管理段",
+ "irrCode": "D00000300",
+ "sort": 3020,
+ "stcd": "4266630028",
+ "dsfl": 22,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 85.66,
+ "pwrTp": "2",
+ "updserDate": "2010-01-01",
+ "engManCode": "ENG100006",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.645027,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 20,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 85.54,
+ "pwrTp_dictText": "电动",
+ "wagaName": "三界节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 2,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-04-01",
+ "chanCode": "420822000956",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": null,
+ "wagaCode": "HP0074210030000509",
+ "adCode": "421003101000000",
+ "adCode_dictText": "川店镇",
+ "lgtd": 112.154126,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": "3",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "5+050",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "二干渠老二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "地方政府",
+ "irrCode": "D00000300",
+ "sort": 3021,
+ "stcd": "4262630050",
+ "dsfl": null,
+ "admDep": null,
+ "startDate": null,
+ "note": "需配套更新",
+ "inEle": null,
+ "pwrTp": null,
+ "updserDate": null,
+ "engManCode": "ENG100064",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.526487,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": null,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "wagaName": "柳别堰水库进水闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": null,
+ "compDate": null,
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "停用",
+ "gateTp": null,
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "续建配套",
+ "gtctrTp": null,
+ "updDate": "2023-07-20",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1*1",
+ "wagaCode": "HP0074210030000346",
+ "adCode": "421003101000000",
+ "adCode_dictText": "川店镇",
+ "lgtd": 112.090896,
+ "updserInvst": null,
+ "engGrad": "5",
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "51+862",
+ "startLat": null,
+ "engScal": "5",
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "三界管理段",
+ "irrCode": "D00000300",
+ "sort": 3022,
+ "stcd": "4266630034",
+ "dsfl": 2,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "1",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100006",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.625994,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 1,
+ "endLat": null,
+ "wagaType": "1",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "二干渠三支渠分水闸",
+ "wagaType_dictText": "分水闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "续建配套",
+ "gtctrTp": null,
+ "updDate": "2023-04-01",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3*3",
+ "wagaCode": "HP0074210030000293",
+ "adCode": "421003101000000",
+ "adCode_dictText": "川店镇",
+ "lgtd": 112.094419,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "53+168",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "三界管理段",
+ "irrCode": "D00000300",
+ "sort": 3023,
+ "stcd": "4266630029",
+ "dsfl": 22,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 84.94,
+ "pwrTp": "2",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100006",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.621839,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 18,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 84.94,
+ "pwrTp_dictText": "电动",
+ "wagaName": "五八节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "续建配套",
+ "gtctrTp": null,
+ "updDate": "2023-07-20",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1*1",
+ "wagaCode": "HP0074210030000350",
+ "adCode": "421003101000000",
+ "adCode_dictText": "川店镇",
+ "lgtd": 112.101905,
+ "updserInvst": null,
+ "engGrad": "5",
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "54+835",
+ "startLat": null,
+ "engScal": "5",
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "三界管理段",
+ "irrCode": "D00000300",
+ "sort": 3024,
+ "stcd": "4266630035",
+ "dsfl": 3,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "1",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100006",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.60771,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 1.5,
+ "endLat": null,
+ "wagaType": "1",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "二干渠四支渠分水闸",
+ "wagaType_dictText": "分水闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "续建配套",
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3*3",
+ "wagaCode": "HP0074208220000301",
+ "adCode": "420822102000000",
+ "adCode_dictText": "十里镇",
+ "lgtd": 112.101389,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "55+305",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "三界管理段",
+ "irrCode": "D00000300",
+ "sort": 3025,
+ "stcd": "4266630030",
+ "dsfl": 22,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 79.8,
+ "pwrTp": "2",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100006",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.606405,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 15,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "电动",
+ "wagaName": "六零节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": "老化",
+ "gtctrTp": null,
+ "updDate": "2023-04-01",
+ "chanCode": "420822000640",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.5*1.5",
+ "wagaCode": "HP007420822000056X",
+ "adCode": "420822103000000",
+ "adCode_dictText": "纪山镇",
+ "lgtd": 112.197438,
+ "updserInvst": 10,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "6+583",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "二干渠新二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "四方藤店管理段",
+ "irrCode": "D00000300",
+ "sort": 3026,
+ "stcd": "4273630056",
+ "dsfl": 2.5,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 64.368,
+ "pwrTp": "3",
+ "updserDate": "2016-01-01",
+ "engManCode": "ENG100008",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.544388,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 2.5,
+ "endLat": null,
+ "wagaType": "1",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 64.368,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "五分支进水闸",
+ "wagaType_dictText": "分水闸",
+ "hdgrTp": "2",
+ "compDate": "1973-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": "闸门损坏",
+ "gtctrTp": null,
+ "updDate": "2023-04-01",
+ "chanCode": "420822000640",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.5*2",
+ "wagaCode": "HP0074208220000540",
+ "adCode": "420822103000000",
+ "adCode_dictText": "纪山镇",
+ "lgtd": 112.197525,
+ "updserInvst": 21,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "6+770",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "二干渠新二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "四方藤店管理段",
+ "irrCode": "D00000300",
+ "sort": 3027,
+ "stcd": "4273630054",
+ "dsfl": 6,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 62.5,
+ "pwrTp": "3",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100008",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.5445,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 4,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 59.2,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "肖家湾陡坡节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1973-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": "更新配套",
+ "gtctrTp": null,
+ "updDate": "2023-04-01",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.5*2.5",
+ "wagaCode": "HP0074210030000365",
+ "adCode": "421003101000000",
+ "adCode_dictText": "川店镇",
+ "lgtd": 112.131644,
+ "updserInvst": 2.5,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "64+215",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "四方藤店管理段",
+ "irrCode": "D00000300",
+ "sort": 3028,
+ "stcd": "4291630036",
+ "dsfl": 25,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 73.3,
+ "pwrTp": "3",
+ "updserDate": "2021-01-01",
+ "engManCode": "ENG100008",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.559888,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 11,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 73.2,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "双堰节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1991-01-01",
+ "startLong": null,
+ "gaorNum": 2,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": "闸门启闭机老化",
+ "gtctrTp": null,
+ "updDate": "2023-04-01",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2*2",
+ "wagaCode": "HP0074208220000521",
+ "adCode": "420822103000000",
+ "adCode_dictText": "纪山镇",
+ "lgtd": 112.141722,
+ "updserInvst": 18,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "65+385",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "二干渠管理处",
+ "irrCode": "D00000300",
+ "sort": 3029,
+ "stcd": "4267630052",
+ "dsfl": 11,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 72,
+ "pwrTp": "3",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100044",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.550417,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 7,
+ "endLat": null,
+ "wagaType": "1",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 73.65,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "新二分干分水闸",
+ "wagaType_dictText": "分水闸",
+ "hdgrTp": "2",
+ "compDate": "1967-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": "续建配套",
+ "gtctrTp": null,
+ "updDate": "2023-04-01",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.5*1.5",
+ "wagaCode": "HP0074210030000384",
+ "adCode": "421003101000000",
+ "adCode_dictText": "川店镇",
+ "lgtd": 112.133068,
+ "updserInvst": 5,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "68+303",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "四方藤店管理段",
+ "irrCode": "D00000300",
+ "sort": 3031,
+ "stcd": "4266630038",
+ "dsfl": 13,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 73.602,
+ "pwrTp": "2",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100008",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.535261,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 2.5,
+ "endLat": null,
+ "wagaType": "1",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 73.602,
+ "pwrTp_dictText": "电动",
+ "wagaName": "老二分干分水闸",
+ "wagaType_dictText": "分水闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": "续建配套",
+ "gtctrTp": null,
+ "updDate": "2023-04-01",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.5*2.5",
+ "wagaCode": "HP0074210030000399",
+ "adCode": "421003101000000",
+ "adCode_dictText": "川店镇",
+ "lgtd": 112.132719,
+ "updserInvst": 28,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "68+365",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "四方藤店管理段",
+ "irrCode": "D00000300",
+ "sort": 3032,
+ "stcd": "4266630039",
+ "dsfl": 8.4,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 71.9,
+ "pwrTp": "2",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100008",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.535188,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "电动",
+ "wagaName": "白河陡坡节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": "老化",
+ "gtctrTp": null,
+ "updDate": "2023-04-01",
+ "chanCode": "420822000640",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2*1.5",
+ "wagaCode": "HP0074208220000574",
+ "adCode": "420822103000000",
+ "adCode_dictText": "纪山镇",
+ "lgtd": 112.206602,
+ "updserInvst": 11.5,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "7+889",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "二干渠新二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "四方藤店管理段",
+ "irrCode": "D00000300",
+ "sort": 3033,
+ "stcd": "4267630057",
+ "dsfl": 6,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 58.01,
+ "pwrTp": "3",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100008",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.545611,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 55.75,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "江家湾陡坡节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1967-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": null,
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": "续建配套",
+ "gtctrTp": null,
+ "updDate": "2023-04-01",
+ "chanCode": "420802000280",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2*2",
+ "wagaCode": "HP0074210030000403",
+ "adCode": "421003101000000",
+ "adCode_dictText": "川店镇",
+ "lgtd": 112.119835,
+ "updserInvst": 25,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "二干渠",
+ "flow": null,
+ "bnch": "71+464",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "二干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "四方藤店管理段",
+ "irrCode": "D00000300",
+ "sort": 3034,
+ "stcd": "4266630040",
+ "dsfl": 7.2,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 62,
+ "pwrTp": "2",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100008",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.513642,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 2.5,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "电动",
+ "wagaName": "藤店陡坡节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ }
+]
+const page3 = [
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.3*1.4",
+ "wagaCode": "HP0074208000001200",
+ "adCode": "420822111206000",
+ "adCode_dictText": "柴岗村",
+ "lgtd": 112.357716,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "18+877",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4035,
+ "stcd": "4264630120",
+ "dsfl": 3,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "3",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.886272,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 3,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "一支三分干进水闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.2*2",
+ "wagaCode": "HP0074208220001016",
+ "adCode": "420822111206101",
+ "adCode_dictText": "柴岗村一组",
+ "lgtd": 112.357711,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "18+960",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "三干渠一支干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4036,
+ "stcd": "4264630101",
+ "dsfl": 5.5,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 94.14,
+ "pwrTp": "3",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.888013,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 5.5,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 88.62,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "一支干柴岗陡坡闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.1*2",
+ "wagaCode": "HP0074208220001020",
+ "adCode": "420822111205106",
+ "adCode_dictText": "郑岗村六组",
+ "lgtd": 112.362857,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "20+680",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "三干渠一支干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4037,
+ "stcd": "4264630102",
+ "dsfl": 4.4,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 87.94,
+ "pwrTp": "1",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.896615,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 4.4,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 82.26,
+ "pwrTp_dictText": "手动",
+ "wagaName": "一支干孙岗陡坡闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.1*2",
+ "wagaCode": "HP0074208810001030",
+ "adCode": "420881108250102",
+ "adCode_dictText": "洪山观村二组",
+ "lgtd": 112.409427,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "24+200",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "三干渠一支干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "irrCode": "D00000020",
+ "sort": 4038,
+ "stcd": "4264630103",
+ "dsfl": 4.4,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 80.36,
+ "pwrTp": "3",
+ "updserDate": "2015-01-01",
+ "engManCode": "ENG100065",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.903552,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 4.4,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 77.36,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "一支干张岗陡坡闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.1*2",
+ "wagaCode": "HP0074208810001045",
+ "adCode": "420881108249104",
+ "adCode_dictText": "肖店村四组",
+ "lgtd": 112.410866,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "29+630",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "三干渠一支干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "irrCode": "D00000020",
+ "sort": 4039,
+ "stcd": "4264630104",
+ "dsfl": 2.4,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 68.12,
+ "pwrTp": "3",
+ "updserDate": "2012-01-01",
+ "engManCode": "ENG100065",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.91893,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 2.4,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 65,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "一支干沈岗陡坡闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.6*2.8",
+ "wagaCode": "HP007420881000105X",
+ "adCode": "420881108246104",
+ "adCode_dictText": "官堤村四组",
+ "lgtd": 112.456323,
+ "updserInvst": null,
+ "engGrad": "5",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "32+100",
+ "startLat": null,
+ "engScal": "5",
+ "chanCode_dictText": "三干渠一支干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "irrCode": "D00000020",
+ "sort": 4040,
+ "stcd": "4264630105",
+ "dsfl": 1.9,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 67.49,
+ "pwrTp": "3",
+ "updserDate": "2012-01-01",
+ "engManCode": "ENG100065",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.912811,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 1.9,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 68.18,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "一支干长岗岭节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001145",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.4*1.7",
+ "wagaCode": "HP0074208810001064",
+ "adCode": "420881108246105",
+ "adCode_dictText": "官堤村五组",
+ "lgtd": 112.456323,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": null,
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "石牌瓦瓷协会",
+ "irrCode": "D00000020",
+ "sort": 4041,
+ "stcd": "4266630106",
+ "dsfl": null,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100065",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.912811,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": null,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "一支干长岗岭尾水闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.88*2.05",
+ "wagaCode": "HP0074208220001221",
+ "adCode": "420822112210000",
+ "adCode_dictText": "柴集村",
+ "lgtd": 112.277731,
+ "updserInvst": 12,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "2+580",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "刘集管理段",
+ "irrCode": "D00000020",
+ "sort": 4042,
+ "stcd": "4264630122",
+ "dsfl": 5.8,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 96.47,
+ "pwrTp": "3",
+ "updserDate": "2010-01-01",
+ "engManCode": "ENG100014",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.752446,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 5.8,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 89.97,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "三分干官集节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 2,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "续建配套",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.5*1.5",
+ "wagaCode": "HP0074208220002156",
+ "adCode": "420822101212107",
+ "adCode_dictText": "陈池村七组",
+ "lgtd": 112.268415,
+ "updserInvst": 1,
+ "engGrad": "5",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "4+780",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "刘集管理段",
+ "irrCode": "D00000020",
+ "sort": 4043,
+ "stcd": "4264630999",
+ "dsfl": 2,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 89.11,
+ "pwrTp": "3",
+ "updserDate": "2010-01-01",
+ "engManCode": "ENG100014",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 30.736105,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 2,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "三分干洪庙支渠进水闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2023-04-21"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3*22.85*2.6",
+ "wagaCode": "HP0074208220001236",
+ "adCode": "420822101212000",
+ "adCode_dictText": "陈池村",
+ "lgtd": 112.26909,
+ "updserInvst": 15,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "5+600",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "刘集管理段",
+ "irrCode": "D00000020",
+ "sort": 4044,
+ "stcd": "4264630123",
+ "dsfl": 4.9,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 88.72,
+ "pwrTp": "3",
+ "updserDate": "2010-01-01",
+ "engManCode": "ENG100014",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.728407,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 4.9,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 84.72,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "三分干九口堰陡坡闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3.7*2.1",
+ "wagaCode": "HP0074208220002137",
+ "adCode": "420822101212000",
+ "adCode_dictText": "陈池村",
+ "lgtd": 112.27429,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "7+230",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "刘集管理段",
+ "irrCode": "D00000020",
+ "sort": 4045,
+ "stcd": null,
+ "dsfl": 4.5,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "3",
+ "updserDate": null,
+ "engManCode": "ENG100014",
+ "chidCount": null,
+ "lttd": 30.71416,
+ "whthInWat": null,
+ "hasImg": false,
+ "stfl": 4.5,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "陈池节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": null,
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2023-03-31"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.35*2.05",
+ "wagaCode": "HP0074208220001240",
+ "adCode": "420822101210000",
+ "adCode_dictText": "显灵村",
+ "lgtd": 112.269758,
+ "updserInvst": 13,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "9+350",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "刘集管理段",
+ "irrCode": "D00000020",
+ "sort": 4046,
+ "stcd": "4264630124",
+ "dsfl": 4.6,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 82.95,
+ "pwrTp": "3",
+ "updserDate": "2011-01-01",
+ "engManCode": "ENG100014",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.697982,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3.4,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 79.95,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "三分干卞庙节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.5*2",
+ "wagaCode": "HP0074208220001255",
+ "adCode": "420822101210000",
+ "adCode_dictText": "显灵村",
+ "lgtd": 112.254438,
+ "updserInvst": 10,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "12+130",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "刘集管理段",
+ "irrCode": "D00000020",
+ "sort": 4047,
+ "stcd": "4264630125",
+ "dsfl": 4.6,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 78.01,
+ "pwrTp": "3",
+ "updserDate": "2012-01-01",
+ "engManCode": "ENG100014",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.67965,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3.4,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 73.04,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "三分干苏冢节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.5*1.6",
+ "wagaCode": "HP0074208220001274",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": 112.243357,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "15+800",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "刘集管理段",
+ "irrCode": "D00000020",
+ "sort": 4048,
+ "stcd": "4273630127",
+ "dsfl": 3.5,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "3",
+ "updserDate": null,
+ "engManCode": "ENG100014",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.649163,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3.5,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "三分干老山节制闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1973-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2*21.4*1.4",
+ "wagaCode": "HP0074208220001289",
+ "adCode": "420822104210000",
+ "adCode_dictText": "古林村",
+ "lgtd": 112.246207,
+ "updserInvst": 9,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "17+350",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "刘集管理段",
+ "irrCode": "D00000020",
+ "sort": 4049,
+ "stcd": "4264630128",
+ "dsfl": 3,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 67.89,
+ "pwrTp": "3",
+ "updserDate": "2013-01-01",
+ "engManCode": "ENG100014",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.641228,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 2.5,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 65.04,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "三分干刘家湾节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ }
+]
+const page4 = [
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420804001406",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "0.7*0.7",
+ "wagaCode": "HP0074208000001124",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "2+300",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4095,
+ "stcd": "4264630112",
+ "dsfl": 2.5,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 93.45,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 2.5,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 86.45,
+ "pwrTp_dictText": "手动",
+ "wagaName": "曾家大堰陡坡",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420804001406",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.5*1.5",
+ "wagaCode": "HP0074208000001139",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "3+880",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4096,
+ "stcd": "4264630113",
+ "dsfl": 2.5,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 85.37,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 2.5,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 81.37,
+ "pwrTp_dictText": "手动",
+ "wagaName": "沈集陡坡",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420804001406",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.5*0.5",
+ "wagaCode": "HP0074208000001143",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "9+200",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4097,
+ "stcd": "4264630114",
+ "dsfl": 1.9,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 77.33,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 1.9,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 73.97,
+ "pwrTp_dictText": "手动",
+ "wagaName": "左湾陡坡",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420804001406",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.5*0.2",
+ "wagaCode": "HP0074208000001158",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "14+500",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4098,
+ "stcd": "4264630115",
+ "dsfl": 1.3,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 69.6,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 1.3,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 65.1,
+ "pwrTp_dictText": "手动",
+ "wagaName": "松林咀陡坡",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420804001406",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1*0.2",
+ "wagaCode": "HP0074208000001162",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "17+660",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4099,
+ "stcd": "4264630116",
+ "dsfl": 1.3,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 61.3,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 1.3,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 58.6,
+ "pwrTp_dictText": "手动",
+ "wagaName": "新贺集陡坡",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420804001406",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1*0.2",
+ "wagaCode": "HP0074208000001177",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "23+300",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4100,
+ "stcd": "4264630117",
+ "dsfl": 0.8,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 53.8,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 0.8,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 47.8,
+ "pwrTp_dictText": "手动",
+ "wagaName": "新贺尾水闸一级",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420804001406",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1*0.2",
+ "wagaCode": "HP0074208000001181",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "23+300",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4101,
+ "stcd": "4264630118",
+ "dsfl": 0.8,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 44.15,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 0.8,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 41.65,
+ "pwrTp_dictText": "手动",
+ "wagaName": "新贺尾水闸二级",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420804001406",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1*0.2",
+ "wagaCode": "HP0074208000001196",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "24+420",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干二分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4102,
+ "stcd": "4264630119",
+ "dsfl": 0.8,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 41.16,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 0.8,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 39.1,
+ "pwrTp_dictText": "手动",
+ "wagaName": "新贺尾水闸三级",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420804001407",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2*1.9",
+ "wagaCode": "HP0074208000001731",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "6+290",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4103,
+ "stcd": null,
+ "dsfl": 2.5,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "lttd": null,
+ "whthInWat": null,
+ "hasImg": false,
+ "stfl": 2.5,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "万店陡坡闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": null,
+ "startLong": null,
+ "gaorNum": null,
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2023-06-20"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420804001407",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2*2.2",
+ "wagaCode": "HP0074208000001746",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "9+650",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一支干三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4104,
+ "stcd": null,
+ "dsfl": 2,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "3",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "lttd": null,
+ "whthInWat": null,
+ "hasImg": false,
+ "stfl": 2,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "朱巷节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": null,
+ "startLong": null,
+ "gaorNum": null,
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2023-06-20"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.3*1.5",
+ "wagaCode": "HP0074208220001308",
+ "adCode": "420822104211000",
+ "adCode_dictText": "瓦庙村",
+ "lgtd": 112.250073,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "18+800",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "刘集管理段",
+ "irrCode": "D00000020",
+ "sort": 4105,
+ "stcd": "4264630130",
+ "dsfl": 1.5,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100014",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 30.624903,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 1.5,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "瓦庙陡坡闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅴ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2*2",
+ "wagaCode": "HP0074208220001312",
+ "adCode": "420822104211000",
+ "adCode_dictText": "瓦庙村",
+ "lgtd": null,
+ "updserInvst": 9,
+ "engGrad": "5",
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "21+700",
+ "startLat": null,
+ "engScal": "5",
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4106,
+ "stcd": "4264630131",
+ "dsfl": 1.5,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 57.25,
+ "pwrTp": "1",
+ "updserDate": "2013-01-01",
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 1.5,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 53.79,
+ "pwrTp_dictText": "手动",
+ "wagaName": "高家湾陡坡闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.3*1.5",
+ "wagaCode": "HP0074208220001327",
+ "adCode": "420822104211000",
+ "adCode_dictText": "瓦庙村",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "22+600",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4107,
+ "stcd": "4264630132",
+ "dsfl": 1.5,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 1.5,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "王巷陡坡闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.3*0.5",
+ "wagaCode": "HP0074208220001331",
+ "adCode": "420822104211000",
+ "adCode_dictText": "瓦庙村",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "24+360",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4108,
+ "stcd": "4264630133",
+ "dsfl": null,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 51.61,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 1.4,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 48.61,
+ "pwrTp_dictText": "手动",
+ "wagaName": "尚家湾闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-06-20",
+ "chanCode": "420822001144",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "1.3*0.54",
+ "wagaCode": "HP0074208220001346",
+ "adCode": "420822104211000",
+ "adCode_dictText": "瓦庙村",
+ "lgtd": null,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "25+760",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠三分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "帅店管理段",
+ "irrCode": "D00000020",
+ "sort": 4109,
+ "stcd": "4264630134",
+ "dsfl": null,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 47.23,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100013",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": null,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 1.4,
+ "endLat": null,
+ "wagaType": "9",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 42.73,
+ "pwrTp_dictText": "手动",
+ "wagaName": "薛家湾闸",
+ "wagaType_dictText": "其他",
+ "hdgrTp": "2",
+ "compDate": "1964-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "平板",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ }
+]
+const page5 = [
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420802001163",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.57*2.59",
+ "wagaCode": "HP0074208810001739",
+ "adCode": "420881107218000",
+ "adCode_dictText": "湾堰村",
+ "lgtd": 112.32225,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "20+925",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "四干渠东干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "温家巷管理段",
+ "irrCode": "D00000310",
+ "sort": 5016,
+ "stcd": "4201630173",
+ "dsfl": 12.8,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 96.158,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100032",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.089101,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 12.8,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 96.158,
+ "pwrTp_dictText": "手动",
+ "wagaName": "湾堰泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "2001-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420802001163",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2/2.5*2.5",
+ "wagaCode": "HP0074208810001743",
+ "adCode": "420881107217000",
+ "adCode_dictText": "田岗村",
+ "lgtd": 112.334572,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "24+400",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "四干渠东干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "温家巷管理段",
+ "irrCode": "D00000310",
+ "sort": 5017,
+ "stcd": "4298630174",
+ "dsfl": 3,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 94.93,
+ "pwrTp": "2",
+ "updserDate": null,
+ "engManCode": "ENG100032",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 31.080737,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 0.8,
+ "endLat": null,
+ "wagaType": "1",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 94.93,
+ "pwrTp_dictText": "电动",
+ "wagaName": "冷水贺集分水闸",
+ "wagaType_dictText": "分水闸",
+ "hdgrTp": "2",
+ "compDate": "1998-01-01",
+ "startLong": null,
+ "gaorNum": 2,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "维修",
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2*3.5",
+ "wagaCode": "HP0074208020001750",
+ "adCode": "420802101215000",
+ "adCode_dictText": "建泉村",
+ "lgtd": 112.193027,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "7+178",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "安栈口管理段",
+ "irrCode": "D00000310",
+ "sort": 5018,
+ "stcd": "4266630175",
+ "dsfl": 20,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 100.58,
+ "pwrTp": "2",
+ "updserDate": "2009-01-01",
+ "engManCode": "ENG100031",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.138674,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 15,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 100.58,
+ "pwrTp_dictText": "电动",
+ "wagaName": "花桥泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3*4",
+ "wagaCode": "HP0074208020001765",
+ "adCode": "420802101215000",
+ "adCode_dictText": "建泉村",
+ "lgtd": 112.194529,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "7+985",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "安栈口管理段",
+ "irrCode": "D00000310",
+ "sort": 5019,
+ "stcd": "4272630176",
+ "dsfl": 10,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 100.474,
+ "pwrTp": "2",
+ "updserDate": "2009-01-01",
+ "engManCode": "ENG100031",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 31.145782,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": 5.5,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 100.474,
+ "pwrTp_dictText": "电动",
+ "wagaName": "建泉进水闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": "2",
+ "compDate": "1972-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "4*3",
+ "wagaCode": "HP007420802000177X",
+ "adCode": "420802101204000",
+ "adCode_dictText": "四坪村",
+ "lgtd": 112.183594,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "12+518",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "安栈口管理段",
+ "irrCode": "D00000310",
+ "sort": 5020,
+ "stcd": "4266630177",
+ "dsfl": 22.8,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 100.49,
+ "pwrTp": "2",
+ "updserDate": "2009-01-01",
+ "engManCode": "ENG100031",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.173023,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 22.8,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 100.49,
+ "pwrTp_dictText": "电动",
+ "wagaName": "南桥泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "重建",
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3.5*4",
+ "wagaCode": "HP0074208020001784",
+ "adCode": "420802101204000",
+ "adCode_dictText": "四坪村",
+ "lgtd": 112.182621,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "12+625",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "安栈口管理段",
+ "irrCode": "D00000310",
+ "sort": 5021,
+ "stcd": "4266630178",
+ "dsfl": 8.64,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 100.49,
+ "pwrTp": "2",
+ "updserDate": "2009-01-01",
+ "engManCode": "ENG100031",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.173056,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 5,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 100.49,
+ "pwrTp_dictText": "电动",
+ "wagaName": "南桥节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": "",
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.5*3",
+ "wagaCode": "HP0074208020001799",
+ "adCode": "420802101207000",
+ "adCode_dictText": "青山村",
+ "lgtd": 112.16494,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "17+740",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "安栈口管理段",
+ "irrCode": "D00000310",
+ "sort": 5022,
+ "stcd": "4272630179",
+ "dsfl": 13.8,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 99.604,
+ "pwrTp": "2",
+ "updserDate": null,
+ "engManCode": "ENG100031",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.209757,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 4.5,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "电动",
+ "wagaName": "文干节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1972-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.5*4",
+ "wagaCode": "HP0074208020001803",
+ "adCode": "420802104225000",
+ "adCode_dictText": "伍桐村",
+ "lgtd": 112.151102,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "23+160",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "盐池管理段",
+ "irrCode": "D00000310",
+ "sort": 5023,
+ "stcd": "4209630180",
+ "dsfl": 8.19,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 98.35,
+ "pwrTp": "2",
+ "updserDate": null,
+ "engManCode": "ENG100033",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.24512,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 9.36,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 98.35,
+ "pwrTp_dictText": "电动",
+ "wagaName": "永盛节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "2009-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "4*2.8",
+ "wagaCode": "HP0074208020001818",
+ "adCode": "420802104220000",
+ "adCode_dictText": "雷坪村",
+ "lgtd": 112.146427,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "26+900",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "盐池管理段",
+ "irrCode": "D00000310",
+ "sort": 5024,
+ "stcd": "4209630181",
+ "dsfl": 15,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 96.84,
+ "pwrTp": "2",
+ "updserDate": null,
+ "engManCode": "ENG100033",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.276321,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 15,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 96.84,
+ "pwrTp_dictText": "电动",
+ "wagaName": "盐池泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "2009-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.8*2.5",
+ "wagaCode": "HP0074208020001822",
+ "adCode": "420802104220000",
+ "adCode_dictText": "雷坪村",
+ "lgtd": 112.145474,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "27+400",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "盐池管理段",
+ "irrCode": "D00000310",
+ "sort": 5025,
+ "stcd": "4209630182",
+ "dsfl": 7.89,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 96.84,
+ "pwrTp": "2",
+ "updserDate": null,
+ "engManCode": "ENG100033",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.277242,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 4,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 96.84,
+ "pwrTp_dictText": "电动",
+ "wagaName": "盐池节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "2009-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.5*3",
+ "wagaCode": "HP0074208020001837",
+ "adCode": "420802104206000",
+ "adCode_dictText": "苏冲村",
+ "lgtd": 112.217811,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": null,
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "41+220",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "响水洞管理段",
+ "irrCode": "D00000310",
+ "sort": 5026,
+ "stcd": "4292630183",
+ "dsfl": 10,
+ "admDep": null,
+ "startDate": null,
+ "note": "需配电",
+ "inEle": 94.603,
+ "pwrTp": "1",
+ "updserDate": "2009-01-01",
+ "engManCode": "ENG100066",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.301482,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 3,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 94.603,
+ "pwrTp_dictText": "手动",
+ "wagaName": "41KM节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1992-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3.5*2.5",
+ "wagaCode": "HP0074208810001849",
+ "adCode": "420881104210000",
+ "adCode_dictText": "林坪村",
+ "lgtd": 112.244597,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "47+900",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "响水洞管理段",
+ "irrCode": "D00000310",
+ "sort": 5027,
+ "stcd": "4209630184",
+ "dsfl": 10,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 93.72,
+ "pwrTp": "2",
+ "updserDate": null,
+ "engManCode": "ENG100066",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.33316,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 10,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 93.72,
+ "pwrTp_dictText": "电动",
+ "wagaName": "响水洞泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "2009-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "3*4.5",
+ "wagaCode": "HP0074208810001853",
+ "adCode": "420881104210000",
+ "adCode_dictText": "林坪村",
+ "lgtd": 112.244707,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": "1",
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "48+260",
+ "startLat": null,
+ "engScal": "4",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "响水洞管理段",
+ "irrCode": "D00000310",
+ "sort": 5028,
+ "stcd": "4209630185",
+ "dsfl": 7.02,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 93.706,
+ "pwrTp": "2",
+ "updserDate": null,
+ "engManCode": "ENG100066",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.33311,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 8.94,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 93.706,
+ "pwrTp_dictText": "电动",
+ "wagaName": "响水洞节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "2009-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2*2",
+ "wagaCode": "HP0074208810001868",
+ "adCode": "420881104214000",
+ "adCode_dictText": "斑竹村",
+ "lgtd": 112.282121,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "58+690",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "响水洞管理段",
+ "irrCode": "D00000310",
+ "sort": 5029,
+ "stcd": "4266630186",
+ "dsfl": 8,
+ "admDep": null,
+ "startDate": null,
+ "note": "需重建",
+ "inEle": null,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100066",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.340717,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": null,
+ "endLat": null,
+ "wagaType": "3",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "排子岗节制闸",
+ "wagaType_dictText": "节制闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "砼",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅲ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": "2023-10-24",
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.3*2.7",
+ "wagaCode": "HP0074208810001872",
+ "adCode": "420881104214000",
+ "adCode_dictText": "斑竹村",
+ "lgtd": 112.310169,
+ "updserInvst": null,
+ "engGrad": "3",
+ "runStat": null,
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "64+950",
+ "startLat": null,
+ "engScal": "3",
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "响水洞管理段",
+ "irrCode": "D00000310",
+ "sort": 5030,
+ "stcd": "4266630187",
+ "dsfl": 11,
+ "admDep": null,
+ "startDate": null,
+ "note": "需重建",
+ "inEle": 89.97,
+ "pwrTp": "1",
+ "updserDate": null,
+ "engManCode": "ENG100066",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.364816,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": null,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "pwrTp_dictText": "手动",
+ "wagaName": "周谷湾泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "1966-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "砼",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2022-09-15"
+ }
+]
+const page6 = [
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420804001141",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": null,
+ "wagaCode": "HP007420800000203X",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": 112.183846,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": null,
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠一分干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "杨集管理段",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "stcd": null,
+ "dsfl": null,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": null,
+ "updserDate": null,
+ "engManCode": "ENG100011",
+ "chidCount": null,
+ "lttd": 31.086494,
+ "whthInWat": null,
+ "hasImg": false,
+ "stfl": null,
+ "endLat": null,
+ "wagaType": null,
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "wagaName": "一分干双碑陡坡闸",
+ "hdgrTp": null,
+ "compDate": null,
+ "startLong": null,
+ "gaorNum": null,
+ "gateTp": null,
+ "insPow": null,
+ "collDate": "2023-10-18"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "engGrad_dictText": "Ⅳ",
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420881001271",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": "2.5*2.5",
+ "wagaCode": "HP0074208020002169",
+ "adCode": "420802104000000",
+ "adCode_dictText": "石桥驿镇",
+ "lgtd": 112.175235,
+ "updserInvst": null,
+ "engGrad": "4",
+ "runStat": null,
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": "35+600",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "四干渠北干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "盐池管理段",
+ "irrCode": "D00000310",
+ "sort": 9999,
+ "stcd": null,
+ "dsfl": 10.24,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": 93.75,
+ "pwrTp": "3",
+ "updserDate": null,
+ "engManCode": "ENG100033",
+ "chidCount": null,
+ "whthInWat_dictText": "否",
+ "lttd": 31.297434,
+ "whthInWat": "2",
+ "hasImg": false,
+ "stfl": 10.24,
+ "endLat": null,
+ "wagaType": "2",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": 77.5,
+ "pwrTp_dictText": "手电两用",
+ "wagaName": "安家坡泄洪闸",
+ "wagaType_dictText": "泄洪闸",
+ "hdgrTp": "2",
+ "compDate": "2022-01-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "gateTp": "铸铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2023-10-30"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": null,
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": null,
+ "wagaCode": "HP0074208040002173",
+ "adCode": "420804001000000",
+ "adCode_dictText": "掇刀街道",
+ "lgtd": 112.165012,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": null,
+ "irrCode_dictText": "四干渠",
+ "flow": null,
+ "bnch": null,
+ "startLat": null,
+ "engScal": null,
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "四干渠管理处",
+ "irrCode": "D00000310",
+ "sort": 9999,
+ "stcd": null,
+ "dsfl": null,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": null,
+ "updserDate": null,
+ "engManCode": "ENG200013",
+ "chidCount": null,
+ "lttd": 31.20991,
+ "whthInWat": null,
+ "hasImg": false,
+ "stfl": null,
+ "endLat": null,
+ "wagaType": null,
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "wagaName": "文庙支渠节制闸",
+ "hdgrTp": null,
+ "compDate": null,
+ "startLong": null,
+ "gaorNum": null,
+ "gateTp": null,
+ "insPow": null,
+ "collDate": "2024-03-06"
+ },
+ {
+ "mvalue": null,
+ "wainWasoType": null,
+ "updserRsn": null,
+ "gtctrTp": null,
+ "updDate": null,
+ "chanCode": "420822001146",
+ "engStat": null,
+ "desTotInsCap": null,
+ "gateSize": null,
+ "wagaCode": "HP0074208000002044",
+ "adCode": "420800000000000",
+ "adCode_dictText": "荆门市",
+ "lgtd": 112.350426,
+ "updserInvst": null,
+ "engGrad": null,
+ "runStat": "1",
+ "irrCode_dictText": "三干渠",
+ "flow": null,
+ "bnch": "21+027",
+ "startLat": null,
+ "engScal": null,
+ "chanCode_dictText": "三干渠二支干渠",
+ "lockDisc": null,
+ "wagaUse": null,
+ "engManCode_dictText": "雷巷中心管理段",
+ "irrCode": "D00000020",
+ "sort": 9999,
+ "stcd": null,
+ "dsfl": null,
+ "admDep": null,
+ "startDate": null,
+ "note": null,
+ "inEle": null,
+ "pwrTp": null,
+ "updserDate": null,
+ "engManCode": "ENG100016",
+ "chidCount": null,
+ "whthInWat_dictText": "是",
+ "lttd": 31.104025,
+ "whthInWat": "1",
+ "hasImg": false,
+ "stfl": null,
+ "endLat": null,
+ "wagaType": "6",
+ "endLong": null,
+ "gtctrTlmtCd": null,
+ "outEle": null,
+ "wagaName": "三干渠二支干三支渠进水闸",
+ "wagaType_dictText": "进水闸",
+ "hdgrTp": "2",
+ "compDate": "2024-10-01",
+ "startLong": null,
+ "gaorNum": 1,
+ "runStat_dictText": "在用良好",
+ "gateTp": "钢铁",
+ "hdgrTp_dictText": "螺杆式",
+ "insPow": null,
+ "collDate": "2024-11-05"
+ },
+]
+
+
+export default class ShuiZhaLayer extends BaseLayer {
+
+ static LayerName = 'ShuiZhaLayer';
+
+ static SourceName = SourceName;
+
+ getStyle() {
+
+ const ret = clone(ShapeStyle);
+ this._setStyleVisibility(ret);
+ return ret;
+
+ }
+
+ getName() {
+ return ShuiZhaLayer.LayerName;
+ }
+
+ getSubLayers() {
+ return [ShapeStyle.id];
+ }
+
+ async doRefreshLayer(mapCtrl) {
+ const ms = mapCtrl.getSource(SourceName);
+
+ let data =
+ // await PicStPromise.get();
+ [...page1,...page6].map((item)=>{
+ const obj = {...item}
+ obj.lgtd = item.lgtd + 2.9619
+ obj.lttd = item.lttd + 0.2002
+ return obj
+ })
+ ms.setData(parseGeoJSON(data));
+ return true;
+ }
+
+ getFeatureTip(record) {
+ return record.stnm;
+ }
+
+ featureClicked(properties, dispatch) {
+ dispatch.runtime.setFeaturePop({
+ type: InfoPopNames.PicStPop,
+ properties,
+ coordinates: [properties.lgtd, properties.lttd],
+ offsetPop: true,
+ });
+ }
+}
diff --git a/src/views/Home/MapCtrl/mapstyle/shuizhilayer.js b/src/views/Home/MapCtrl/mapstyle/shuizhilayer.js
new file mode 100644
index 0000000..9733490
--- /dev/null
+++ b/src/views/Home/MapCtrl/mapstyle/shuizhilayer.js
@@ -0,0 +1,553 @@
+import clone from "clone";
+import { PicStPromise, TestPicStPromise } from "../../../../models/_/real";
+import { parseGeoJSON } from "../../../../utils/tools";
+import { InfoPopNames } from "../../InfoPops";
+import BaseLayer from "./baselayer";
+
+const SourceName = '水质';
+
+const ShapeStyle = {
+ id: SourceName,
+ type: 'symbol',
+ source: SourceName,
+ layout: {
+ 'icon-allow-overlap': true,
+ 'text-allow-overlap': true,
+ 'icon-image': '水质',
+ 'icon-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 0.4,
+ 14, 0.8,
+ ],
+
+ 'text-allow-overlap': true,
+ 'text-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 10,
+ 14, 14,
+ ],
+ 'text-font': ['Roboto Black'],
+ 'text-field': [
+ 'step',
+ ['zoom'],
+ '',
+ 12, ['get', 'stnm']
+ ],
+ 'text-anchor': 'top',
+ 'text-offset': [0, 1],
+
+ 'visibility': 'none',
+ },
+ paint: {
+ 'text-color': '#fff'
+ }
+};
+
+const page1 = [
+ {
+ "stcd": "24108810",
+ "stnm": "麻城水站",
+ "mvalue": {
+ "exceeded": 0,
+ "data": {
+ "cr6Level": null,
+ "pbMultiple": null,
+ "hgLevelStr": null,
+ "cond": 300,
+ "nh3nLevelStr": null,
+ "vlph": null,
+ "nh3nMultiple": null,
+ "hgMultiple": null,
+ "turbMultiple": null,
+ "wimpLevel": null,
+ "doxStan": 6,
+ "cuMultiple": null,
+ "cr6Stan": 0.05,
+ "codcrLevel": null,
+ "turbLevelStr": null,
+ "tnMultiple": null,
+ "no3LevelStr": null,
+ "zn": null,
+ "no2Level": null,
+ "tocLevel": null,
+ "arsLevel": null,
+ "codmnStan": 4,
+ "waterQualityStr": null,
+ "cuLevel": null,
+ "pbLevelStr": null,
+ "codcr": null,
+ "no2Stan": null,
+ "wimpLevelStr": null,
+ "vlphMultiple": null,
+ "vlphLevelStr": null,
+ "nh3nStan": 0.5,
+ "flevelStr": null,
+ "turb": 6,
+ "toc": null,
+ "fmultiple": null,
+ "wimpMultiple": null,
+ "dox": 11.63,
+ "tnLevel": null,
+ "no3Stan": null,
+ "sb": null,
+ "no3Multiple": null,
+ "znLevelStr": null,
+ "znMultiple": null,
+ "cdLevelStr": null,
+ "cd": null,
+ "ars": null,
+ "cdMultiple": null,
+ "f": null,
+ "cuStan": 1,
+ "fstan": 1,
+ "doxMultiple": null,
+ "arsLevelStr": null,
+ "hgLevel": null,
+ "tmStr": null,
+ "chlaStan": null,
+ "cu": null,
+ "sbLevel": null,
+ "doxLevelStr": "Ⅰ类",
+ "vlphStan": 0.002,
+ "tm": "2025-03-21 08",
+ "tn": null,
+ "znLevel": null,
+ "nh3nLevel": null,
+ "tp": null,
+ "sbMultiple": null,
+ "arsMultiple": null,
+ "sbLevelStr": null,
+ "condLevel": null,
+ "no2Multiple": null,
+ "mainPollutants": null,
+ "no2": null,
+ "arsStan": 0.05,
+ "chlaMultiple": null,
+ "no3": null,
+ "chlaLevelStr": null,
+ "turbLevel": null,
+ "phLevelStr": null,
+ "codcrLevelStr": null,
+ "tpMultiple": null,
+ "cr6": null,
+ "hgStan": 0.00005,
+ "tpStan": 0.1,
+ "condMultiple": null,
+ "codcrMultiple": null,
+ "tpLevelStr": null,
+ "cdLevel": null,
+ "cr6Multiple": null,
+ "codcrStan": 15,
+ "stcd": "24108810 ",
+ "chla": 0.006,
+ "cr6LevelStr": null,
+ "spt": "2025-03-21 08",
+ "tpLevel": null,
+ "tocMultiple": null,
+ "condLevelStr": null,
+ "codmn": null,
+ "wimp": 10.44,
+ "znStan": 1,
+ "codmnLevelStr": null,
+ "codmnLevel": null,
+ "tocLevelStr": null,
+ "pbStan": 0.01,
+ "codmnMultiple": null,
+ "tnStan": 100.5,
+ "cdStan": 0.005,
+ "doxLevel": 1,
+ "tnLevelStr": null,
+ "tocStan": null,
+ "pbLevel": null,
+ "nh3n": null,
+ "cuLevelStr": null,
+ "no3Level": null,
+ "phMultiple": null,
+ "vlphLevel": null,
+ "flevel": null,
+ "pb": null,
+ "sbStan": 1,
+ "ph": 8.25,
+ "no2LevelStr": null,
+ "phLevel": null,
+ "chlaLevel": null,
+ "hg": null
+ },
+ "outMin": null,
+ "outMax": null,
+ "dataList": [
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "cond",
+ "waterQualityStr": null,
+ "value": 300
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "fStan",
+ "waterQualityStr": null,
+ "value": 1
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "vlph",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "doxStan",
+ "waterQualityStr": null,
+ "value": 6
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "cr6Stan",
+ "waterQualityStr": null,
+ "value": 0.05
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "zn",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "codmnStan",
+ "waterQualityStr": null,
+ "value": 4
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "waterQualityStr",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "codcr",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "no2Stan",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "nh3nStan",
+ "waterQualityStr": null,
+ "value": 0.5
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "turb",
+ "waterQualityStr": null,
+ "value": 6
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "toc",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": 1,
+ "label": "dox",
+ "waterQualityStr": "Ⅰ类",
+ "value": 11.63
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "no3Stan",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "sb",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "cd",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "ars",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "f",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "cuStan",
+ "waterQualityStr": null,
+ "value": 1
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "chlaStan",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "cu",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "vlphStan",
+ "waterQualityStr": null,
+ "value": 0.002
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "tn",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "tp",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "arsStan",
+ "waterQualityStr": null,
+ "value": 0.05
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "no2",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "no3",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "cr6",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "hgStan",
+ "waterQualityStr": null,
+ "value": 0.00005
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "tpStan",
+ "waterQualityStr": null,
+ "value": 0.1
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "codcrStan",
+ "waterQualityStr": null,
+ "value": 15
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "chla",
+ "waterQualityStr": null,
+ "value": 0.006
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "codmn",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "wimp",
+ "waterQualityStr": null,
+ "value": 10.44
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "znStan",
+ "waterQualityStr": null,
+ "value": 1
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "pbStan",
+ "waterQualityStr": null,
+ "value": 0.01
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "tnStan",
+ "waterQualityStr": null,
+ "value": 100.5
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "cdStan",
+ "waterQualityStr": null,
+ "value": 0.005
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "tocStan",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "nh3n",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "pb",
+ "waterQualityStr": null,
+ "value": null
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "sbStan",
+ "waterQualityStr": null,
+ "value": 1
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "ph",
+ "waterQualityStr": null,
+ "value": 8.25
+ },
+ {
+ "waterQualityMultiple": null,
+ "waterQuality": null,
+ "label": "hg",
+ "waterQualityStr": null,
+ "value": null
+ }
+ ],
+ "waterQuality": 1,
+ "outMid": null,
+ "waterQualityStr": "Ⅰ类"
+ },
+ "lgtd": 112.071,
+ "lttd": 30.9641
+ }
+]
+
+export default class ShuizhiLayer extends BaseLayer {
+
+ static LayerName = 'ShuizhiLayer';
+
+ static SourceName = SourceName;
+
+ getStyle() {
+
+ const ret = clone(ShapeStyle);
+ this._setStyleVisibility(ret);
+ return ret;
+
+ }
+
+ getName() {
+ return ShuizhiLayer.LayerName;
+ }
+
+ getSubLayers() {
+ return [ShapeStyle.id];
+ }
+
+ async doRefreshLayer(mapCtrl) {
+ const ms = mapCtrl.getSource(SourceName);
+
+ let data =
+ // await PicStPromise.get();
+ [...page1].map((item)=>{
+ const obj = {...item}
+ obj.lgtd = item.lgtd + 2.9619
+ obj.lttd = item.lttd + 0.2002
+ return obj
+ })
+ ms.setData(parseGeoJSON(data));
+ return true;
+ }
+
+ getFeatureTip(record) {
+ return record.stnm;
+ }
+
+ featureClicked(properties, dispatch) {
+ dispatch.runtime.setFeaturePop({
+ type: InfoPopNames.PicStPop,
+ properties,
+ coordinates: [properties.lgtd, properties.lttd],
+ offsetPop: true,
+ });
+ }
+}
diff --git a/src/views/Home/MapCtrl/mapstyle/sljclayer.js b/src/views/Home/MapCtrl/mapstyle/sljclayer.js
new file mode 100644
index 0000000..3faa6bc
--- /dev/null
+++ b/src/views/Home/MapCtrl/mapstyle/sljclayer.js
@@ -0,0 +1,123 @@
+import clone from "clone";
+import { PicStPromise, TestPicStPromise } from "../../../../models/_/real";
+import { parseGeoJSON } from "../../../../utils/tools";
+import { InfoPopNames } from "../../InfoPops";
+import BaseLayer from "./baselayer";
+
+const SourceName = '渗流监测';
+
+const ShapeStyle = {
+ id: SourceName,
+ type: 'symbol',
+ source: SourceName,
+ layout: {
+ 'icon-allow-overlap': true,
+ 'text-allow-overlap': true,
+ 'icon-image': '渗流监测',
+ 'icon-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 0.4,
+ 14, 0.8,
+ ],
+
+ 'text-allow-overlap': true,
+ 'text-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 10,
+ 14, 14,
+ ],
+ 'text-font': ['Roboto Black'],
+ 'text-field': [
+ 'step',
+ ['zoom'],
+ '',
+ 12, ['get', 'stnm']
+ ],
+ 'text-anchor': 'top',
+ 'text-offset': [0, 1],
+
+ 'visibility': 'none',
+ },
+ paint: {
+ 'text-color': '#fff'
+ }
+};
+
+
+export default class SljcLayer extends BaseLayer {
+
+ static LayerName = 'SljcLayer';
+
+ static SourceName = SourceName;
+
+ getStyle() {
+
+ const ret = clone(ShapeStyle);
+ this._setStyleVisibility(ret);
+ return ret;
+
+ }
+
+ getName() {
+ return SljcLayer.LayerName;
+ }
+
+ getSubLayers() {
+ return [ShapeStyle.id];
+ }
+
+ async doRefreshLayer(mapCtrl) {
+ const ms = mapCtrl.getSource(SourceName);
+
+ let data =
+ // await PicStPromise.get();
+ [{
+ "cd": "1",
+ "cd_nm": "WE",
+ "ch": "1",
+ "res_reg_cd": "42118140042-A4",
+ "res_cd": "42118140004",
+ "res_nm": "永丰水库",
+ "res_lon": 115.05541,
+ "res_lat": 31.11106,
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "danger_stat": "非病险水库",
+ "bas_guid": "鄂东五河片区",
+ "label": "2023高标准",
+ "eng_scal": "小(1)型",
+ "value": 0.3,
+ "diff_value": -0.02,
+ "trend": -1,
+ "dt": "2025-05-20",
+ "is_has_data": "y",
+ "max_value": 0.3
+ }].map((item)=>{
+ const obj = {...item}
+ obj.lgtd = item.res_lon
+ obj.lttd = item.res_lat
+ return obj
+ })
+ ms.setData(parseGeoJSON(data));
+ return true;
+ }
+
+ getFeatureTip(record) {
+ return record.stnm;
+ }
+
+ featureClicked(properties, dispatch) {
+ dispatch.runtime.setFeaturePop({
+ type: InfoPopNames.PicStPop,
+ properties,
+ coordinates: [properties.lgtd, properties.lttd],
+ offsetPop: true,
+ });
+ }
+}
diff --git a/src/views/Home/MapCtrl/mapstyle/sources.js b/src/views/Home/MapCtrl/mapstyle/sources.js
index 44434e7..7650557 100644
--- a/src/views/Home/MapCtrl/mapstyle/sources.js
+++ b/src/views/Home/MapCtrl/mapstyle/sources.js
@@ -10,6 +10,17 @@ import PicStLayer from "./picstlayer";
import config from "../../../../config";
import PumpLayer from "./tmp/pumplayer";
import BxSkLayer from "./tmp/bxsk";
+import BxjcLayer from './bxjclayer'
+import SyjcLayer from './syjclayer'
+import SljcLayer from './sljclayer'
+import ByjcLayer from "./byjclayer";
+import ShuiZhaLayer from "./shuizhalayer";
+import BzLayer from "./bzlayer";
+import SbLayer from "./sblayer";
+import QdLayer from "./qdlayer";
+import ShuizhiLayer from "./shuizhilayer";
+import TrsqLayer from "./trsqlayer";
+
const hash = window.location.origin;
@@ -117,6 +128,48 @@ const sources = {
),
+ //新图层
+ [BxjcLayer.SourceName]: {
+ type: 'geojson',
+ data: { type: 'FeatureCollection', features: [] },
+ },
+ [SyjcLayer.SourceName]: {
+ type: 'geojson',
+ data: { type: 'FeatureCollection', features: [] },
+ },
+ [SljcLayer.SourceName]: {
+ type: 'geojson',
+ data: { type: 'FeatureCollection', features: [] },
+ },
+ [ByjcLayer.SourceName]: {
+ type: 'geojson',
+ data: { type: 'FeatureCollection', features: [] },
+ },
+
+ [ShuiZhaLayer.SourceName]: {
+ type: 'geojson',
+ data: { type: 'FeatureCollection', features: [] },
+ },
+ [BzLayer.SourceName]: {
+ type: 'geojson',
+ data: { type: 'FeatureCollection', features: [] },
+ },
+ [SbLayer.SourceName]: {
+ type: 'geojson',
+ data: { type: 'FeatureCollection', features: [] },
+ },
+ [QdLayer.SourceName]: {
+ type: 'geojson',
+ data: { type: 'FeatureCollection', features: [] },
+ },
+ [ShuizhiLayer.SourceName]: {
+ type: 'geojson',
+ data: { type: 'FeatureCollection', features: [] },
+ },
+ [TrsqLayer.SourceName]: {
+ type: 'geojson',
+ data: { type: 'FeatureCollection', features: [] },
+ },
[RealDrpLayer.SourceName]: {
type: 'geojson',
data: { type: 'FeatureCollection', features: [] },
diff --git a/src/views/Home/MapCtrl/mapstyle/syjclayer.js b/src/views/Home/MapCtrl/mapstyle/syjclayer.js
new file mode 100644
index 0000000..79025fd
--- /dev/null
+++ b/src/views/Home/MapCtrl/mapstyle/syjclayer.js
@@ -0,0 +1,782 @@
+import clone from "clone";
+import { PicStPromise, TestPicStPromise } from "../../../../models/_/real";
+import { parseGeoJSON } from "../../../../utils/tools";
+import { InfoPopNames } from "../../InfoPops";
+import BaseLayer from "./baselayer";
+
+const SourceName = '渗压监测';
+
+const ShapeStyle = {
+ id: SourceName,
+ type: 'symbol',
+ source: SourceName,
+ layout: {
+ 'icon-allow-overlap': true,
+ 'text-allow-overlap': true,
+ 'icon-image': '渗压监测',
+ 'icon-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 0.4,
+ 14, 0.8,
+ ],
+
+ 'text-allow-overlap': true,
+ 'text-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 10,
+ 14, 14,
+ ],
+ 'text-font': ['Roboto Black'],
+ 'text-field': [
+ 'step',
+ ['zoom'],
+ '',
+ 12, ['get', 'stnm']
+ ],
+ 'text-anchor': 'top',
+ 'text-offset': [0, 1],
+
+ 'visibility': 'none',
+ },
+ paint: {
+ 'text-color': '#fff'
+ }
+};
+
+
+export default class SyjcLayer extends BaseLayer {
+
+ static LayerName = 'SyjcLayer';
+
+ static SourceName = SourceName;
+
+ getStyle() {
+
+ const ret = clone(ShapeStyle);
+ this._setStyleVisibility(ret);
+ return ret;
+
+ }
+
+ getName() {
+ return SyjcLayer.LayerName;
+ }
+
+ getSubLayers() {
+ return [ShapeStyle.id];
+ }
+
+ async doRefreshLayer(mapCtrl) {
+ const ms = mapCtrl.getSource(SourceName);
+
+ let data =
+ // await PicStPromise.get();
+ [
+ {
+ "cd": "1",
+ "cd_nm": "UPD1",
+ "ch": "0+060",
+ "res_reg_cd": "42118140011-A4",
+ "res_cd": "42118140038",
+ "res_lon": 115.01664,
+ "res_lat": 31.40681,
+ "res_nm": "蛤蟆岗水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 164.8742,
+ "diff_value": -0.0275,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -0.6958,
+ "stcd": "4239",
+ "diff_rz_cd": 5.0554,
+ "max_cd_value": -0.0225,
+ "rz": 165.57,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0737,
+ "trend5": -1,
+ "diff10_value": -0.1204,
+ "trend10": -1,
+ "diff30_value": -0.0633,
+ "trend30": -1
+ },
+ {
+ "cd": "1",
+ "cd_nm": "UPD1",
+ "ch": "0+027",
+ "res_reg_cd": "42118140006-A4",
+ "res_cd": "42118140035",
+ "res_lon": 115.14137,
+ "res_lat": 31.55095,
+ "res_nm": "大堰口水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181112000",
+ "town_nm": "福田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 209.4042,
+ "diff_value": -0.0258,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -2.5358,
+ "stcd": "4159",
+ "diff_rz_cd": 48.6446,
+ "max_cd_value": -0.01,
+ "rz": 211.94,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0983,
+ "trend5": -1,
+ "diff10_value": -0.1329,
+ "trend10": -1,
+ "diff30_value": -0.0954,
+ "trend30": -1
+ },
+ {
+ "cd": "3",
+ "cd_nm": "UPD3",
+ "ch": "0+060",
+ "res_reg_cd": "42118140011-A4",
+ "res_cd": "42118140038",
+ "res_lon": 115.01664,
+ "res_lat": 31.40681,
+ "res_nm": "蛤蟆岗水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 162.6908,
+ "diff_value": -0.0246,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -2.8792,
+ "stcd": "4239",
+ "diff_rz_cd": 5.0554,
+ "max_cd_value": -0.0225,
+ "rz": 165.57,
+ "dt": "2025-05-20",
+ "diff5_value": -0.095,
+ "trend5": -1,
+ "diff10_value": -0.123,
+ "trend10": -1,
+ "diff30_value": -0.0588,
+ "trend30": -1
+ },
+ {
+ "cd": "1",
+ "cd_nm": "UPD1",
+ "ch": "0+038",
+ "res_reg_cd": "42118140014-A4",
+ "res_cd": "42118140022",
+ "res_lon": 115.39612,
+ "res_lat": 31.1526,
+ "res_nm": "何门咀水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 139.2533,
+ "diff_value": -0.0171,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -3.0767,
+ "stcd": "4268",
+ "diff_rz_cd": 24.9337,
+ "max_cd_value": -0.0045,
+ "rz": 142.33,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0675,
+ "trend5": -1,
+ "diff10_value": -0.0627,
+ "trend10": -1,
+ "diff30_value": -0.0342,
+ "trend30": -1
+ },
+ {
+ "cd": "4",
+ "cd_nm": "UPR1",
+ "ch": "0+055",
+ "res_reg_cd": "42118140043-A4",
+ "res_cd": "42118140029",
+ "res_lon": 115.12048,
+ "res_lat": 31.18362,
+ "res_nm": "永红水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181105000",
+ "town_nm": "阎家河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 116.1513,
+ "diff_value": -0.0208,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -3.1187,
+ "stcd": "5320",
+ "diff_rz_cd": 38.1171,
+ "max_cd_value": 0.0009,
+ "rz": 119.27,
+ "dt": "2025-05-20",
+ "diff5_value": -0.082,
+ "trend5": -1,
+ "diff10_value": -0.1333,
+ "trend10": -1,
+ "diff30_value": -0.0041,
+ "trend30": -1
+ },
+ {
+ "cd": "4",
+ "cd_nm": "UPR1",
+ "ch": "0+085",
+ "res_reg_cd": "42118140020-A4",
+ "res_cd": "42118140032",
+ "res_lon": 115.13073,
+ "res_lat": 31.35489,
+ "res_nm": "鸡翅关水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "待除险加固",
+ "label": "2023高标准",
+ "value": 483.1646,
+ "diff_value": -0.0108,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -3.2454,
+ "stcd": "4151",
+ "diff_rz_cd": 14.6887,
+ "max_cd_value": -0.0108,
+ "rz": 486.41,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0742,
+ "trend5": -1,
+ "diff10_value": -0.1258,
+ "trend10": -1,
+ "diff30_value": -0.1708,
+ "trend30": -1
+ },
+ {
+ "cd": "1",
+ "cd_nm": "UPD1",
+ "ch": "0+51.6",
+ "res_reg_cd": "42118140042-A4",
+ "res_cd": "42118140004",
+ "res_lon": 115.05541,
+ "res_lat": 31.11106,
+ "res_nm": "永丰水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181003000",
+ "town_nm": "南湖办事处",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 68.1333,
+ "diff_value": -0.0142,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -3.2767,
+ "stcd": "340",
+ "diff_rz_cd": 23.0069,
+ "max_cd_value": -0.0142,
+ "rz": 71.41,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0109,
+ "trend5": -1,
+ "diff10_value": 0.0087,
+ "trend10": 1,
+ "diff30_value": 0.0683,
+ "trend30": 1
+ },
+ {
+ "cd": "7",
+ "cd_nm": "UPR3",
+ "ch": "0+060",
+ "res_reg_cd": "42118140022-A4",
+ "res_cd": "42118140024",
+ "res_lon": 115.4501,
+ "res_lat": 31.3021,
+ "res_nm": "界岭水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 374.7421,
+ "diff_value": -0.0412,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -3.4679,
+ "stcd": "4276",
+ "diff_rz_cd": 27.0054,
+ "max_cd_value": -0.0171,
+ "rz": 378.21,
+ "dt": "2025-05-20",
+ "diff5_value": -0.1442,
+ "trend5": -1,
+ "diff10_value": -0.1617,
+ "trend10": -1,
+ "diff30_value": -0.1121,
+ "trend30": -1
+ },
+ {
+ "cd": "5",
+ "cd_nm": "UPR2",
+ "ch": "0+085",
+ "res_reg_cd": "42118140011-A4",
+ "res_cd": "42118140038",
+ "res_lon": 115.01664,
+ "res_lat": 31.40681,
+ "res_nm": "蛤蟆岗水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 161.9071,
+ "diff_value": -0.0246,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -3.6629,
+ "stcd": "4239",
+ "diff_rz_cd": 5.0554,
+ "max_cd_value": -0.0225,
+ "rz": 165.57,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0704,
+ "trend5": -1,
+ "diff10_value": -0.0804,
+ "trend10": -1,
+ "diff30_value": -0.1242,
+ "trend30": -1
+ },
+ {
+ "cd": "1",
+ "cd_nm": "UPD1",
+ "ch": "0+145",
+ "res_reg_cd": "42118140015-A4",
+ "res_cd": "42118140042",
+ "res_lon": 114.84792,
+ "res_lat": 31.44124,
+ "res_nm": "黑龙潭水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 121.0708,
+ "diff_value": -0.028,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -4.0992,
+ "stcd": "5356",
+ "diff_rz_cd": 37.8067,
+ "max_cd_value": -0.0254,
+ "rz": 125.17,
+ "dt": "2025-05-20",
+ "diff5_value": -0.1067,
+ "trend5": -1,
+ "diff10_value": -0.115,
+ "trend10": -1,
+ "diff30_value": 0.3258,
+ "trend30": 1
+ },
+ {
+ "cd": "1",
+ "cd_nm": "UPD1",
+ "ch": "0+042",
+ "res_reg_cd": "42118140031-A4",
+ "res_cd": "42118140017",
+ "res_lon": 115.14545,
+ "res_lat": 30.95398,
+ "res_nm": "群建水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181107000",
+ "town_nm": "盐田河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 115.0463,
+ "diff_value": -0.0254,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -4.1337,
+ "stcd": "5331",
+ "diff_rz_cd": 11.2642,
+ "max_cd_value": -0.0238,
+ "rz": 119.18,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0929,
+ "trend5": -1,
+ "diff10_value": -0.1241,
+ "trend10": -1,
+ "diff30_value": -0.1004,
+ "trend30": -1
+ },
+ {
+ "cd": "2",
+ "cd_nm": "UPD2",
+ "ch": "0+060",
+ "res_reg_cd": "42118140011-A4",
+ "res_cd": "42118140038",
+ "res_lon": 115.01664,
+ "res_lat": 31.40681,
+ "res_nm": "蛤蟆岗水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 161.3038,
+ "diff_value": -0.0225,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -4.2662,
+ "stcd": "4239",
+ "diff_rz_cd": 5.0554,
+ "max_cd_value": -0.0225,
+ "rz": 165.57,
+ "dt": "2025-05-20",
+ "diff5_value": -0.085,
+ "trend5": -1,
+ "diff10_value": -0.1233,
+ "trend10": -1,
+ "diff30_value": -0.0695,
+ "trend30": -1
+ },
+ {
+ "cd": "3",
+ "cd_nm": "UPD3",
+ "ch": "0+080",
+ "res_reg_cd": "42118140023-A4",
+ "res_cd": "42118140033",
+ "res_lon": 114.99636,
+ "res_lat": 30.70309,
+ "res_nm": "刘家冲水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 83.9746,
+ "diff_value": -0.0271,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -4.7254,
+ "stcd": "5385",
+ "diff_rz_cd": 29.575,
+ "max_cd_value": -0.0196,
+ "rz": 88.7,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0717,
+ "trend5": -1,
+ "diff10_value": -0.0979,
+ "trend10": -1,
+ "diff30_value": -0.155,
+ "trend30": -1
+ },
+ {
+ "cd": "4",
+ "cd_nm": "UPR1",
+ "ch": "0+142",
+ "res_reg_cd": "42118140015-A4",
+ "res_cd": "42118140042",
+ "res_lon": 114.84792,
+ "res_lat": 31.44124,
+ "res_nm": "黑龙潭水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181114000",
+ "town_nm": "顺河镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 120.4183,
+ "diff_value": -0.0338,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -4.7517,
+ "stcd": "5356",
+ "diff_rz_cd": 37.8067,
+ "max_cd_value": -0.0254,
+ "rz": 125.17,
+ "dt": "2025-05-20",
+ "diff5_value": -0.1488,
+ "trend5": -1,
+ "diff10_value": -0.2259,
+ "trend10": -1,
+ "diff30_value": -0.2617,
+ "trend30": -1
+ },
+ {
+ "cd": "6",
+ "cd_nm": "UPR3",
+ "ch": "0+085",
+ "res_reg_cd": "42118140011-A4",
+ "res_cd": "42118140038",
+ "res_lon": 115.01664,
+ "res_lat": 31.40681,
+ "res_nm": "蛤蟆岗水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181113000",
+ "town_nm": "乘马岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 160.5146,
+ "diff_value": -0.0254,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -5.0554,
+ "stcd": "4239",
+ "diff_rz_cd": 5.0554,
+ "max_cd_value": -0.0225,
+ "rz": 165.57,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0867,
+ "trend5": -1,
+ "diff10_value": -0.0787,
+ "trend10": -1,
+ "diff30_value": -0.0375,
+ "trend30": -1
+ },
+ {
+ "cd": "1",
+ "cd_nm": "UPD1",
+ "ch": "0+030",
+ "res_reg_cd": "42118140022-A4",
+ "res_cd": "42118140024",
+ "res_lon": 115.4501,
+ "res_lat": 31.3021,
+ "res_nm": "界岭水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 372.9888,
+ "diff_value": -0.0233,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -5.2212,
+ "stcd": "4276",
+ "diff_rz_cd": 27.0054,
+ "max_cd_value": -0.0171,
+ "rz": 378.21,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0862,
+ "trend5": -1,
+ "diff10_value": -0.1062,
+ "trend10": -1,
+ "diff30_value": -0.1783,
+ "trend30": -1
+ },
+ {
+ "cd": "3",
+ "cd_nm": "UPD3",
+ "ch": "0+100",
+ "res_reg_cd": "42118140022-A4",
+ "res_cd": "42118140024",
+ "res_lon": 115.4501,
+ "res_lat": 31.3021,
+ "res_nm": "界岭水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181109000",
+ "town_nm": "木子店镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "非病险水库",
+ "label": "2023高标准",
+ "value": 372.6217,
+ "diff_value": -0.0171,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -5.5883,
+ "stcd": "4276",
+ "diff_rz_cd": 27.0054,
+ "max_cd_value": -0.0171,
+ "rz": 378.21,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0954,
+ "trend5": -1,
+ "diff10_value": -0.1379,
+ "trend10": -1,
+ "diff30_value": -0.235,
+ "trend30": -1
+ },
+ {
+ "cd": "1",
+ "cd_nm": "UPD1",
+ "ch": "0+095",
+ "res_reg_cd": "42118140020-A4",
+ "res_cd": "42118140032",
+ "res_lon": 115.13073,
+ "res_lat": 31.35489,
+ "res_nm": "鸡翅关水库",
+ "province_cd": "420000000000",
+ "province_nm": "湖北省",
+ "city_cd": "421100000000",
+ "city_nm": "黄冈市",
+ "county_cd": "421181000000",
+ "county_nm": "麻城市",
+ "town_cd": "421181111000",
+ "town_nm": "黄土岗镇",
+ "bas_guid": "鄂东五河片区",
+ "eng_scal": "小(1)型",
+ "danger_stat": "待除险加固",
+ "label": "2023高标准",
+ "value": 480.7392,
+ "diff_value": -0.0237,
+ "trend": -1,
+ "is_has_data": "y",
+ "diff_rz": -5.6708,
+ "stcd": "4151",
+ "diff_rz_cd": 14.6887,
+ "max_cd_value": -0.0108,
+ "rz": 486.41,
+ "dt": "2025-05-20",
+ "diff5_value": -0.0804,
+ "trend5": -1,
+ "diff10_value": -0.1033,
+ "trend10": -1,
+ "diff30_value": -0.0479,
+ "trend30": -1
+ }
+ ].map((item)=>{
+ const obj = {...item}
+ obj.lgtd = item.res_lon
+ obj.lttd = item.res_lat
+ return obj
+ })
+
+ ms.setData(parseGeoJSON(data));
+ return true;
+ }
+
+ getFeatureTip(record) {
+ return record.stnm;
+ }
+
+ featureClicked(properties, dispatch) {
+ dispatch.runtime.setFeaturePop({
+ type: InfoPopNames.PicStPop,
+ properties,
+ coordinates: [properties.lgtd, properties.lttd],
+ offsetPop: true,
+ });
+ }
+}
diff --git a/src/views/Home/MapCtrl/mapstyle/trsqlayer.js b/src/views/Home/MapCtrl/mapstyle/trsqlayer.js
new file mode 100644
index 0000000..844a724
--- /dev/null
+++ b/src/views/Home/MapCtrl/mapstyle/trsqlayer.js
@@ -0,0 +1,252 @@
+import clone from "clone";
+import { PicStPromise, TestPicStPromise } from "../../../../models/_/real";
+import { parseGeoJSON } from "../../../../utils/tools";
+import { InfoPopNames } from "../../InfoPops";
+import BaseLayer from "./baselayer";
+
+const SourceName = '土壤墒情';
+
+const ShapeStyle = {
+ id: SourceName,
+ type: 'symbol',
+ source: SourceName,
+ layout: {
+ 'icon-allow-overlap': true,
+ 'text-allow-overlap': true,
+ 'icon-image': '土壤墒情',
+ 'icon-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 0.4,
+ 14, 0.8,
+ ],
+
+ 'text-allow-overlap': true,
+ 'text-size': [
+ 'interpolate', ['linear'], ['zoom'],
+ 10, 10,
+ 14, 14,
+ ],
+ 'text-font': ['Roboto Black'],
+ 'text-field': [
+ 'step',
+ ['zoom'],
+ '',
+ 12, ['get', 'stnm']
+ ],
+ 'text-anchor': 'top',
+ 'text-offset': [0, 1],
+
+ 'visibility': 'none',
+ },
+ paint: {
+ 'text-color': '#fff'
+ }
+};
+
+const page1 = [
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-05-01 21:00:00",
+ "comments": "漳河遥测",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "slmmmt": null,
+ "slm60": 0,
+ "exkey": "@",
+ "slm80": 0,
+ "hitrsn": null,
+ "crpty": null,
+ "crpgrwprd": null,
+ "srlslm": null,
+ "stcd": "ZH201417",
+ "slm10": 24,
+ "slm20": 5.3,
+ "slm30": 44.3,
+ "slm40": 44.3,
+ "tm": "2024-08-03 05:00",
+ "slm100": 0,
+ "vtavslm": null,
+ "slmAvg": 24.5
+ },
+ "lttd": 30.8456,
+ "sttp": "SS",
+ "irrCode": "D00000010",
+ "sort": 9999,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 0,
+ "stcd": "ZH201417",
+ "stnm": "马山二组(墒情)",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.2321,
+ "irrCode_dictText": "漳河实验站",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-05-01 21:00:00",
+ "comments": "漳河遥测",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "slmmmt": null,
+ "slm60": 0,
+ "exkey": "@",
+ "slm80": 0,
+ "hitrsn": null,
+ "crpty": null,
+ "crpgrwprd": null,
+ "srlslm": null,
+ "stcd": "ZH201421",
+ "slm10": 12.1,
+ "slm20": 16.2,
+ "slm30": 12.8,
+ "slm40": 12.8,
+ "tm": "2024-08-15 08:00",
+ "slm100": 0,
+ "vtavslm": null,
+ "slmAvg": 13.7
+ },
+ "lttd": 30.8446,
+ "sttp": "SS",
+ "irrCode": "D00000010",
+ "sort": 9999,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 0,
+ "stcd": "ZH201421",
+ "stnm": "槐桥四组(墒情)",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.203,
+ "irrCode_dictText": "漳河实验站",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-05-01 21:00:00",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "slmmmt": null,
+ "slm60": 0,
+ "exkey": "@",
+ "slm80": 0,
+ "hitrsn": null,
+ "crpty": null,
+ "crpgrwprd": null,
+ "srlslm": null,
+ "stcd": "ZH201418",
+ "slm10": 16.5,
+ "slm20": 12.5,
+ "slm30": 0,
+ "slm40": 0,
+ "tm": "2024-09-19 11:00",
+ "slm100": 0,
+ "vtavslm": null,
+ "slmAvg": 14.5
+ },
+ "lttd": 30.8866,
+ "sttp": "SS",
+ "irrCode": "D00000010",
+ "sort": 9999,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "dtmel": 0,
+ "stcd": "ZH201418",
+ "stnm": "双碑一组(墒情)",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.2006,
+ "irrCode_dictText": "漳河实验站",
+ "bsnm": "漳河流域"
+ },
+ {
+ "addvcd": "420800000000000",
+ "moditime": "2022-05-01 21:00:00",
+ "comments": "水资源多孔闸门控制系统",
+ "src": "zhzj",
+ "esstym": "",
+ "mvalue": {
+ "slmmmt": null,
+ "slm60": null,
+ "exkey": "@",
+ "slm80": null,
+ "hitrsn": null,
+ "crpty": null,
+ "crpgrwprd": null,
+ "srlslm": null,
+ "stcd": "4211221031",
+ "slm10": 31,
+ "slm20": 42.6,
+ "slm30": null,
+ "slm40": 26.6,
+ "tm": "2025-05-26 09:00",
+ "slm100": null,
+ "vtavslm": null,
+ "slmAvg": 33.4
+ },
+ "lttd": 30.904191,
+ "sttp": "SS",
+ "irrCode": "D00000010",
+ "sort": 9999,
+ "hasImg": false,
+ "stlc": "荆门市",
+ "stcd": "4211221031",
+ "stnm": "试验站墒情",
+ "addvcd_dictText": "荆门市",
+ "lgtd": 112.087806,
+ "irrCode_dictText": "漳河实验站",
+ "bsnm": "漳河流域"
+ }
+]
+
+export default class TrsqLayer extends BaseLayer {
+
+ static LayerName = 'TrsqLayer';
+
+ static SourceName = SourceName;
+
+ getStyle() {
+
+ const ret = clone(ShapeStyle);
+ this._setStyleVisibility(ret);
+ return ret;
+
+ }
+
+ getName() {
+ return TrsqLayer.LayerName;
+ }
+
+ getSubLayers() {
+ return [ShapeStyle.id];
+ }
+
+ async doRefreshLayer(mapCtrl) {
+ const ms = mapCtrl.getSource(SourceName);
+
+ let data =
+ // await PicStPromise.get();
+ [...page1].map((item)=>{
+ const obj = {...item}
+ obj.lgtd = item.lgtd + 2.9619
+ obj.lttd = item.lttd + 0.2002
+ return obj
+ })
+ ms.setData(parseGeoJSON(data));
+ return true;
+ }
+
+ getFeatureTip(record) {
+ return record.stnm;
+ }
+
+ featureClicked(properties, dispatch) {
+ dispatch.runtime.setFeaturePop({
+ type: InfoPopNames.PicStPop,
+ properties,
+ coordinates: [properties.lgtd, properties.lttd],
+ offsetPop: true,
+ });
+ }
+}
diff --git a/src/views/Home/panels/Aqjc/index.js b/src/views/Home/panels/Aqjc/index.js
index 513690b..2f57d60 100644
--- a/src/views/Home/panels/Aqjc/index.js
+++ b/src/views/Home/panels/Aqjc/index.js
@@ -1,5 +1,6 @@
import React, { useMemo, useState } from 'react';
import useRequest from '../../../../utils/useRequest';
+import { useDispatch, useSelector } from 'react-redux';
import PanelBox from '../../components/PanelBox';
import Table from '@material-ui/core/Table';
@@ -1457,6 +1458,8 @@ const data4 = [
function DrpReal({ style }) {
const [tab,setTab] = useState('1')
+ const dispatch = useDispatch();
+
return (
- setTab('1')}>变形监测
- setTab('2')}>渗压监测
- setTab('3')}>渗流监测
- setTab('4')}>白蚁监测
+ {
+ dispatch.map.setLayerVisible({'BxjcLayer':true});
+ dispatch.map.setLayerVisible({'SyjcLayer':false});
+ dispatch.map.setLayerVisible({'SljcLayer':false});
+ dispatch.map.setLayerVisible({'ByjcLayer':false});
+ setTab('1')
+ }}>变形监测
+ {
+ dispatch.map.setLayerVisible({'BxjcLayer':false});
+ dispatch.map.setLayerVisible({'SyjcLayer':true});
+ dispatch.map.setLayerVisible({'SljcLayer':false});
+ dispatch.map.setLayerVisible({'ByjcLayer':false});
+ setTab('2')
+ }}>渗压监测
+ {
+ dispatch.map.setLayerVisible({'BxjcLayer':false});
+ dispatch.map.setLayerVisible({'SyjcLayer':false});
+ dispatch.map.setLayerVisible({'SljcLayer':true});
+ dispatch.map.setLayerVisible({'ByjcLayer':false});
+ setTab('3')
+ }}>渗流监测
+ {
+ dispatch.map.setLayerVisible({'BxjcLayer':false});
+ dispatch.map.setLayerVisible({'SyjcLayer':false});
+ dispatch.map.setLayerVisible({'SljcLayer':false});
+ dispatch.map.setLayerVisible({'ByjcLayer':true});
+ setTab('4')
+ }}>白蚁监测
}
>