From e81a6a9e37400fa17399d28ca1013078877868b9 Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 22 May 2026 10:40:10 +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=BF=AE=E6=AD=A3?= =?UTF-8?q?=E6=9C=80=E5=90=8E=E4=B8=80=E8=A1=8C=E8=B4=B9=E7=94=A8=E6=98=8E?= =?UTF-8?q?=E7=BB=86=E7=9A=84=E5=88=97=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将费用明细最后一行的 cols-4 改为 cols-3,因为该行只有3个项目(诊疗费、挂号费、其他费用), 使用4列网格会导致布局错位。 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 b2b5fc85..b100ef84 100755 --- a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue +++ b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue @@ -81,7 +81,7 @@
中成药费:{{ formatValue(reportValue.CHINESE_MEDICINE_FEE) }}
卫生材料费:{{ formatValue(reportValue.SANITARY_MATERIALS_FEE) }}
-
+
诊疗费:{{ formatValue(reportValue.GENERAL_CONSULTATION_FEE) }}
挂号费:{{ formatValue(reportValue.REGISTRATION_FEE) }}
其他费用:{{ formatValue(reportValue.OTHER_FEE) }}