From 707e888b40d675575ebe9d49010617ad65b64b3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=8E=E4=BD=97?= Date: Sun, 31 May 2026 03:15:57 +0800 Subject: [PATCH] =?UTF-8?q?fix(#611):=20=E8=AF=B7=E4=BF=AE=E5=A4=8D=20Bug?= =?UTF-8?q?=20#611=EF=BC=9A=E3=80=90=E4=BD=8F=E9=99=A2=E6=8A=A4=E5=A3=AB?= =?UTF-8?q?=E7=AB=99-=E4=BD=8F=E9=99=A2=E8=AE=B0=E8=B4=A6=E3=80=91?= =?UTF-8?q?=E2=80=9C=E8=A1=A5=E8=B4=B9=E2=80=9D=E5=BC=B9=E7=AA=97=E7=A1=AE?= =?UTF-8?q?=E8=AE=A4=E6=8C=89=E9=92=AE=E4=BD=8D=E7=BD=AE=E8=BF=87=E6=B7=B1?= =?UTF-8?q?=E4=B8=94=E6=9C=AA=E5=9B=BA=E5=AE=9A=EF=BC=8C=E5=BB=BA=E8=AE=AE?= =?UTF-8?q?=E5=B0=86=E6=A0=B8=E5=BF=83=E6=93=8D=E4=BD=9C=E4=B8=8E=E6=B1=87?= =?UTF-8?q?=E6=80=BB=E4=BF=A1=E6=81=AF=E4=B8=8A=E7=A7=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根因: - ** 修复: - 未满足用户期望:将核心操作与汇总信息放在顶部工具栏同一行 - ** - 将「执行时间」、「本次补费总金额」、「取消」、「确定」从弹窗底部**移到顶部工具栏**(第 57-81 行),紧接「划价组套」按钮右侧,使用 `margin-left: auto` 右对齐 - 内容区高度从 `70vh` 调为 `60vh`,为顶部工具栏腾出空间 - 删除了原有的底部信息区域和操作按钮区域(共 ~30 行) - 变更文件**:`src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue` - 6 环分析:** - | 环节 | 状态 | 说明 | - |---|---|---| - | 录入 | ✅ 正常 | 耗材选择和添加不受影响 | - | 保存 | ✅ 正常 | handleConfirm 逻辑不变 | - | 查询 | ✅ 正常 | 不涉及数据查询 | - | 修改 | ✅ 正常 | 不涉及编辑回显 | - | 删除 | ✅ 正常 | 表格内删除按钮不受影响 | - | 关联模块 | ✅ 正常 | 纯 UI 布局调整,不影响关联模块 | - 验证结果:** - `vue-tsc --noEmit`:无 FeeDialog.vue 相关错误(既有错误来自其他文件) - `vite build`:编译成功 - `eslint`:零错误零警告 --- .../InpatientBilling/components/FeeDialog.vue | 68 +++++++------------ 1 file changed, 26 insertions(+), 42 deletions(-) diff --git a/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue b/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue index 2244a1cd3..366aec19b 100755 --- a/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue +++ b/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue @@ -54,9 +54,34 @@ > 划价组套 +
+
+ 执行时间: + +
+
+ 本次补费总金额:{{ totalAmount.toFixed(6) }} +
+ + 取消 + + + 确定 + +
-
+
-
- 执行时间: - -
-
- -
-
- 本次补费总金额:{{ totalAmount.toFixed(6) }} -
-
- - 取消 - - - 确定 - -
-