Browse Source

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

lxf 2 tháng trước cách đây
mục cha
commit
e90e961fdb

+ 1 - 1
src/views/home/index.vue

@@ -68,7 +68,7 @@ import { useRouter } from "vue-router";
 import SamplePointLayer from "./map/samplePointLayer";
 import {useStore} from "vuex";
 import RegionLayer from "./map/regionLayer";
-import "./map/mockFarmLayer"
+
 let store = useStore()
 const components = {
   homePage,

+ 1 - 0
src/views/warningHome/index.vue

@@ -66,6 +66,7 @@
 </template>
 
 <script setup>
+import "./map/mockFarmLayer"
 import { onMounted, ref } from "vue";
 import fnHeader from "@/components/fnHeader.vue";
 import WarningMap from "./warningMap";

+ 2 - 2
src/views/home/map/mockFarmLayer.js → src/views/warningHome/map/mockFarmLayer.js

@@ -42,9 +42,9 @@ class MockFarmLayer {
             },
             zIndex:-1
         });
-        eventBus.on("homeMap:init", function (kmap) {
+        eventBus.on("warningMap:init", function (kmap) {
             that.initLayer(kmap)
-            VE_API.farm.weatherRiskVirtualFarmList().then(res => {
+            VE_API.mini_farm.weatherRiskVirtualFarmList().then(res => {
                 if(res.code ===0){
                     that.setData(res.data)
                 }

+ 3 - 3
src/views/warningHome/warningMap.js

@@ -8,7 +8,7 @@ import WKT from "ol/format/WKT.js";
 import ScaleLine from "ol/control/ScaleLine";
 import { useRouter } from "vue-router";
 import Overlay from 'ol/Overlay'
-
+import eventBus from "@/api/eventBus";
 /**
  * @description 地图层对象
  */
@@ -23,7 +23,7 @@ class HomeMap {
     let level = 6;
     let coordinate = util.wktCastGeom(location).getFirstCoordinate();
     this.kmap = new KMap.Map(target, level, coordinate[0], coordinate[1], null, 6, 22);
-
+    eventBus.emit('warningMap:init', this.kmap);
     this.addPopup()
     this.addMapListen()
   }
@@ -59,7 +59,7 @@ class HomeMap {
         that.popup.setPosition(event.coordinate); // 设置弹窗位置为点击位置
       } else {
         // that.popup.setPosition(undefined); // 如果没有点击到feature,则隐藏弹窗
-        
+
         // 在这里可以获取feature的属性,并显示在弹窗中
         let content = '<div>';
         // for (let key in feature.getProperties()) {