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 475e14d0..4b30f229 100755
--- a/openhis-ui-vue3/src/views/doctorstation/components/examination/examinationApplication.vue
+++ b/openhis-ui-vue3/src/views/doctorstation/components/examination/examinationApplication.vue
@@ -316,13 +316,13 @@
- {{ scope.row.selectedMethod?.packagePrice || scope.row.price }}
+ {{ formatDetailAmount(getSelectedItemAmount(scope.row)) }}
- {{ ((scope.row.selectedMethod?.packagePrice || scope.row.price || 0) * (scope.row.quantity || 1)).toFixed(2) }}
+ {{ formatDetailAmount(getSelectedItemAmount(scope.row) * (scope.row.quantity || 1)) }}
@@ -392,37 +392,6 @@
加载中...
-
-
-
-
检查方法
-
- handleMethodSelect(val, method, cat)"
- class="method-checkbox"
- >
- {{ method.name }}
-
- ¥{{ method.packagePrice || method.price || 0 }}
-
-
-
-
@@ -440,46 +409,103 @@
class="selected-item-card"
:class="{ 'is-expanded': item.expanded }"
>
-
+
-
-
-
加载中...
-
-
- 暂无套餐明细
+
+
+
-
-
套餐明细
-
-
- {{ detail.name }}
-
-
+
+
检查方法
+
+ 暂无检查方法
+
+
+ selectMethodCheckbox(val, item, method)"
+ class="method-checkbox"
+ >
+ {{ method.name }}
+
+ ¥{{ method.packagePrice || method.price || 0 }}
+
+
+
+
+
+
加载中...
+
+
+ 暂无检查方法套餐明细
+
+
+
+
+ {{ detail.name }}
+
+
+ ×{{ detail.quantity || 1 }}
+ ¥{{ formatDetailAmount(detail.price) }}
+
+
+
+
+
+
@@ -493,7 +519,7 @@