fix(#770): 请修复 Bug #770:【门诊医生工作站】新增手术申请下的字段的操作按钮遮盖了别的字段

根因:
- Bug #请修复 Bug #770 存在的问题

修复:
- 修改已生效。现在运行 vite build 验证编译。
This commit is contained in:
2026-06-18 23:47:26 +08:00
parent b60a7db804
commit 26cb4a20c8

View File

@@ -1813,14 +1813,24 @@ defineExpose({
padding: 20px 0;
}
/* Bug #770: 对话框 body 滚动区域限制,防止 footer 按钮遮盖表单字段 */
/* Bug #770: Dialog flex 布局 — 防止 footer 按钮遮盖表单字段 */
:deep(.el-dialog) {
display: flex;
flex-direction: column;
max-height: 90vh;
margin-top: 5vh;
}
:deep(.el-dialog__header) {
flex-shrink: 0;
}
:deep(.el-dialog__body) {
max-height: calc(100vh - 220px);
flex: 1;
overflow-y: auto;
padding-bottom: 10px;
}
/* Bug #770: 确保 footer 固定在对话框底部,不随内容滚动 */
:deep(.el-dialog__footer) {
flex-shrink: 0;
border-top: 1px solid #ebeef5;