大屏页面初始化

This commit is contained in:
2026-03-03 17:35:54 +08:00
parent 6f9562d121
commit 353ed9cd22
3 changed files with 563 additions and 11 deletions

View File

@@ -696,20 +696,27 @@ onMounted(() => {
color: #333;
}
/* 核心修复:内容容器布局 */
.content-container {
flex: 1;
padding: 0 !important;
overflow: auto;
overflow: hidden !important;
display: flex !important;
flex-direction: column !important;
}
.content-wrapper {
margin: 16px;
padding: 24px;
margin: 8px;
padding: 2px;
background: #fff;
border: 1px solid #e6e6e6;
border-radius: 8px;
min-height: calc(100% - 32px);
flex: 1 !important;
height: calc(100% - 16px) !important;
min-height: 0 !important;
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
display: flex !important;
flex-direction: column !important;
}
:deep(.el-sub-menu .el-menu) {