From a9d1b291ec7957b58bc99da62321ec4cd48eb986 Mon Sep 17 00:00:00 2001 From: Xu Zhimeng Date: Wed, 21 Jun 2023 18:56:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=80=9A=E8=BF=87?= =?UTF-8?q?=E5=9C=B0=E5=9B=BE=E5=8F=B3=E4=BE=A7=E6=8C=89=E9=92=AE=E6=9C=80?= =?UTF-8?q?=E5=A4=A7=E5=8C=96=E6=97=B6=EF=BC=8CData=20Recevice=20status=20?= =?UTF-8?q?Monitoring=E5=BC=B9=E7=AA=97=E6=97=A0=E6=B3=95=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/stationOperation/components/MapPane.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/views/stationOperation/components/MapPane.vue b/src/views/stationOperation/components/MapPane.vue index 365df62..f8cc023 100644 --- a/src/views/stationOperation/components/MapPane.vue +++ b/src/views/stationOperation/components/MapPane.vue @@ -146,6 +146,7 @@ :width="1230" :showFooter="false" @fullscreen="onModalFullScreen" + :getContainer="getModalContainer" >
@@ -446,6 +447,10 @@ export default { document.exitFullscreen() }, + getModalContainer() { + return document.querySelector('.station-operation') + }, + onFullScreenChange() { this.isFullScreen = !!document.fullscreenElement },