修改画布显示不全及操作优化

This commit is contained in:
taozi
2021-09-23 10:33:41 +08:00
parent aeba14d544
commit e4f9d8f027
2 changed files with 8 additions and 4 deletions

View File

@ -114,7 +114,7 @@ export default {
.panelBox { .panelBox {
width: 0px; width: 0px;
min-height: 100%; height: 100%;
display: flex; display: flex;
overflow: hidden; overflow: hidden;
transition: 0.2s width ease; transition: 0.2s width ease;
@ -166,6 +166,9 @@ export default {
border-left: 1px solid #f0f3f4; border-left: 1px solid #f0f3f4;
width: 186px; width: 186px;
padding: 20px 0; padding: 20px 0;
height: auto;
overflow-y: auto;
padding-bottom:40px;
.itemBox { .itemBox {
h3 { h3 {

View File

@ -146,7 +146,8 @@ export default {
position: relative; position: relative;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: 100%; height:calc(100vh - 84px);
overflow: hidden;
.topBox { .topBox {
height: 52px; height: 52px;
@ -188,7 +189,7 @@ export default {
.bottomWarp { .bottomWarp {
flex: 1; flex: 1;
display: flex; display: flex;
height: 0; overflow:hidden
} }
.leftBox { .leftBox {
height: 100%; height: 100%;
@ -212,4 +213,4 @@ export default {
overflow: auto; overflow: auto;
} }
} }
</style> </style>