From 8d11e11a86bbfe84ea4156bd68e865bb2986e9bd Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期一, 18 十一月 2024 11:18:21 +0800
Subject: [PATCH] 领用界面 自动叫号控制

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

diff --git a/src/views/ecg/appointment/AppointmentConfirm.vue b/src/views/ecg/appointment/AppointmentConfirm.vue
index 3d5d74c..41ae189 100644
--- a/src/views/ecg/appointment/AppointmentConfirm.vue
+++ b/src/views/ecg/appointment/AppointmentConfirm.vue
@@ -28,8 +28,7 @@
           <el-radio
               v-for="dict in getIntDictOptions(DICT_TYPE.SYSTEM_USER_SEX)"
               :key="dict.value"
-              :value="dict.value"
-          >
+              :value="dict.value">
             {{ dict.label }}
           </el-radio>
         </el-radio-group>
@@ -137,7 +136,7 @@
   const data = await AppointmentApi.queryAndCreateAppointmentByPatId(queryParams.patId) // 瀵瑰簲鏁版嵁搴撲腑 pat_id
   console.info( data )
   appointmentVOList.value = data
-  if (null !== data) {
+  if (null !== data && data.length > 0) {
     formData.value = data[0]
     console.info( formData.value )
     return
@@ -152,6 +151,7 @@
 
 /** 閲嶇疆琛ㄥ崟 */
 const resetForm = () => {
+  appointmentVOList.value.length=0;
   formData.value = {
     id: 0,
     applyNo: "",

--
Gitblit v1.9.3