Bella пре 2 година
родитељ
комит
2c5a9a7548
2 измењених фајлова са 5 додато и 5 уклоњено
  1. 3 3
      src/components/map/MapHolder.vue
  2. 2 2
      src/components/popup/CaseAuditPopup.vue

+ 3 - 3
src/components/map/MapHolder.vue

@@ -467,7 +467,7 @@ export default {
           .tiledMapLayer({
             tileSize: 512,
             url: systemConfig.imageryLayerSat2018s2.url,
-            maxNativeZoom:7
+            maxNativeZoom: 7,
           })
           .addTo(map2DViewer.map);
         map2DViewer.jlControl = L.control
@@ -594,7 +594,7 @@ export default {
         .tiledMapLayer({
           tileSize: 512,
           url: systemConfig.blueBlackMap.url,
-          maxNativeZoom:7
+          maxNativeZoom: 7,
         })
         .addTo(map2DViewer.map);
       map2DViewer.layers["darkmap"] = layer;
@@ -603,7 +603,7 @@ export default {
       let imageryLayer = L.esri.tiledMapLayer({
         tileSize: 512,
         url: systemConfig.imageryLayer.url,
-        maxNativeZoom:7
+        maxNativeZoom: 7,
       });
       map2DViewer.layers["imagery"] = imageryLayer;
       // 加载遥感影像sat-2018s2

+ 2 - 2
src/components/popup/CaseAuditPopup.vue

@@ -72,13 +72,14 @@ export default {
   props: ["tableObj"],
   data() {
     return {
+      status:"normal",
       menuData: {
         type: "chart",
         title: "属性",
         boxWidth: "300",
         boxHeight: "320",
       },
-      status: "normal",
+
       // tableObj: {
       //   镇域名称: "--",
       //   面积: "--",
@@ -102,7 +103,6 @@ export default {
   },
   watch: {
     getPopupStatus(val) {
-
       if (val.index === 1 && val.subIndex === 0) {
         this.status = "special";
       }