From 69e048e21e8b6fe4a1e2c1f403785206995cf91c Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 22 May 2026 09:42:14 +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?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - el-col span从3改为6,增加列宽避免内容挤压 - 移除.label的固定宽度120px和.value的float:right - 每列使用inline-flex布局,标签和数值自然对齐 - 增加gutter间距和flex-wrap响应式换行 Co-Authored-By: Claude Opus 4.7 --- .../views/clinicmanagement/dayEnd/index.vue | 110 ++++++++---------- 1 file changed, 47 insertions(+), 63 deletions(-) diff --git a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue index 790b0c83..2777b42d 100755 --- a/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue +++ b/openhis-ui-vue3/src/views/clinicmanagement/dayEnd/index.vue @@ -63,169 +63,154 @@ -->
- - + 经办人姓名: - {{ userStore.nickName }} + {{ userStore.nickName }} - + 科室: {{ userStore.orgName }} - + 时间: - {{ queryTime[0] + '~' + queryTime[1] }} + {{ queryTime[0] + '~' + queryTime[1] }} - + 实际现金收入: - {{ formatValue(reportValue.cashSum) }} + {{ formatValue(reportValue.cashSum) }} - + 现金: {{ formatValue(reportValue.rmbCashSum) }} - + 微信: {{ formatValue(reportValue.vxCashSum) }} - + 支付宝: {{ formatValue(reportValue.aliCashSum) }} - + 统筹支付: {{ formatValue(reportValue.tcSum) }} - + 账户支付: {{ formatValue(reportValue.zhSum) }} - + 基金支付总额: {{ formatValue(reportValue.fundSum) }} - - + 诊查费: {{ formatValue(reportValue.DIAGNOSTIC_FEE) }} - + 检查费: {{ formatValue(reportValue.CHECK_FEE) }} - + 化验费: {{ formatValue(reportValue.DIAGNOSTIC_TEST_FEE) }} - + 治疗费: {{ formatValue(reportValue.MEDICAL_EXPENSE_FEE) }} - + 西药费: {{ formatValue(reportValue.WEST_MEDICINE) }} - + 中药饮片费: {{ formatValue(reportValue.CHINESE_MEDICINE_SLICES_FEE) }} - + 中成药费: {{ formatValue(reportValue.CHINESE_MEDICINE_FEE) }} - + 卫生材料费: {{ formatValue(reportValue.SANITARY_MATERIALS_FEE) }} - + 诊疗费: {{ formatValue(reportValue.GENERAL_CONSULTATION_FEE) }} - + 挂号费: {{ formatValue(reportValue.REGISTRATION_FEE) }} - + 其他费用: {{ formatValue(reportValue.OTHER_FEE) }} -
@@ -423,13 +408,12 @@ getPharmacyCabinetLists(); margin-bottom: 10px; } .label { - display: inline-block; - width: 120px !important; + color: #606266; + white-space: nowrap; } .value { - float: right; -} -.el-col { - margin-right: 50px; + color: #303133; + font-weight: 500; + white-space: nowrap; }