Browse Source

Merge branch 'master' of http://www.sysuimars.cn:3000/feiniao/feiniao-pc-vue

wangsisi 4 months ago
parent
commit
b1f0319f48
3 changed files with 114 additions and 47 deletions
  1. 2 2
      src/utils/ol-map/Map.js
  2. 33 21
      src/views/authentic/Pdf.vue
  3. 79 24
      src/views/authentic/pdfMap.js

+ 2 - 2
src/utils/ol-map/Map.js

@@ -365,13 +365,13 @@ class Map {
 		vm.polygonLayer.source.addFeatures(new GeoJSON().readFeatures(geometry))
 	}
 
-	setLayerWkt(wkt,data,isView) {
+	setLayerWkt(wkt,data,isView, padding) {
 		const vm = this
 		let f = new Feature({geometry:new WKT().readGeometry(wkt),...data})
 		const extent = f.getGeometry().getExtent()
 		vm.polygonLayer.source.addFeature(f)
 		if(isView){
-			vm.map.getView().fit(extent, { padding: [20, 20, 20, 20] });
+			vm.map.getView().fit(extent, { padding: padding || [20, 20, 20, 20] });
 		}
 	}
 

+ 33 - 21
src/views/authentic/Pdf.vue

@@ -3,20 +3,19 @@
       class="my-dialog"
       fullscreen
       append-to-body
-      destroy-on-close
       :model-value="showDialog"
       @close="closeDialog()"
   >
-    <div class="pdf-dialog-box" >
-      <div class="title" >
-        <div class="name" ></div>
-        <div class="pdf-close cursor-pointer" @click="closeDialog"></div>
-      </div>
-      <div class="pdf-my-body" >
-        <div class="pdfBox" id="printTest" >
-          <div class="a4">
+    <div  class="pdf-main">
+      <div id="printTest" class="pdf-dialog-box">
+        <div class="title" >
+          <div class="name" ></div>
+          <div class="pdf-close cursor-pointer" @click="closeDialog"></div>
+        </div>
+        <div class="pdf-my-body"  >
+        <div class="pdfBox" >
+          <div class="a4" >
             <div class="a4_title">确权单</div>
-            <div class="a4_sub_title">111</div>
             <table class="a4_table" border=1 style="border-collapse: collapse;">
               <tr>
                 <td class="name">农场地址</td>
@@ -41,14 +40,18 @@
                 <td class="text">{{rowData.masterTel}}</td>
               </tr>
             </table>
-            <div class="a4_sub_title">果树分布图</div>
-              <img class="img" v-if="imgUrl"  :src="imgUrl" />
-              <div class="img" v-else ref="mapRef" id="mapRefId">
-              </div>
+            <div class="a4_sub_title">地块四至图</div>
+            <img class="img" v-if="imgUrl"  :src="imgUrl" />
+            <div class="img" v-else ref="mapRef" id="mapRefId"></div>
+            <div class="signature">签名:______________</div>
           </div>
         </div>
       </div>
-      <button class="yes-events" v-print="'#printTest'">去打印</button>
+        <div style="text-align: left">
+          <el-button size="large" color="#626aef"    v-print="'#printTest'">打印</el-button>
+<!--          <el-button size="large" color="#626aef"  @click="closeDialog">关闭</el-button>-->
+        </div>
+      </div>
 
     </div>
   </el-dialog>
@@ -129,7 +132,7 @@ onMounted(()=>{
     pdfMap.initMap(data,mapRef.value)
     setTimeout(function(){
       toImg(pdfMap.kmap.map)
-    },1000)
+    },2000)
   })
 })
 
@@ -139,9 +142,7 @@ onMounted(()=>{
 $title-height:0px;
 $body-height:calc(100% - $title-height);
 
-.pdf-dialog-box{
-  font-family: PingFangSC-Regular, PingFang SC;
-  position: absolute;
+.pdf-main{
   left: 25%;
   right: 25%;
   top:10%;
@@ -150,7 +151,12 @@ $body-height:calc(100% - $title-height);
   box-shadow: 0px 0px 20px 0px #00FFF0;
   border-radius: 4px;
   border: 2px solid rgba(81,233,240,0.6);
-
+  position: absolute;
+}
+.pdf-dialog-box{
+  font-family: PingFangSC-Regular, PingFang SC;
+  width: 100%;
+  height: 100%;
   .title{
     width: 100%;
     height: $title-height;
@@ -169,7 +175,6 @@ $body-height:calc(100% - $title-height);
       height: 22px;
     }
     .pdf-close{
-      margin-right: 20px;
       width: 16px;
       height: 16px;
       background-image: url("@/assets/img/close.png");
@@ -251,6 +256,13 @@ $body-height:calc(100% - $title-height);
       height: 500px;
       z-index: 1000;
     }
+    .signature{
+      width:595px;
+      height: 20px;
+      z-index: 1000;
+      margin-top: 40px;
+      text-align: right;
+    }
   }
 
 

+ 79 - 24
src/views/authentic/pdfMap.js

@@ -15,6 +15,14 @@ import * as proj from "ol/proj";
 import proj4 from "proj4";
 import { register } from "ol/proj/proj4";
 import {DragPan, MouseWheelZoom} from "ol/interaction";
+let mapData = reactive({
+  isEdit: false,
+  isEditArea: false,
+  curPointData: {},
+  point: null,
+  selectPointArr: [],
+  isPointHide: false,
+});
 proj4.defs(
   "EPSG:38572",
   "+proj=merc +a=6378137 +b=6378137 +lat_ts=0 +lon_0=0 +x_0=0 +y_0=0 +k=1 +units=m +nadgrids=@null +wktext +no_defs +type=crs"
@@ -29,6 +37,45 @@ class PdfMap {
     let that = this;
     let vectorStyle = new KMap.VectorStyle();
     this.vectorStyle = vectorStyle;
+    // 位置图标
+    this.clickPointLayer = new KMap.VectorLayer("clickPointLayer", 9999, {
+      style: (f) => {
+        const style1 = new Style({
+          image: new Icon({
+            src: require(`@/assets/images/map/${f.get("icon")}-icon.png`),
+            scale: 0.45,
+          }),
+        });
+        const style2 = new Style({
+          text: new Text({
+            font: "16px sans-serif",
+            text: f.get("masterName"),
+            offsetY: -40,
+            padding: [4, 3, 2, 106],
+            fill: new Fill({ color: "#fff" }), // 字体颜色
+          }),
+        });
+        const style3 = new Style({
+          image: new Icon({
+            src: require(`@/assets/images/map/${f.get("iconBg")}.png`),
+            scale: 0.45,
+            displacement: [0, 90],
+          }),
+        });
+        return [style1, style2, style3];
+      },
+    });
+
+    this.locationLayer = new KMap.VectorLayer("locationLayer", 9999, {
+      style: () => {
+        return new Style({
+          image: new Icon({
+            src: require("@/assets/images/map/location.png"),
+            scale: 0.45,
+          }),
+        });
+      },
+    });
   }
 
   initMap(data, target) {
@@ -43,36 +90,44 @@ class PdfMap {
         6,
         22
     );
-    this.kmap.setLayerWkt(data.geom,true)
-    this.lock(false)
+    this.addPoint(data)
+    this.kmap.setLayerWkt(data.geom, data, true, [50, 50, 50, 50] )
+    this.kmap.addLayer(this.clickPointLayer.layer);
+    this.kmap.addLayer(this.locationLayer.layer);
+    this.getSelectPointArr(data.id)
   }
-  lock(lockval) {
-    let pan;
-    let mousezoom;
-    this.kmap.map.getInteractions().forEach(function (element) {
-      if (element instanceof DragPan)//获取 控制能否使用鼠标,手指拖动地图的对象
-        pan = element;
-      if(element instanceof MouseWheelZoom)//获取 控制能否使用滚轮滚动放大缩小地图的对象
-        mousezoom = element;
-      if (pan) {
-        if (lockval) {
-          pan.setActive(true);//此对象的setActive方法用来设置是否可以拖动滚动查看
-        }
-        else {
-          pan.setActive(false);
-        }
+
+  getSelectPointArr(id) {
+    const arr = [];
+    this.clickPointLayer.source.forEachFeature((feature) => {
+      if (feature.get("id") === id) {
+        // 修改当前点位高亮
+        feature.set("icon", "point");
+        feature.set("iconBg", "name-act-bg");
+        mapData.point = feature;
+        mapData.curPointData = feature.values_;
       }
-      if (mousezoom) {
-        if (lockval) {
-          mousezoom.setActive(true);
-        }
-        else {
-          mousezoom.setActive(false);
-        }
+      arr.push(feature);
+    });
+    const points = this.kmap.getLayerFeatures();
+    points.forEach((feature) => {
+      if (feature.get("id") === id) {
+        feature.set("icon", "point-act");
+        this.kmap.polygonStyle(feature);
+        mapData.isPointHide = feature;
       }
     });
+    mapData.selectPointArr = arr;
   }
 
+  //   添加点位
+  addPoint(point) {
+    const arrPoints = [];
+    arrPoints.push(
+        newPoint({ ...point, icon: "point", iconBg: "name-bg" }, "point")
+    );
+    this.clickPointLayer.source.addFeatures(arrPoints);
+  }
 }
 
 export default PdfMap;