From 39477272f327fec99379979accdaaa4ea9ca7d97 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期三, 11 十二月 2024 13:16:35 +0800
Subject: [PATCH] 确费按钮 根据检查类型 决定是否显示

---
 src/views/ecg/appointment/AppointmentConfirm.vue |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/views/ecg/appointment/AppointmentConfirm.vue b/src/views/ecg/appointment/AppointmentConfirm.vue
index a3fd198..6d11df4 100644
--- a/src/views/ecg/appointment/AppointmentConfirm.vue
+++ b/src/views/ecg/appointment/AppointmentConfirm.vue
@@ -6,7 +6,7 @@
   </div>
 
   <div style="display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 20px">
-    <div v-for="_appointment in appointmentVOList" :key="_appointment.applyNo">
+    <div v-for="(_appointment, index) in appointmentVOList" :key="index">
       <CheckItemPanel  :appointment="_appointment"  @event_appoint_confirm="onEventAppointConfirm"/>
     </div>
   </div>
@@ -181,9 +181,12 @@
 }
 
 const onEventAppointConfirm = () => {
+/*
   if (null !== appointmentVOList.value && appointmentVOList.value.length === 1) {
     queryParams.patId = ""
   }
+*/
+  queryParams.patId = ""
 }
 
 /** 鍒濆鍖� **/

--
Gitblit v1.9.3