|
@@ -228,6 +228,7 @@ import { dateFormat } from "@/utils/date_util";
|
|
|
import { exportExcel, parseMultiPolygon } from "@/utils/index";
|
|
|
import { useStore } from "vuex";
|
|
|
import Pdf from "./Pdf";
|
|
|
+import {Feature} from "ol";
|
|
|
const pdfShow = ref(false);
|
|
|
const mouseStyle = ref(1);
|
|
|
const router = useRouter();
|
|
@@ -451,15 +452,15 @@ const onSuccess = (res) => {
|
|
|
disabledForm.value = false;
|
|
|
formInline.createDate = dateFormat(new Date(), "YYYY-mm-dd HH:MM:SS");
|
|
|
const geom = [{ featureWkt: res.data.geom, ...res.data }];
|
|
|
- authenticMap.setAreaGeometry(geom);
|
|
|
+ let featureList = authenticMap.setAreaGeometry(geom);
|
|
|
authenticMap.fit([res.data.geom]);
|
|
|
- updatePointList("upload",geom[0]);
|
|
|
+ updatePointList("upload", geom[0]);
|
|
|
heightArr.value = res.data.height;
|
|
|
const arr = pointList.value.map((item, index) => {
|
|
|
return [...item, res.data.height[index]];
|
|
|
});
|
|
|
getArea(arr);
|
|
|
- authenticMap.startModify("upload");
|
|
|
+ authenticMap.startModify("upload", featureList[0]);
|
|
|
uploadRef.value.clearFiles();
|
|
|
} else {
|
|
|
ElMessage.error("上传失败");
|