citygis-lhh 3 miesięcy temu
rodzic
commit
aafab61861

+ 2 - 2
src/stores/mapStore.js

@@ -147,9 +147,9 @@ export const useMapStore = defineStore('mapStore', () => {
         setCurrentToolSelectArray(item);
         if (selectPartKey.value?.length > 0) {
           if (selectPartKey.value == '浦东新区') {
-            regionZone('浦东');
+            regionZone('浦东新区');
           } else {
-            regionZone(selectPartKey.value.split('区')[0]);
+            regionZone(selectPartKey.value);
           }
         }
       }

+ 2 - 2
src/views/DataCenterGis/components/RightPanel.vue

@@ -275,9 +275,9 @@ const handleSelect = (key) => {
   }
   mapStore.selectPartKey = key;
   if (key == '浦东新区') {
-    regionZone('浦东');
+    regionZone('浦东新区');
   } else {
-    regionZone(key.split('区')[0]);
+    regionZone(key);
   }
 };