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%; + } +}