fix: 修复通过地图右侧按钮最大化时,Data Recevice status Monitoring弹窗无法展示的问题

This commit is contained in:
Xu Zhimeng 2023-06-21 18:56:54 +08:00
parent 86c8e1b69e
commit a9d1b291ec

View File

@ -146,6 +146,7 @@
:width="1230"
:showFooter="false"
@fullscreen="onModalFullScreen"
:getContainer="getModalContainer"
>
<div class="data-receive-status">
<!-- 左侧配置栏 -->
@ -446,6 +447,10 @@ export default {
document.exitFullscreen()
},
getModalContainer() {
return document.querySelector('.station-operation')
},
onFullScreenChange() {
this.isFullScreen = !!document.fullscreenElement
},