大屏预览底部留白和下钻框大小问题

This commit is contained in:
mll
2026-02-09 18:35:08 +08:00
parent 45f85ee6e8
commit 56be3971e4
2 changed files with 10 additions and 7 deletions

View File

@@ -137,8 +137,9 @@ export default {
.layout { .layout {
width: 100%; width: 100%;
height: 100%; height: auto;
text-align: center; text-align: center;
overflow:hidden
} }
.bottom-text { .bottom-text {
width: 100%; width: 100%;
@@ -148,8 +149,6 @@ export default {
z-index: 9999; z-index: 9999;
} }
.drillDrownViewLayout{ .drillDrownViewLayout{
&>div{
width:100% !important;
}
} }
</style> </style>

View File

@@ -133,16 +133,20 @@ export default {
<style lang="scss"> <style lang="scss">
.layout { .layout {
width: 100%; width: 100%;
height: 100%; height: auto;
text-align: center; text-align: center;
overflow:hidden
} }
.dialogDrillDrownView .el-dialog{ .dialogDrillDrownView .el-dialog{
width:auto; width:auto;
margin-top:0 !important; margin-top:0 !important;
.el-dialog__body{ .el-dialog__body{
padding:0; padding:0;
height:calc(100vh - 34px); max-height:calc(100vh - 34px);
overflow-y:auto; overflow:auto;
&::-webkit-scrollbar {
display: none; /* 隐藏滚动条 */
}
} }
.el-dialog__header .el-dialog__headerbtn{ .el-dialog__header .el-dialog__headerbtn{
top: 6px; top: 6px;