Fix Bug #568: 修复门诊日结页面排版混乱 - 使用固定宽度替代最小宽度确保标签对齐

将 .label 的 min-width: 140px 改为 width: 140px,确保所有标签宽度一致,
避免短标签(如"现金:")和长标签(如"实际现金收入:")宽度不同导致的排版混乱。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-22 11:54:47 +08:00
parent 67a7f17abd
commit 6db7659990

View File

@@ -310,7 +310,7 @@ getPharmacyCabinetLists();
}
.label {
display: inline-block;
min-width: 140px;
width: 140px;
flex-shrink: 0;
color: #606266;
white-space: nowrap;