浏览代码

faet:修改编辑地块删除bug

wangsisi 4 月之前
父节点
当前提交
41be915ecf
共有 2 个文件被更改,包括 16 次插入7 次删除
  1. 3 1
      src/views/authentic/authenticMap.js
  2. 13 6
      src/views/authentic/index.vue

+ 3 - 1
src/views/authentic/authenticMap.js

@@ -271,6 +271,7 @@ class AuthenticMap {
 
   //选中点位方法
   selectPonitFun(map,evt){
+    let that = this
     map.forEachFeatureAtPixel(evt.pixel, function (f, layer) {
       if (
         layer instanceof VectorLayer &&
@@ -286,6 +287,7 @@ class AuthenticMap {
             ElMessage.warning("编辑中")
           }else{
             ElMessage.success("已选择该点位")
+            // that.kmap.polygonStyle(f,'aaa');
             mapData.selectPoint = coordinates
           }
         }
@@ -365,7 +367,7 @@ class AuthenticMap {
       // 更新多边形的坐标
       point.getGeometry().setCoordinates(coordinates); // 更新几何形状
     }
-    callback && callback()
+    callback && callback(index)
   }
 
   // 移除点的功能

+ 13 - 6
src/views/authentic/index.vue

@@ -359,7 +359,7 @@ const handleEdit = () => {
     typeStr.value = "edit";
     disabledForm.value = false;
     mapData.disabledForm = false;
-    authenticMap.startModify();
+    authenticMap.startModify('edit');
 };
 
 // 取消
@@ -389,6 +389,9 @@ const onSubmit = () => {
     ruleFormRef.value.validate((valid, fields) => {
         if (valid) {
             formInline.mu = formInline.mu.split("亩")[0];
+            if(heightArr.value.length>0){
+                formInline.height = heightArr.value
+            }
             VE_API.authentic.saveData(formInline).then((res) => {
                 store.commit("authentic/SET_ISEDIT_STATUS", false);
                 isUpdata.value = false;
@@ -524,8 +527,9 @@ const handleAdd = () => {
 
 // 删除点
 const handleDeletePoint = () => {
-    authenticMap.removePoint(() => {
+    authenticMap.removePoint((index) => {
         updatePointList(typeStr.value);
+        heightArr.value.splice(index,1)
     });
 };
 
@@ -588,13 +592,16 @@ const getDetailsData = (id) => {
 
         data.createDate = dateFormat(new Date(data.createDate), "YYYY-mm-dd HH:MM:SS");
         updateFormInline({ ...data });
-        formInline.mu = data.mu + "亩";
-
         //   经纬度列表
         let arr = JSON.parse(data.points);
         // 删除最后数组最后一项闭合数据
         arr.pop();
         pointList.value = arr;
+        if(data.height.length>0){
+            heightArr.value = data.height
+            store.commit("authentic/SET_ISEDIT_STATUS", true);
+        }
+        formInline.mu = data.mu + "亩";
     });
 };
 
@@ -607,7 +614,7 @@ const updatePointList = (type) => {
     result.pop();
     pointList.value = result;
 
-    //判断是否是导入数据
+    //判断是否是导入数据
     if (store.state.authentic.isEditStatus) {
         const arr = pointList.value.map((item, index) => {
             return [...item, heightArr.value[index]];
@@ -637,7 +644,7 @@ watch(
             isUpdata.value = true;
             formInline.createDate = dateFormat(new Date(), "YYYY-mm-dd HH:MM:SS");
             updatePointList("add");
-            authenticMap.startModify();
+            authenticMap.startModify('add');
         }
     }
 );