diff --git a/src/views/stationOperation/components/MapMarker.vue b/src/views/stationOperation/components/MapMarker.vue index 662ce29..83b15e6 100644 --- a/src/views/stationOperation/components/MapMarker.vue +++ b/src/views/stationOperation/components/MapMarker.vue @@ -136,7 +136,7 @@ export default { img.draggable = false img.src = MarkerIcon[stationInfo.stationType] img.addEventListener('click', () => { - this.$emit('markerClick') + this.$emit('markerClick', stationInfo) }) img.addEventListener('mouseover', () => { diff --git a/src/views/stationOperation/components/MapPane.vue b/src/views/stationOperation/components/MapPane.vue index 5dcf50f..adc5605 100644 --- a/src/views/stationOperation/components/MapPane.vue +++ b/src/views/stationOperation/components/MapPane.vue @@ -14,7 +14,7 @@