Ver Fonte

fix:修改新建后的地块没有idbug

wangsisi há 4 meses atrás
pai
commit
4200d548e9
1 ficheiros alterados com 5 adições e 2 exclusões
  1. 5 2
      src/views/authentic/authenticMap.js

+ 5 - 2
src/views/authentic/authenticMap.js

@@ -386,8 +386,11 @@ class AuthenticMap {
     if(type==='add') {
       features = [mapData.point]
     }else{
-      console.log(mapData.curPointData)
-      features = [this.kmap.getFeatureById(mapData.curPointData.id)];
+      if(mapData.curPointData.id){
+        features = [this.kmap.getFeatureById(mapData.curPointData.id)];
+      }else{
+        features = [mapData.point]
+      }
     }
     let geometryArr = [];
     let area = 0;