fix(#770): zhaoyun (文件合入)

This commit is contained in:
2026-06-19 14:28:45 +08:00
committed by 华佗
parent 0b183dacf8
commit a9daab268b

View File

@@ -1761,7 +1761,6 @@ defineExpose({
/* 顶部操作栏样式 */ /* 顶部操作栏样式 */
.top-operation-bar { .top-operation-bar {
height: 60px; height: 60px;
display: flex;
align-items: center; align-items: center;
margin-bottom: 16px; margin-bottom: 16px;
@@ -1816,9 +1815,6 @@ defineExpose({
/* Bug #770: Dialog flex 布局 — 防止 footer 按钮遮盖表单字段 */ /* Bug #770: Dialog flex 布局 — 防止 footer 按钮遮盖表单字段 */
:deep(.el-dialog) { :deep(.el-dialog) {
display: flex; display: flex;
flex-direction: column;
max-height: 90vh;
margin-top: 5vh;
} }
:deep(.el-dialog__header) { :deep(.el-dialog__header) {
@@ -1827,15 +1823,12 @@ defineExpose({
:deep(.el-dialog__body) { :deep(.el-dialog__body) {
flex: 1; flex: 1;
overflow-y: auto;
overflow: hidden;
min-height: 0; min-height: 0;
} }
:deep(.el-dialog__footer) { :deep(.el-dialog__footer) {
flex-shrink: 0; flex-shrink: 0;
border-top: 1px solid #ebeef5; border-top: 1px solid #ebeef5;
padding: 12px 20px 16px;
} }
/* 响应式:小屏幕下对话框宽度自适应 */ /* 响应式:小屏幕下对话框宽度自适应 */
@@ -1846,3 +1839,9 @@ defineExpose({
} }
} }
</style> </style>
display: flex;
flex-direction: column;
max-height: 85vh;
overflow-y: auto;
padding: 20px;
padding: 12px 20px 12px;