Bläddra i källkod

首页数据处理

DESKTOP-6LTVLN7\Liumouren 2 år sedan
förälder
incheckning
2b8e845e13

+ 0 - 38
public/static/json/home/layout_forest.json

@@ -112,43 +112,5 @@
                 "area": 0.38
                 "area": 0.38
             }
             }
         ]
         ]
-    },
-    {
-        "name": "三林镇",
-        "pid": 310115130000,
-        "data": [
-            {
-                "year": 2018,
-                "type": "林地面积",
-                "area": 1.44
-            },
-            {
-                "year": 2018,
-                "type": "公益林面积",
-                "area": 0.33
-            }
-            ,
-            {
-                "year": 2019,
-                "type": "林地面积",
-                "area": 1.42
-            },
-            {
-                "year": 2019,
-                "type": "公益林面积",
-                "area": 0.37
-            }
-            ,
-            {
-                "year": 2020,
-                "type": "林地面积",
-                "area": 1.46
-            },
-            {
-                "year": 2020,
-                "type": "公益林面积",
-                "area": 0.38
-            }
-        ]
     }
     }
 ]
 ]

+ 84 - 3
public/static/json/home/layout_land.json

@@ -66,17 +66,98 @@
             {
             {
                 "year": 2018,
                 "year": 2018,
                 "type": "土地资源面积",
                 "type": "土地资源面积",
-                "area": 170
+                "area": 22.64
             },
             },
             {
             {
                 "year": 2019,
                 "year": 2019,
                 "type": "土地资源面积",
                 "type": "土地资源面积",
-                "area": 170
+                "area": 22.66
             },
             },
             {
             {
                 "year": 2020,
                 "year": 2020,
                 "type": "土地资源面积",
                 "type": "土地资源面积",
-                "area": 170
+                "area": 22.66
+            }
+        ]
+    },
+    {
+        "name": "泥城镇",
+        "pid": 310115140000,
+        "data": [
+            {
+                "year": 2018,
+                "type": "基本农田面积",
+                "area": 13.40
+            },
+            {
+                "year": 2019,
+                "type": "基本农田面积",
+                "area": 13.42
+            },
+            {
+                "year": 2020,
+                "type": "基本农田面积",
+                "area": 13.41
+            },
+            {
+                "year": 2018,
+                "type": "减量化面积",
+                "area": 1.97
+            },
+            {
+                "year": 2019,
+                "type": "减量化面积",
+                "area": 1.99
+            },
+            {
+                "year": 2020,
+                "type": "减量化面积",
+                "area": 2.01
+            },
+            {
+                "year": 2018,
+                "type": "带征地",
+                "area": 0
+            },
+            {
+                "year": 2019,
+                "type": "带征地",
+                "area": 0
+            },
+            {
+                "year": 2020,
+                "type": "带征地",
+                "area": 0
+            },
+            {
+                "year": 2018,
+                "type": "设施农用地",
+                "area": 0.04
+            },
+            {
+                "year": 2019,
+                "type": "设施农用地",
+                "area": 0.05
+            },
+            {
+                "year": 2020,
+                "type": "设施农用地",
+                "area": 0.04
+            },
+            {
+                "year": 2018,
+                "type": "土地资源面积",
+                "area": 15.41
+            },
+            {
+                "year": 2019,
+                "type": "土地资源面积",
+                "area": 15.46
+            },
+            {
+                "year": 2020,
+                "type": "土地资源面积",
+                "area": 15.46
             }
             }
         ]
         ]
     }
     }

+ 18 - 5
src/components/common/TagTableCard.vue

@@ -9,7 +9,9 @@
         @click.stop="clickStop()"
         @click.stop="clickStop()"
       >
       >
         <div>{{ echartData[0].title }}</div>
         <div>{{ echartData[0].title }}</div>
-        <div>{{ echartData[0].value }}<span>公顷</span></div>
+        <div>
+          {{ echartData[0].value ? echartData[0].value.toFixed(2) : '--' }}<span>{{ echartData[0].unit }}</span>
+        </div>
       </div>
       </div>
       <div
       <div
         class="card card2"
         class="card card2"
@@ -18,11 +20,18 @@
         @click.stop="clickStop()"
         @click.stop="clickStop()"
       >
       >
         <div>{{ echartData[1].title }}</div>
         <div>{{ echartData[1].title }}</div>
-        <div>{{ echartData[1].value }}<span>公顷</span></div>
+        <div>
+          {{ echartData[1].value ? echartData[1].value.toFixed(2) : '--' }}<span>{{ echartData[1].unit }}</span>
+        </div>
       </div>
       </div>
     </div>
     </div>
     <div>
     <div>
-      <TagCard :data="echartData[4]" :index="4" :chartCardDataIndex="mousemoveIndex" @changeMousemoveIndex="mousemoveEvent"></TagCard>
+      <TagCard
+        :data="echartData[4]"
+        :index="4"
+        :chartCardDataIndex="mousemoveIndex"
+        @changeMousemoveIndex="mousemoveEvent"
+      ></TagCard>
     </div>
     </div>
     <div class="displayFlex-c">
     <div class="displayFlex-c">
       <div
       <div
@@ -32,7 +41,9 @@
         @click.stop="clickStop()"
         @click.stop="clickStop()"
       >
       >
         <div style="text-align: right">{{ echartData[2].title }}</div>
         <div style="text-align: right">{{ echartData[2].title }}</div>
-        <div>{{ echartData[2].value }}<span>公顷</span></div>
+        <div>
+          {{ echartData[2].value ? echartData[2].value.toFixed(2) : '--' }}<span>{{ echartData[2].unit }}</span>
+        </div>
       </div>
       </div>
       <div
       <div
         class="card card4"
         class="card card4"
@@ -41,7 +52,9 @@
         @click.stop="clickStop()"
         @click.stop="clickStop()"
       >
       >
         <div style="text-align: right">{{ echartData[3].title }}</div>
         <div style="text-align: right">{{ echartData[3].title }}</div>
-        <div>{{ echartData[3].value }}<span>公顷</span></div>
+        <div>
+          {{ echartData[3].value ? echartData[3].value.toFixed(2) : '--' }}<span>{{ echartData[3].unit }}</span>
+        </div>
       </div>
       </div>
     </div>
     </div>
     <div class="borders"></div>
     <div class="borders"></div>

+ 2 - 2
src/components/layout/MenuCard.vue

@@ -199,9 +199,9 @@ export default {
                       if (listMap["全部"][categoryDataKeys]) {
                       if (listMap["全部"][categoryDataKeys]) {
                         categoryDataItemData.valueData.forEach((valueIndexItem, index) => {
                         categoryDataItemData.valueData.forEach((valueIndexItem, index) => {
                           if (listMap["全部"][categoryDataKeys].valueData[index]) {
                           if (listMap["全部"][categoryDataKeys].valueData[index]) {
-                            listMap["全部"][categoryDataKeys].valueData[index] += Number(valueIndexItem);
+                            listMap["全部"][categoryDataKeys].valueData[index] += Math.floor(valueIndexItem);
                           } else {
                           } else {
-                            listMap["全部"][categoryDataKeys].valueData[index] = Number(valueIndexItem);
+                            listMap["全部"][categoryDataKeys].valueData[index] = Math.floor(valueIndexItem);
                           }
                           }
                         });
                         });
                       } else {
                       } else {

+ 407 - 162
src/config/common.js

@@ -567,7 +567,7 @@ export const menuOnLine = {
       gotoPageInfo: {
       gotoPageInfo: {
         index: "2",
         index: "2",
         subIndex: "1",
         subIndex: "1",
-        name: "土地资源",
+        name: "土地资源"
       },
       },
       topSolt: {
       topSolt: {
         commonName: "TagTableCard",
         commonName: "TagTableCard",
@@ -576,45 +576,76 @@ export const menuOnLine = {
           {
           {
             title: "基本农田面积",
             title: "基本农田面积",
             value: 150,
             value: 150,
-            unit: "公顷",
-            categoryData: ["2019", "2020", "2021"],
-            valueData: [100, 120, 150],
+            unit: "km²",
+            categoryData: [
+              "2019",
+              "2020",
+              "2021"
+            ],
+            valueData: [
+              100,
+              120,
+              150
+            ]
           },
           },
           {
           {
-            title: "储备土地面积",
+            title: "带征地",
             value: 250,
             value: 250,
-            unit: "公顷",
-            categoryData: ["2019", "2020", "2021"],
-            valueData: [2000, 220, 250],
+            unit: "km²",
+            categoryData: [
+              "2019",
+              "2020",
+              "2021"
+            ],
+            valueData: [
+              2000,
+              220,
+              250
+            ]
           },
           },
           {
           {
             title: "减量化面积",
             title: "减量化面积",
             value: 350,
             value: 350,
-            unit: "公顷",
-            categoryData: ["2019", "2020", "2021"],
-            valueData: [300, 20, 350],
+            unit: "km²",
+            categoryData: [
+              "2019",
+              "2020",
+              "2021"
+            ],
+            valueData: [
+              300,
+              20,
+              350
+            ]
           },
           },
           {
           {
-            title: "一般耕地面积",
+            title: "设施农用地",
             value: 450,
             value: 450,
-            unit: "公顷",
-            categoryData: ["2019", "2020", "2021"],
-            valueData: [40, 420, 450],
+            unit: "km²",
+            categoryData: [
+              "2019",
+              "2020",
+              "2021"
+            ],
+            valueData: [
+              40,
+              420,
+              450
+            ]
           },
           },
           {
           {
             type: "tb",
             type: "tb",
             title: "土地资源面积",
             title: "土地资源面积",
-            value: 450,
-            valueData: [172],
-            unit: "公顷",
-            categoryData: ["2019", "2020", "2021"],
-            valueData: [40, 420, 450],
-          },
-        ],
+            valueData: [
+              172
+            ],
+            unit: "km²"
+          }
+        ]
       },
       },
       bottomSolt: {
       bottomSolt: {
-        commonName: "ChartCard",
-      },
+        commonName: "ChartCard"
+      }
     },
     },
     {
     {
       type: "card",
       type: "card",
@@ -625,7 +656,7 @@ export const menuOnLine = {
       gotoPageInfo: {
       gotoPageInfo: {
         index: "2",
         index: "2",
         subIndex: "2",
         subIndex: "2",
-        name: "水资源",
+        name: "水资源"
       },
       },
       topSolt: {
       topSolt: {
         commonName: "TagCard",
         commonName: "TagCard",
@@ -634,29 +665,53 @@ export const menuOnLine = {
           {
           {
             type: "tb",
             type: "tb",
             title: "水域面积",
             title: "水域面积",
-            unit: "公顷",
-            categoryData: ["2019", "2020", "2021"],
-            valueData: [40, 420, 654],
+            unit: "km²",
+            categoryData: [
+              "2019",
+              "2020",
+              "2021"
+            ],
+            valueData: [
+              40,
+              420,
+              654
+            ]
           },
           },
           {
           {
             type: "tb",
             type: "tb",
             title: "区管河道数量",
             title: "区管河道数量",
             unit: "条",
             unit: "条",
-            categoryData: ["2019", "2020", "2021"],
-            valueData: [400, 420, 654],
+            categoryData: [
+              "2019",
+              "2020",
+              "2021"
+            ],
+            valueData: [
+              400,
+              420,
+              654
+            ]
           },
           },
           {
           {
             type: "tb",
             type: "tb",
             title: "镇管河道数量",
             title: "镇管河道数量",
             unit: "条",
             unit: "条",
-            categoryData: ["2019", "2020", "2021"],
-            valueData: [400, 40, 654],
-          },
-        ],
+            categoryData: [
+              "2019",
+              "2020",
+              "2021"
+            ],
+            valueData: [
+              400,
+              40,
+              654
+            ]
+          }
+        ]
       },
       },
       bottomSolt: {
       bottomSolt: {
-        commonName: "ChartCard",
-      },
+        commonName: "ChartCard"
+      }
     },
     },
     {
     {
       type: "card",
       type: "card",
@@ -667,7 +722,7 @@ export const menuOnLine = {
       gotoPageInfo: {
       gotoPageInfo: {
         index: "2",
         index: "2",
         subIndex: "3",
         subIndex: "3",
-        name: "林地资源",
+        name: "林地资源"
       },
       },
       topSolt: {
       topSolt: {
         commonName: "TagCard",
         commonName: "TagCard",
@@ -676,23 +731,39 @@ export const menuOnLine = {
           {
           {
             type: "lr",
             type: "lr",
             title: "林地面积",
             title: "林地面积",
-            unit: "公顷",
-            categoryData: ["2019", "2020", "2021"],
-            valueData: [40, 420, 654],
+            unit: "km²",
+            categoryData: [
+              "2019",
+              "2020",
+              "2021"
+            ],
+            valueData: [
+              40,
+              420,
+              654
+            ]
           },
           },
           {
           {
             type: "lr",
             type: "lr",
             title: "公益林面积",
             title: "公益林面积",
-            unit: "公顷",
-            categoryData: ["2019", "2020", "2021"],
-            valueData: [400, 420, 654],
-          },
-        ],
+            unit: "km²",
+            categoryData: [
+              "2019",
+              "2020",
+              "2021"
+            ],
+            valueData: [
+              400,
+              420,
+              654
+            ]
+          }
+        ]
       },
       },
       bottomSolt: {
       bottomSolt: {
-        commonName: "ChartCard",
-      },
-    },
+        commonName: "ChartCard"
+      }
+    }
   ],
   ],
   leftW: [
   leftW: [
     [
     [
@@ -710,8 +781,8 @@ export const menuOnLine = {
         gotoPageInfo: {
         gotoPageInfo: {
           index: "3",
           index: "3",
           subIndex: "",
           subIndex: "",
-          name: "综合分析",
-        },
+          name: "综合分析"
+        }
       },
       },
       {
       {
         type: "imageMenu",
         type: "imageMenu",
@@ -727,8 +798,8 @@ export const menuOnLine = {
         gotoPageInfo: {
         gotoPageInfo: {
           index: "3",
           index: "3",
           subIndex: "",
           subIndex: "",
-          name: "综合分析",
-        },
+          name: "综合分析"
+        }
       },
       },
       {
       {
         type: "imageMenu",
         type: "imageMenu",
@@ -744,8 +815,8 @@ export const menuOnLine = {
         gotoPageInfo: {
         gotoPageInfo: {
           index: "3",
           index: "3",
           subIndex: "",
           subIndex: "",
-          name: "综合分析",
-        },
+          name: "综合分析"
+        }
       },
       },
       {
       {
         type: "imageMenu",
         type: "imageMenu",
@@ -761,15 +832,83 @@ export const menuOnLine = {
         gotoPageInfo: {
         gotoPageInfo: {
           index: "3",
           index: "3",
           subIndex: "",
           subIndex: "",
-          name: "综合分析",
-        },
+          name: "综合分析"
+        }
       },
       },
+      {
+        type: "imageMenu",
+        index: 4,
+        title: "一般耕地种林",
+        titleWidth: 81,
+        boxHeight: 236,
+        imageUrl: "/static/images/4.png",
+        menuIndex: "2",
+        subMenuIndex: "1",
+        menuName: "土地资源",
+        position: "left",
+        gotoPageInfo: {
+          index: "3",
+          subIndex: "",
+          name: "综合分析"
+        }
+      },
+      {
+        type: "imageMenu",
+        index: 5,
+        title: "一般耕地抛荒",
+        titleWidth: 81,
+        boxHeight: 236,
+        imageUrl: "/static/images/4.png",
+        menuIndex: "2",
+        subMenuIndex: "1",
+        menuName: "土地资源",
+        position: "left",
+        gotoPageInfo: {
+          index: "3",
+          subIndex: "",
+          name: "综合分析"
+        }
+      },
+      {
+        type: "imageMenu",
+        index: 6,
+        title: "减量化复垦地块后种林",
+        titleWidth: 81,
+        boxHeight: 236,
+        imageUrl: "/static/images/4.png",
+        menuIndex: "2",
+        subMenuIndex: "1",
+        menuName: "土地资源",
+        position: "left",
+        gotoPageInfo: {
+          index: "3",
+          subIndex: "",
+          name: "综合分析"
+        }
+      },
+      {
+        type: "imageMenu",
+        index: 7,
+        title: "减量化复垦地块……",
+        titleWidth: 81,
+        boxHeight: 236,
+        imageUrl: "/static/images/4.png",
+        menuIndex: "2",
+        subMenuIndex: "1",
+        menuName: "土地资源",
+        position: "left",
+        gotoPageInfo: {
+          index: "3",
+          subIndex: "",
+          name: "综合分析"
+        }
+      }
     ],
     ],
     [
     [
       {
       {
         type: "imageMenu",
         type: "imageMenu",
         index: 0,
         index: 0,
-        title: "水域面积",
+        title: "河道被截断或填埋",
         titleWidth: 81,
         titleWidth: 81,
         boxHeight: 236,
         boxHeight: 236,
         imageUrl: "/static/images/2.png",
         imageUrl: "/static/images/2.png",
@@ -780,13 +919,13 @@ export const menuOnLine = {
         gotoPageInfo: {
         gotoPageInfo: {
           index: "3",
           index: "3",
           subIndex: "",
           subIndex: "",
-          name: "综合分析",
-        },
+          name: "综合分析"
+        }
       },
       },
       {
       {
         type: "imageMenu",
         type: "imageMenu",
         index: 1,
         index: 1,
-        title: "区管河道数量",
+        title: "河道范围内有施工",
         titleWidth: 81,
         titleWidth: 81,
         boxHeight: 236,
         boxHeight: 236,
         imageUrl: "/static/images/3.png",
         imageUrl: "/static/images/3.png",
@@ -797,13 +936,13 @@ export const menuOnLine = {
         gotoPageInfo: {
         gotoPageInfo: {
           index: "3",
           index: "3",
           subIndex: "",
           subIndex: "",
-          name: "综合分析",
-        },
+          name: "综合分析"
+        }
       },
       },
       {
       {
         type: "imageMenu",
         type: "imageMenu",
         index: 2,
         index: 2,
-        title: "镇管河道数量",
+        title: "河道周边存在不规范养殖",
         titleWidth: 81,
         titleWidth: 81,
         boxHeight: 236,
         boxHeight: 236,
         imageUrl: "/static/images/1.png",
         imageUrl: "/static/images/1.png",
@@ -814,35 +953,86 @@ export const menuOnLine = {
         gotoPageInfo: {
         gotoPageInfo: {
           index: "3",
           index: "3",
           subIndex: "",
           subIndex: "",
-          name: "综合分析",
-        },
+          name: "综合分析"
+        }
       },
       },
-    ],
-    [
       {
       {
         type: "imageMenu",
         type: "imageMenu",
-        index: 0,
-        title: "林地面积",
+        index: 3,
+        title: "渣土堆放",
         titleWidth: 81,
         titleWidth: 81,
         boxHeight: 236,
         boxHeight: 236,
         imageUrl: "/static/images/1.png",
         imageUrl: "/static/images/1.png",
         menuIndex: "2",
         menuIndex: "2",
-        subMenuIndex: "3",
-        menuName: "林地资源",
+        subMenuIndex: "2",
+        menuName: "资源",
         position: "left",
         position: "left",
         gotoPageInfo: {
         gotoPageInfo: {
           index: "3",
           index: "3",
           subIndex: "",
           subIndex: "",
-          name: "综合分析",
-        },
+          name: "综合分析"
+        }
       },
       },
       {
       {
         type: "imageMenu",
         type: "imageMenu",
-        index: 1,
-        title: "公益林面积",
+        index: 2,
+        title: "垃圾倾倒",
         titleWidth: 81,
         titleWidth: 81,
         boxHeight: 236,
         boxHeight: 236,
-        imageUrl: "/static/images/4.png",
+        imageUrl: "/static/images/1.png",
+        menuIndex: "2",
+        subMenuIndex: "2",
+        menuName: "水资源",
+        position: "left",
+        gotoPageInfo: {
+          index: "3",
+          subIndex: "",
+          name: "综合分析"
+        }
+      },
+      {
+        type: "imageMenu",
+        index: 2,
+        title: "违章搭建",
+        titleWidth: 81,
+        boxHeight: 236,
+        imageUrl: "/static/images/1.png",
+        menuIndex: "2",
+        subMenuIndex: "2",
+        menuName: "水资源",
+        position: "left",
+        gotoPageInfo: {
+          index: "3",
+          subIndex: "",
+          name: "综合分析"
+        }
+      },
+      {
+        type: "imageMenu",
+        index: 2,
+        title: "侵占水体",
+        titleWidth: 81,
+        boxHeight: 236,
+        imageUrl: "/static/images/1.png",
+        menuIndex: "2",
+        subMenuIndex: "2",
+        menuName: "水资源",
+        position: "left",
+        gotoPageInfo: {
+          index: "3",
+          subIndex: "",
+          name: "综合分析"
+        }
+      }
+    ],
+    [
+      {
+        type: "imageMenu",
+        index: 0,
+        title: "储备地块造林",
+        titleWidth: 81,
+        boxHeight: 236,
+        imageUrl: "/static/images/1.png",
         menuIndex: "2",
         menuIndex: "2",
         subMenuIndex: "3",
         subMenuIndex: "3",
         menuName: "林地资源",
         menuName: "林地资源",
@@ -850,27 +1040,27 @@ export const menuOnLine = {
         gotoPageInfo: {
         gotoPageInfo: {
           index: "3",
           index: "3",
           subIndex: "",
           subIndex: "",
-          name: "综合分析",
-        },
+          name: "综合分析"
+        }
       },
       },
       {
       {
         type: "imageMenu",
         type: "imageMenu",
         index: 1,
         index: 1,
-        title: "垃圾堆放",
+        title: "林地被违规占用",
         titleWidth: 81,
         titleWidth: 81,
         boxHeight: 236,
         boxHeight: 236,
         imageUrl: "/static/images/4.png",
         imageUrl: "/static/images/4.png",
         menuIndex: "2",
         menuIndex: "2",
-        subMenuIndex: "4",
-        menuName: "生态资源",
+        subMenuIndex: "3",
+        menuName: "林地资源",
         position: "left",
         position: "left",
         gotoPageInfo: {
         gotoPageInfo: {
           index: "3",
           index: "3",
           subIndex: "",
           subIndex: "",
-          name: "综合分析",
-        },
+          name: "综合分析"
+        }
       }
       }
-    ],
+    ]
   ],
   ],
   main: [
   main: [
     {
     {
@@ -881,8 +1071,8 @@ export const menuOnLine = {
       boxBackground: "rgba(0,39,77,0.6)",
       boxBackground: "rgba(0,39,77,0.6)",
       menuIndex: "1",
       menuIndex: "1",
       position: "top",
       position: "top",
-      minDomWidth: 1500,
-    },
+      minDomWidth: 1500
+    }
   ],
   ],
   right: [
   right: [
     [
     [
@@ -894,6 +1084,10 @@ export const menuOnLine = {
         position: "right",
         position: "right",
         minDomWidth: 1000,
         minDomWidth: 1000,
         columnId: 31,
         columnId: 31,
+        sortField: {
+          field: "c_years",
+          orderByType: 1
+        },
         topSolt: {
         topSolt: {
           commonName: "TagCard",
           commonName: "TagCard",
           commonData: [
           commonData: [
@@ -902,13 +1096,13 @@ export const menuOnLine = {
               title: "资金投入",
               title: "资金投入",
               unit: "万元",
               unit: "万元",
               categoryData: [],
               categoryData: [],
-              valueData: [],
-            },
-          ],
+              valueData: []
+            }
+          ]
         },
         },
         bottomSolt: {
         bottomSolt: {
-          commonName: "ChartCard",
-        },
+          commonName: "ChartCard"
+        }
       },
       },
       {
       {
         type: "card",
         type: "card",
@@ -926,30 +1120,54 @@ export const menuOnLine = {
               title: "资源环境项目",
               title: "资源环境项目",
               value: 172,
               value: 172,
               unit: "个",
               unit: "个",
-              categoryData: ["2019", "2020", "2021"],
-              valueData: [40, 420, 172],
+              categoryData: [
+                "2019",
+                "2020",
+                "2021"
+              ],
+              valueData: [
+                40,
+                420,
+                172
+              ]
             },
             },
             {
             {
               type: "tb",
               type: "tb",
-              title: "实现“五个结合”审计项目",
+              title: "自然资源环境项目",
               value: 156,
               value: 156,
               unit: "个",
               unit: "个",
-              categoryData: ["2019", "2020", "2021"],
-              valueData: [400, 420, 156],
+              categoryData: [
+                "2019",
+                "2020",
+                "2021"
+              ],
+              valueData: [
+                400,
+                420,
+                156
+              ]
             },
             },
             {
             {
               type: "tb",
               type: "tb",
               title: "调查项目",
               title: "调查项目",
               value: 188,
               value: 188,
               unit: "个",
               unit: "个",
-              categoryData: ["2019", "2020", "2021"],
-              valueData: [100, 40, 188],
-            },
-          ],
+              categoryData: [
+                "2019",
+                "2020",
+                "2021"
+              ],
+              valueData: [
+                100,
+                40,
+                188
+              ]
+            }
+          ]
         },
         },
         bottomSolt: {
         bottomSolt: {
-          commonName: "ChartCard",
-        },
+          commonName: "ChartCard"
+        }
       },
       },
       {
       {
         type: "card",
         type: "card",
@@ -966,32 +1184,32 @@ export const menuOnLine = {
         topData: [
         topData: [
           {
           {
             number: 0,
             number: 0,
-            c_wtfl: "--",
+            c_wtfl: "--"
           },
           },
           {
           {
             number: 0,
             number: 0,
-            c_wtfl: "--",
+            c_wtfl: "--"
           },
           },
           {
           {
             number: 0,
             number: 0,
-            c_wtfl: "--",
+            c_wtfl: "--"
           },
           },
           {
           {
             number: 0,
             number: 0,
-            c_wtfl: "--",
+            c_wtfl: "--"
           },
           },
           {
           {
             number: 0,
             number: 0,
-            c_wtfl: "--",
-          },
+            c_wtfl: "--"
+          }
         ],
         ],
         commonName: "TOP",
         commonName: "TOP",
         gotoPageInfo: {
         gotoPageInfo: {
           index: "5",
           index: "5",
           subIndex: "2",
           subIndex: "2",
-          name: "频发问题",
-        },
-      },
+          name: "频发问题"
+        }
+      }
     ],
     ],
     [
     [
       {
       {
@@ -1007,9 +1225,13 @@ export const menuOnLine = {
         pageSize: 5,
         pageSize: 5,
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         commonName: "SUM",
         commonName: "SUM",
-        categoryData: ["2019", "2020", "2021"],
+        categoryData: [
+          "2019",
+          "2020",
+          "2021"
+        ],
         paramJson: {
         paramJson: {
-          sj_select: "1",
+          sj_select: "1"
         },
         },
         topSolt: {
         topSolt: {
           commonName: "TagCard",
           commonName: "TagCard",
@@ -1019,13 +1241,13 @@ export const menuOnLine = {
               title: "土地类疑点",
               title: "土地类疑点",
               unit: "个",
               unit: "个",
               categoryData: [],
               categoryData: [],
-              valueData: [],
-            },
-          ],
+              valueData: []
+            }
+          ]
         },
         },
         bottomSolt: {
         bottomSolt: {
-          commonName: "ChartCard",
-        },
+          commonName: "ChartCard"
+        }
       },
       },
       {
       {
         type: "card",
         type: "card",
@@ -1041,10 +1263,10 @@ export const menuOnLine = {
         pageSize: 5,
         pageSize: 5,
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         paramJson: {
         paramJson: {
-          sj_select: "1",
+          sj_select: "1"
         },
         },
-        topData: [],
-      },
+        topData: []
+      }
     ],
     ],
     [
     [
       {
       {
@@ -1060,9 +1282,13 @@ export const menuOnLine = {
         pageSize: 5,
         pageSize: 5,
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         commonName: "SUM",
         commonName: "SUM",
-        categoryData: ["2019", "2020", "2021"],
+        categoryData: [
+          "2019",
+          "2020",
+          "2021"
+        ],
         paramJson: {
         paramJson: {
-          sj_select: "2",
+          sj_select: "2"
         },
         },
         topSolt: {
         topSolt: {
           commonName: "TagCard",
           commonName: "TagCard",
@@ -1072,13 +1298,13 @@ export const menuOnLine = {
               title: "水资源类疑点",
               title: "水资源类疑点",
               unit: "个",
               unit: "个",
               categoryData: [],
               categoryData: [],
-              valueData: [],
-            },
-          ],
+              valueData: []
+            }
+          ]
         },
         },
         bottomSolt: {
         bottomSolt: {
-          commonName: "ChartCard",
-        },
+          commonName: "ChartCard"
+        }
       },
       },
       {
       {
         type: "card",
         type: "card",
@@ -1094,11 +1320,12 @@ export const menuOnLine = {
         pageSize: 5,
         pageSize: 5,
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         paramJson: {
         paramJson: {
-          sj_select: "2",
+          sj_select: "2"
         },
         },
-        topData: [],
-      },
-    ], [
+        topData: []
+      }
+    ],
+    [
       {
       {
         type: "card",
         type: "card",
         title: "林地类问题",
         title: "林地类问题",
@@ -1112,9 +1339,13 @@ export const menuOnLine = {
         pageSize: 5,
         pageSize: 5,
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         commonName: "SUM",
         commonName: "SUM",
-        categoryData: ["2019", "2020", "2021"],
+        categoryData: [
+          "2019",
+          "2020",
+          "2021"
+        ],
         paramJson: {
         paramJson: {
-          sj_select: "3",
+          sj_select: "3"
         },
         },
         topSolt: {
         topSolt: {
           commonName: "TagCard",
           commonName: "TagCard",
@@ -1124,13 +1355,13 @@ export const menuOnLine = {
               title: "林地类疑点",
               title: "林地类疑点",
               unit: "个",
               unit: "个",
               categoryData: [],
               categoryData: [],
-              valueData: [],
-            },
-          ],
+              valueData: []
+            }
+          ]
         },
         },
         bottomSolt: {
         bottomSolt: {
-          commonName: "ChartCard",
-        },
+          commonName: "ChartCard"
+        }
       },
       },
       {
       {
         type: "card",
         type: "card",
@@ -1146,11 +1377,12 @@ export const menuOnLine = {
         pageSize: 5,
         pageSize: 5,
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         paramJson: {
         paramJson: {
-          sj_select: "3",
+          sj_select: "3"
         },
         },
-        topData: [],
-      },
-    ], [
+        topData: []
+      }
+    ],
+    [
       {
       {
         type: "card",
         type: "card",
         title: "生态类问题",
         title: "生态类问题",
@@ -1164,9 +1396,13 @@ export const menuOnLine = {
         pageSize: 5,
         pageSize: 5,
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         commonName: "SUM",
         commonName: "SUM",
-        categoryData: ["2019", "2020", "2021"],
+        categoryData: [
+          "2019",
+          "2020",
+          "2021"
+        ],
         paramJson: {
         paramJson: {
-          sj_select: "4",
+          sj_select: "4"
         },
         },
         topSolt: {
         topSolt: {
           commonName: "TagCard",
           commonName: "TagCard",
@@ -1176,13 +1412,13 @@ export const menuOnLine = {
               title: "生态类疑点",
               title: "生态类疑点",
               unit: "个",
               unit: "个",
               categoryData: [],
               categoryData: [],
-              valueData: [],
-            },
-          ],
+              valueData: []
+            }
+          ]
         },
         },
         bottomSolt: {
         bottomSolt: {
-          commonName: "ChartCard",
-        },
+          commonName: "ChartCard"
+        }
       },
       },
       {
       {
         type: "card",
         type: "card",
@@ -1198,10 +1434,10 @@ export const menuOnLine = {
         pageSize: 5,
         pageSize: 5,
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         paramJson: {
         paramJson: {
-          sj_select: "4",
+          sj_select: "4"
         },
         },
-        topData: [],
-      },
+        topData: []
+      }
     ]
     ]
   ],
   ],
   rightW: [
   rightW: [
@@ -1222,7 +1458,12 @@ export const menuOnLine = {
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         commonName: "ALLLIST",
         commonName: "ALLLIST",
         paramJson: {
         paramJson: {
-          sj_select: ["1", "2", "3", "4"]
+          sj_select: [
+            "1",
+            "2",
+            "3",
+            "4"
+          ]
         },
         },
         topSolt: {
         topSolt: {
           commonName: "TagCard",
           commonName: "TagCard",
@@ -1232,24 +1473,27 @@ export const menuOnLine = {
               title: "土地资源问题",
               title: "土地资源问题",
               value: 0,
               value: 0,
               unit: "个"
               unit: "个"
-            }, {
+            },
+            {
               type: "lr",
               type: "lr",
               title: "水资源问题",
               title: "水资源问题",
               value: 0,
               value: 0,
               unit: "个"
               unit: "个"
-            }, {
+            },
+            {
               type: "lr",
               type: "lr",
               title: "林地资源问题",
               title: "林地资源问题",
               value: 0,
               value: 0,
               unit: "个"
               unit: "个"
-            }, {
+            },
+            {
               type: "lr",
               type: "lr",
               title: "生态资源问题",
               title: "生态资源问题",
               value: 0,
               value: 0,
               unit: "个"
               unit: "个"
-            },
+            }
           ]
           ]
-        },
+        }
       },
       },
       {
       {
         type: "card",
         type: "card",
@@ -1266,8 +1510,9 @@ export const menuOnLine = {
         pageSize: 10,
         pageSize: 10,
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         paramJson: {},
         paramJson: {},
-        topData: [],
-      }, {
+        topData: []
+      },
+      {
         type: "card",
         type: "card",
         title: "历年频发问题TOP10",
         title: "历年频发问题TOP10",
         titleWidth: 85,
         titleWidth: 85,
@@ -1282,7 +1527,7 @@ export const menuOnLine = {
         pageSize: 10,
         pageSize: 10,
         field: "c_zdsjsx",
         field: "c_zdsjsx",
         paramJson: {},
         paramJson: {},
-        topData: [],
+        topData: []
       }
       }
     ]
     ]
   ]
   ]