From 1406bbfcee35e4d7ea945908f1342f15b0ffaa07 Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 22 May 2026 12:33:42 +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=E4=BC=98=E5=8C=96CSS=20Grid=E5=B8=83?= =?UTF-8?q?=E5=B1=80=E9=97=B4=E8=B7=9D=E5=92=8C=E5=AD=97=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 增大 grid gap 从 10px 16px 到 12px 24px,改善行列间距 - 为 .report-item 添加 gap: 8px,标签与数值间留白 - 统一 .label 字体大小为 14px,保持视觉一致 - 移除 .value 的 overflow:hidden,避免内容截断 - 调整费用性质下拉框宽度为 130px --- .../src/views/clinicmanagement/dayEnd/index.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue index 006f9d7f..1de683f2 100755 --- a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue +++ b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue @@ -294,7 +294,7 @@ getPharmacyCabinetLists(); .report-row { display: grid; margin: 12px 0; - gap: 10px 16px; + gap: 12px 24px; align-items: baseline; } .cols-4 { @@ -308,22 +308,22 @@ getPharmacyCabinetLists(); align-items: center; box-sizing: border-box; min-width: 0; + gap: 8px; } .label { display: inline-block; - width: 140px; + width: 150px; flex-shrink: 0; color: #606266; white-space: nowrap; text-align: right; + font-size: 14px; } .value { color: #303133; font-weight: 500; white-space: nowrap; flex: 1; - overflow: hidden; - text-overflow: ellipsis; } .divider { height: 1px;