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

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

View File

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