From 3913f703510d0ddd2beb23c63ba02beb1fb8386b Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 22 May 2026 11:47:57 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#568:=20=E4=BF=AE=E5=A4=8D=E9=97=A8?= =?UTF-8?q?=E8=AF=8A=E6=97=A5=E7=BB=93=E9=A1=B5=E9=9D=A2=E6=8E=92=E7=89=88?= =?UTF-8?q?=E6=B7=B7=E4=B9=B1=20-=20=E7=A7=BB=E9=99=A4overflow=E8=A3=81?= =?UTF-8?q?=E5=89=AA=E5=B9=B6=E6=94=B9=E7=94=A8min-width=E8=87=AA=E9=80=82?= =?UTF-8?q?=E5=BA=94=E6=A0=87=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根因: 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 --- openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue index ef23d0f8..c7bf1198 100755 --- a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue +++ b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue @@ -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;