fix 标准分解单弹框默认全屏,处理全屏状态下的样式问题

This commit is contained in:
赵霄
2023-12-29 13:43:30 +08:00
parent d0d0d48e08
commit d930b8b79c
@@ -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%;
}
}
</style>