From 64cfc20bd455c777aed56c8bc639408c76e08601 Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 22 May 2026 10:35:30 +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=E9=97=AE=E9=A2=98=20-=20=E4=BD=BF=E7=94=A8CS?= =?UTF-8?q?S=20Grid=E7=A1=AE=E4=BF=9D=E5=88=97=E5=AF=B9=E9=BD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根因:页面使用CSS Grid 4列布局,但部分行只有3个数据项,导致列不对齐。 修复:为3个数据项的行添加空占位div,确保所有行都有4个元素与grid列数匹配。 --- openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue index 8739c3da..dbc288f2 100755 --- a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue +++ b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue @@ -44,6 +44,7 @@
经办人姓名:{{ userStore.nickName }}
科室:{{ userStore.orgName }}
时间:{{ queryTime[0] + '~' + queryTime[1] }}
+
@@ -57,6 +58,7 @@
统筹支付:{{ formatValue(reportValue.tcSum) }}
账户支付:{{ formatValue(reportValue.zhSum) }}
基金支付总额:{{ formatValue(reportValue.fundSum) }}
+
@@ -77,6 +79,7 @@
诊疗费:{{ formatValue(reportValue.GENERAL_CONSULTATION_FEE) }}
挂号费:{{ formatValue(reportValue.REGISTRATION_FEE) }}
其他费用:{{ formatValue(reportValue.OTHER_FEE) }}
+