From a26e3573b95c8de562b21e34e544c84929746706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E4=BA=91?= <赵云@gentronhealth.com> Date: Thu, 14 May 2026 09:30:04 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#426:=20=E9=97=A8=E8=AF=8A=E5=8C=BB?= =?UTF-8?q?=E7=94=9F=E7=AB=99-=E6=A3=80=E6=9F=A5=E5=BC=80=E7=AB=8B?= =?UTF-8?q?=EF=BC=9A=E5=B7=B2=E9=80=89=E6=8B=A9=E5=88=97=E8=A1=A8=E5=BA=94?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E6=A0=91=E5=BD=A2=E5=B1=95=E5=BC=80=EF=BC=8C?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E5=A5=97=E9=A4=90=E6=98=8E=E7=BB=86=EF=BC=88?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE/=E6=95=B0=E9=87=8F/=E5=8D=95=E4=BB=B7?= =?UTF-8?q?=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 已选择面板的套餐项增加"套餐"标签,便于用户识别 - 展开/收起图标改为 ArrowRight 旋转样式,符合标准交互习惯 - toggleItemExpand 函数增加 packageName 兜底判断,不强制依赖 isPackage 标记 - loadPackageDetailsForItem 添加 loading 状态和更健壮的 packageId 解析逻辑 - 新增 expanded-content 和 package-loading-hint CSS 样式 Co-Authored-By: Claude Opus 4.7 --- .../examination/examinationApplication.vue | 56 ++++++++++++++----- 1 file changed, 41 insertions(+), 15 deletions(-) diff --git a/openhis-ui-vue3/src/views/doctorstation/components/examination/examinationApplication.vue b/openhis-ui-vue3/src/views/doctorstation/components/examination/examinationApplication.vue index aff0cd2c0..d6bf27a3c 100755 --- a/openhis-ui-vue3/src/views/doctorstation/components/examination/examinationApplication.vue +++ b/openhis-ui-vue3/src/views/doctorstation/components/examination/examinationApplication.vue @@ -413,29 +413,33 @@ :key="idx" class="selected-item-card" > - +
+ 套餐 {{ item.name }} ¥{{ item.price }} - - - - + + +
- -
+ +
-
+
{{ detail.name }} 数量: {{ detail.quantity }} 单价: ¥{{ detail.price }}
+ +
+ 加载中... +
@@ -473,7 +477,7 @@