From bb43c6f3cb528af84c2bc2dcfee2e6d7ce292160 Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 22 May 2026 11:46:50 +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=E8=B0=83=E6=95=B4=E6=A0=87=E7=AD=BE=E5=AE=BD?= =?UTF-8?q?=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根因: 1. .report-item的overflow:hidden导致内容被裁剪,显示不全 2. .label宽度120px对于较长标签(如"实际现金收入:")显示空间不足 3. 响应式断点中.span-2在2列布局下错误地设为span 1 修复: 1. 移除.report-item的overflow:hidden,让内容自然显示 2. 将.label宽度从120px增加到140px 3. 修正1200px断点下.span-2为span 2(保持跨2列) Co-Authored-By: Claude Opus 4.7 --- openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue index 3b5b6263..ef23d0f8 100755 --- a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue +++ b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue @@ -331,7 +331,7 @@ getPharmacyCabinetLists(); grid-template-columns: repeat(2, 1fr); } .span-2 { - grid-column: span 1; + grid-column: span 2; } } @media screen and (max-width: 768px) {