From d930b8b79cdcc4e24d10108883b9fdfef087fb13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Fri, 29 Dec 2023 13:43:30 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E6=A0=87=E5=87=86=E5=88=86=E8=A7=A3?= =?UTF-8?q?=E5=8D=95=E5=BC=B9=E6=A1=86=E9=BB=98=E8=AE=A4=E5=85=A8=E5=B1=8F?= =?UTF-8?q?=EF=BC=8C=E5=A4=84=E7=90=86=E5=85=A8=E5=B1=8F=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E4=B8=8B=E7=9A=84=E6=A0=B7=E5=BC=8F=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/StandardResolutionSheetModal.vue | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/views/standardRegulationLibrary/commonPage/modules/StandardResolutionSheetModal.vue b/src/views/standardRegulationLibrary/commonPage/modules/StandardResolutionSheetModal.vue index 8aa2e5e7..49a4dc19 100644 --- a/src/views/standardRegulationLibrary/commonPage/modules/StandardResolutionSheetModal.vue +++ b/src/views/standardRegulationLibrary/commonPage/modules/StandardResolutionSheetModal.vue @@ -5,6 +5,7 @@ :width="width" :visible="visible" :confirm-loading="confirmLoading" + fullscreen switchFullscreen @cancel="handleCancel"> @@ -32,7 +33,8 @@ export default { width: '90%', visible: false, confirmLoading: false, - splitId: null + splitId: null, + isFullScreen: false } }, methods: { @@ -64,4 +66,19 @@ export default { /deep/ .ant-modal-body { background: #F0F2F4; } + +// 处理全屏状态下的样式问题 +.j-modal-box.fullscreen .ant-modal-content .ant-modal-body { + .ant-spin-nested-loading { + height: 100%; + + /deep/ .ant-spin-container { + height: 100%; + } + } + + .page-container { + height: 100%; + } +}