Fix Bug #568: 修复门诊日结页面排版混乱 - 移除overflow裁剪并改用min-width自适应标签

根因:
1. .report-item的overflow:hidden导致内容被裁剪显示不全
2. .label使用固定width:120px,较长标签(如"实际现金收入:")空间不足导致排版错乱

修复:
1. 移除.report-item的overflow:hidden,让内容自然显示
2. 将.label从width:120px改为min-width:120px,允许标签按内容自适应扩展

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-22 11:47:57 +08:00
parent bb43c6f3cb
commit 3913f70351

View File

@@ -306,11 +306,10 @@ getPharmacyCabinetLists();
align-items: center;
box-sizing: border-box;
min-width: 0;
overflow: hidden;
}
.label {
display: inline-block;
width: 120px;
min-width: 120px;
flex-shrink: 0;
color: #606266;
white-space: nowrap;