|
@@ -69,7 +69,7 @@
|
|
</el-input>
|
|
</el-input>
|
|
</div>
|
|
</div>
|
|
<div class="d-l-con padding-box nowrap" v-for="(item,index) in eventList"
|
|
<div class="d-l-con padding-box nowrap" v-for="(item,index) in eventList"
|
|
- @click="dropLocation(item.latitude,item.longitude)">
|
|
|
|
|
|
+ @click="dropLocation(item.latitude,item.longitude,item.eventCode)">
|
|
<div class="bgt-img">
|
|
<div class="bgt-img">
|
|
<img v-if="item.picturePath!=null&&item.picturePath!=''&& isAssetTypeAnImage(item.picturePath)"
|
|
<img v-if="item.picturePath!=null&&item.picturePath!=''&& isAssetTypeAnImage(item.picturePath)"
|
|
:src="item.picturePath"
|
|
:src="item.picturePath"
|
|
@@ -337,8 +337,9 @@ export default {
|
|
}, 2000)
|
|
}, 2000)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- dropLocation(lat, lng) {
|
|
|
|
- this.$refs.supermap.dropLocation(lat, lng)
|
|
|
|
|
|
+ dropLocation(lat, lng,eventCode) {
|
|
|
|
+ this.$refs.supermap.dropLocation(lat, lng,18)
|
|
|
|
+ this.showEventDialog(eventCode)
|
|
},
|
|
},
|
|
showEventDialog(eventCode) {
|
|
showEventDialog(eventCode) {
|
|
//事件信息弹出
|
|
//事件信息弹出
|