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:
@@ -306,11 +306,10 @@ getPharmacyCabinetLists();
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
overflow: hidden;
|
|
||||||
}
|
}
|
||||||
.label {
|
.label {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 120px;
|
min-width: 120px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
color: #606266;
|
color: #606266;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|||||||
Reference in New Issue
Block a user