Browse Source

实现小班详情label点击图片放大

wangcc 2 năm trước cách đây
mục cha
commit
367c06460a
4 tập tin đã thay đổi với 172 bổ sung91 xóa
  1. 21 0
      package-lock.json
  2. 1 0
      package.json
  3. 144 88
      src/components/amapnow.vue
  4. 6 3
      src/main.js

+ 21 - 0
package-lock.json

@@ -11599,6 +11599,22 @@
       "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
       "dev": true
     },
+    "v-viewer": {
+      "version": "1.6.4",
+      "resolved": "https://registry.npmmirror.com/v-viewer/-/v-viewer-1.6.4.tgz",
+      "integrity": "sha512-LVkiUHpmsbsZXebeNXnu8krRCi5i2n07FeLFxoIVGhw8lVvTBO0ffpbDC6mLEuacCjrIh09HjIqpciwUtWE8lQ==",
+      "requires": {
+        "throttle-debounce": "^2.0.1",
+        "viewerjs": "^1.5.0"
+      },
+      "dependencies": {
+        "throttle-debounce": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmmirror.com/throttle-debounce/-/throttle-debounce-2.3.0.tgz",
+          "integrity": "sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ=="
+        }
+      }
+    },
     "validate-npm-package-license": {
       "version": "3.0.4",
       "resolved": "https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
@@ -11640,6 +11656,11 @@
         }
       }
     },
+    "viewerjs": {
+      "version": "1.10.5",
+      "resolved": "https://registry.npmmirror.com/viewerjs/-/viewerjs-1.10.5.tgz",
+      "integrity": "sha512-QwKrmXlSfKg5x4y74F/jicpHIRqBMMfHXyboOxHDi5n4XAaejjpalphPq4/HW6venQAoMiD57HpVwBk0JvqpSA=="
+    },
     "vm-browserify": {
       "version": "1.1.2",
       "resolved": "https://registry.npmmirror.com/vm-browserify/-/vm-browserify-1.1.2.tgz",

+ 1 - 0
package.json

@@ -16,6 +16,7 @@
     "echarts": "^5.3.2",
     "element-china-area-data": "^5.0.2",
     "element-ui": "^2.15.9",
+    "v-viewer": "^1.6.4",
     "vue": "^2.5.2",
     "vue-router": "^3.0.1",
     "vuex": "^3.6.2"

+ 144 - 88
src/components/amapnow.vue

@@ -12,47 +12,9 @@
     <div class="yun-wrap">
       <img class="yun yun3" src="../assets/img/云3.png" alt />
     </div>
-    <!-- <div class="info-small">
-      <h5 class="marker-title">
-        item.countyName +
-        item.smallNumber +
-      </h5>
-      <div class="marker-content">
-        <p>
-          小班号:' +
-          item.smallNumber +
-          '
-        </p>
-        <p>
-          样地数:' +
-          item.sampleCount +
-          '
-        </p>
-        <p>
-          小班蓄积量:' +
-          item.smallClassStock +
-          '(立方米)' +
-          '
-        </p>
-        <p>
-          小班占地面积:' +
-          item.landArea +
-          '(亩)' +
-          '
-        </p>
-        <p>
-          小班树种组成:' +
-          item.treeComp +
-          '
-        </p>
-        <p>
-          所在位置:' +
-          item.cityName +
-          item.countyName 
-          item.townName;
-        </p>
-      </div>
-    </div>-->
+    <el-dialog title="查看图片" :modal="false" :visible.sync="imgDialogVisible" width="40%">
+      <img width="100%" style="height:580px" :src="dialogImageUrl" alt />
+    </el-dialog>
   </div>
 </template>
 <script>
@@ -74,6 +36,8 @@ export default {
   name: 'Mapview',
   data() {
     return {
+      imgDialogVisible: false,
+      dialogImageUrl: null,
       AMap: null,
       map: null,
       lngLat: [106.628201, 26.646694],
@@ -234,37 +198,97 @@ export default {
         if (val) {
           if (val.longitude && val.latitude && !val.name) {
             let lanLatArr = [val.longitude, val.latitude];
-            let smallLabel =
-              "<div class='info-small'>" +
-              "<h5 class='marker-title'>" +
-              val.countyName +
-              '-' +
-              val.smallNumber +
-              '</h5>' +
-              "<div class='marker-content'>" +
-              '' +
-              '<p>小班号:' +
-              val.smallNumber +
-              '</p>' +
-              '<p>样地数:' +
-              val.sampleCount +
-              '</p>' +
-              '<p>小班蓄积量:' +
-              val.smallClassStock +
-              '(立方米)' +
-              '</p>' +
-              '<p>小班占地面积:' +
-              val.landArea +
-              '(亩)' +
-              '</p>' +
-              '<p>小班树种组成:' +
-              val.treeComp +
-              '</p>' +
-              '<p>所在位置:' +
-              val.cityName +
-              val.countyName +
-              val.townName;
-            '</p>' + '</div>' + '</div>';
+            let imgList = [];
+                if (val.imageList.length > 0) {
+                  val.imageList.forEach((element) => {
+                    imgList.push(
+                      `<img id="markerLabel" src="${element.image}"/>`
+                    );
+                  });
+                }else{
+                  imgList.push('暂无图片')
+                }
+                this.imgClick();
+                let smallLabel =
+                  "<div class='info-details'>" +
+                  "<h5 class='marker-title'>" +
+                  val.countyName +
+                  '-' +
+                  val.smallNumber +
+                  '</h5>' +
+                  "<div class='marker-content'>" +
+                  '<div>' +
+                  '<p>小班号:' +
+                  val.smallNumber +
+                  '</p>' +
+                  '<p>样地数:' +
+                  val.sampleCount +
+                  '</p>' +
+                  '<p>小班蓄积量:' +
+                  val.smallClassStock +
+                  '(立方米)' +
+                  '</p>' +
+                  '<p>小班占地面积:' +
+                  val.landArea +
+                  '(亩)' +
+                  '</p>' +
+                  '<p>小班树种组成:' +
+                  val.treeComp +
+                  '</p>' +
+                  '<p>地类:' +
+                  val.landType +
+                  '</p>' +
+                  '<p>林地权属:' +
+                  val.landOwner +
+                  '</p>' +
+                  '<p>林木权属:' +
+                  val.forestOwner +
+                  '</p>' +
+                  '<p>林种:' +
+                  val.forestClass +
+                  '</p>' +
+                  '<p>树种结构:' +
+                  val.treeStruct +
+                  '</p>' +
+                  '<p>起源:' +
+                  val.origin +
+                  '</p>' +
+                  '<p>优势树种:' +
+                  val.superTree +
+                  '</p>' +
+                  '</div>' +
+                  '<div>' +
+                  '<p>主要灌木名称:' +
+                  val.shrubName +
+                  '</p>' +
+                  '<p>地貌:' +
+                  val.landForm +
+                  '</p>' +
+                  '<p>海拔:' +
+                  val.altitude +
+                  '</p>' +
+                  '<p>坡位:' +
+                  val.slopePosit +
+                  '</p>' +
+                  '<p>坡向:' +
+                  val.slopeDirect +
+                  '</p>' +
+                  '<p>坡形:' +
+                  val.slopeForm +
+                  '</p>' +
+                  '<p>坡度:' +
+                  val.slope +
+                  '</p>' +
+                  '<p>森林健康度:' +
+                  val.forestHealth +
+                  '</p>' +
+                  "<p class='marker-imgs'>" +
+                  "<span class='marker-span'>图片:</span>" +
+                  imgList +
+                  '</p>' +
+                  '</div>' +
+                  '</div>' +
+                  '</div>';
             this.smallMarker = new AMap.Marker({
               map: this.map,
               position: lanLatArr,
@@ -275,7 +299,7 @@ export default {
             });
             this.smallMarker.setLabel({
               direction: 'right',
-              offset: new AMap.Pixel(-170, -115), //设置文本标注偏移量
+              offset: new AMap.Pixel(-230, -160), //设置文本标注偏移量
               content: smallLabel //设置文本标注内容
             });
             this.smallMarkers.push(_this.smallMarker);
@@ -1027,7 +1051,18 @@ export default {
                 this.smallClassNArr.push(this.smallClassN);
               }
               smallClassPolygon.on('click', (e) => {
-                console.log(item);
+                let imgList = [];
+                if (item.imageList.length > 0) {
+                  item.imageList.forEach((element) => {
+                    imgList.push(
+                      `<img id="markerLabel" src="${element.image}"/>`
+                    );
+                  });
+                }else{
+                  imgList.push('暂无图片')
+                }
+
+                this.imgClick();
                 let smallLabel =
                   "<div class='info-details'>" +
                   "<h5 class='marker-title'>" +
@@ -1101,19 +1136,15 @@ export default {
                   '<p>森林健康度:' +
                   item.forestHealth +
                   '</p>' +
-                  '<p>所在位置:' +
-                  item.cityName +
-                  item.countyName +
-                  item.townName;
-                '</p>' +
-                  '<p>图片:' +
-                  item.treeComp +
-                  "<img src='' />"
+                  "<p class='marker-imgs'>" +
+                  "<span class='marker-span'>图片:</span>" +
+                  imgList +
                   '</p>' +
                   '</div>' +
                   '</div>' +
                   '</div>';
                 that.smallMarker = new AMap.Marker({
+                  map:that.map,
                   position: lanLatArr,
                   icon: require('@/assets/img/small-marker.png'),
                   anchor: 'bottom-center',
@@ -1121,20 +1152,22 @@ export default {
                 });
                 that.smallMarker.setLabel({
                   direction: 'right',
-                  offset: new AMap.Pixel(-170, -115), //设置文本标注偏移量
+                  offset: new AMap.Pixel(-230, -160), //设置文本标注偏移量
                   content: smallLabel //设置文本标注内容
                 });
-                that.smallMarker.setMap(that.map);
+                // that.smallMarker.setMap(that.map);
+                that.smallMarkers.push(that.smallMarker)
                 smallClassPolygon.setOptions({
                   fillOpacity: 0.7,
                   fillColor: 'yellow'
                 });
               });
+
               smallClassPolygon.on('mouseout', () => {
-                if (that.smallMarker) {
-                  that.smallMarker.setMap(null);
-                  that.smallMarker = null;
-                }
+                // if (that.smallMarker) {
+                //   that.smallMarker.setMap(null);
+                //   that.smallMarker = null;
+                // }
                 smallClassPolygon.setOptions({
                   fillOpacity: 0,
                   fillColor: '#ccebc5'
@@ -1143,9 +1176,20 @@ export default {
             }
           }
           // this.map.add(that.smallClassPolygon);
+          this.map.on('rightclick', function (e) {
+              that.map.remove(that.smallMarkers);
+            });
         });
       }
     },
+    imgClick() {
+      document.getElementsByTagName('div')[0].addEventListener('click', (e) => {
+        if (e.target.id === 'markerLabel') {
+          this.imgDialogVisible = true;
+          this.dialogImageUrl = e.target.currentSrc;
+        }
+      });
+    },
     // 获取样地数据
     getForestSample(page) {
       forestSample({
@@ -1655,6 +1699,18 @@ export default {
     display: flex;
     justify-content: space-between;
     padding: 0 20px 20px 20px;
+    .marker-span {
+      display: block;
+    }
+    .marker-imgs {
+      line-height: 18px !important;
+      img {
+        width: 30px;
+        height: 30px;
+        margin: 0 4px;
+        cursor: pointer;
+      }
+    }
     p {
       text-align: left;
       font-size: 12px;

+ 6 - 3
src/main.js

@@ -14,9 +14,12 @@ import dataV from "@jiaminghi/data-view";
 // 引入全局样式文件
 import "@/assets/scss/index.scss";
 
-import { Select, Option, Input } from 'element-ui';
+import { Select, Option, Input, Dialog } from 'element-ui';
 import 'element-ui/lib/theme-chalk/index.css';
-
+// 图片放大
+import Viewer from 'v-viewer'
+import 'viewerjs/dist/viewer.css'
+Vue.use(Viewer) 
 //main.js添加
 import filters from './utils/filters'
 filters(Vue);
@@ -24,7 +27,7 @@ filters(Vue);
 Vue.use(Select);
 Vue.use(Option);
 Vue.use(Input);
-
+Vue.use(Dialog);
 Vue.use(dataV);
 
 Vue.config.productionTip = false;