Explorar o código

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

lxf hai 2 meses
pai
achega
90be974319

+ 4 - 0
src/api/modules/region.js

@@ -8,4 +8,8 @@ module.exports = {
         url: config.base_url + "region/list",
         type: "post",
     },
+    listArea: {
+        url: config.base_url + "temp_blue_region/list",
+        type: "get",
+    },
 }

BIN=BIN
src/assets/images/home/legend.png


+ 10 - 0
src/views/home/index.vue

@@ -44,6 +44,9 @@
         </div>
         <tool-list direction="right" :list="rightToolList"></tool-list>
       </div>
+
+      <!-- 图例 -->
+      <img class="legend" src="@/assets/images/home/legend.png" alt="">
     </div>
   </div>
   <div ref="mapRef" class="bottom-map"></div>
@@ -218,6 +221,13 @@ const toFilePage = () => {
         }
       }
     }
+    .legend{
+      position: fixed;
+      bottom: 8px;
+      right: 64px;
+      width: 525px;
+      height: 16px;
+    }
   }
 }
 .bottom-map {

+ 1 - 1
src/views/home/map/homeMap.js

@@ -19,7 +19,7 @@ class HomeMap {
   }
 
   initMap(location, target) {
-    let level = 16;
+    let level = 18;
     let coordinate = util.wktCastGeom(location).getFirstCoordinate();
     this.kmap = new KMap.Map(target, level, coordinate[0], coordinate[1], null, 6, 22);
     eventBus.emit('homeMap:init', this.kmap);

+ 1 - 1
src/views/home/map/regionLayer.js

@@ -38,7 +38,7 @@ class RegionLayer {
 
   initData(farmId){
     let that = this
-    VE_API.region.list({farmId}).then(({data})=>{
+    VE_API.region.listArea().then(({data})=>{
       let features = []
       for(let item of data){
         let f = newRegionFeature(item,"wkt");