From 3418a10025716ed4b14f96cb4c52b5ce0875e563 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期二, 26 十一月 2024 21:46:19 +0800
Subject: [PATCH] 排队界面 召回操作

---
 src/views/ecg/queue/index.vue |   28 ++++++++++++++++++++--------
 1 files changed, 20 insertions(+), 8 deletions(-)

diff --git a/src/views/ecg/queue/index.vue b/src/views/ecg/queue/index.vue
index 254e0bd..c12cd38 100644
--- a/src/views/ecg/queue/index.vue
+++ b/src/views/ecg/queue/index.vue
@@ -136,12 +136,16 @@
           {{scope.row.patName}} ({{genderFormat(scope.row.patGender)}})
         </template>
       </el-table-column>
-      <el-table-column label="妫�鏌ョ被鍨�" align="center" prop="bookCheckType" >
+      <el-table-column label="妫�鏌ョ被鍨�" align="center" prop="bookCheckType" min-width="100px">
         <template #default="scope">
           {{checkTypeStore.getCheckTypeName(scope.row.bookCheckType)}}
         </template>
       </el-table-column>
-      <el-table-column label="鎮h�呰鎯�" align="center" prop="patDetails" />
+      <el-table-column label="鎮h�呰鎯�" align="center" prop="patDetails" min-width="300px">
+        <template #default="scope">
+          <span>{{scope.row.patDetails?.mobile}} {{scope.row.patDetails?.wardDesc}} {{scope.row.patDetails?.bedNo}}</span>
+        </template>
+      </el-table-column>
       <el-table-column label="棰勭害鏃舵" align="center" prop="bookTimeslot" >
         <template #default="scope">
           <dict-tag :type="DICT_TYPE.ECG_BOOK_TIMESLOT" :value="scope.row.bookTimeslot" />
@@ -172,7 +176,7 @@
           <el-button
             link
             type="primary"
-            @click="openAppointmentForm('preview', scope.row.patId)"
+            @click="openAppointmentForm('preview', scope.row.patId, scope.row.bookCheckType)"
             v-hasPermi="['ecg:appointment:preview']"
           >
             鏌ョ湅
@@ -200,7 +204,7 @@
             link
             type="danger"
             @click="recall(scope.row)"
-            v-if="scope.row.status === 5"
+            v-if="scope.row.status === 5 || scope.row.status === 7"
             v-hasPermi="['ecg:queue:recall']"
           >
             鍙洖
@@ -293,8 +297,8 @@
 const openForm = (type: string, id?: number) => {
   formRef.value.open(type, id)
 }
-const openAppointmentForm = (type: string, patId: string, status: number) => {
-  formRef.value.openByQueue(type, patId, status)
+const openAppointmentForm = (type: string, patId: string, checkType: number) => {
+  formRef.value.openByQueue(type, patId, checkType)
 }
 
 /** 鍒犻櫎鎸夐挳鎿嶄綔 */
@@ -330,10 +334,18 @@
     roomId: item.roomId,
     bedNo: item.bedNo,
     patId: item.patId,
-    jumpFlag: 0
+    checkType: item.bookCheckType,
+    //jumpFlag: 0,
+    roomId_operator: item.roomId,  // 闃熷垪鐣岄潰 鍙洖鎿嶄綔鏃� 淇濇寔鍘熸潵鐨勫伐浣�
+    bedNo_operator: item.bedNo,    // 闃熷垪鐣岄潰 鍙洖鎿嶄綔鏃� 淇濇寔鍘熸潵鐨勫伐浣�
   }
 
-  const data = await DoctorApi.recallPatient(patientVO);
+  let data = ""
+  if (item.status === 5) // 甯歌銆侀鐢� 杩囧彿
+    data = await DoctorApi.recallPatient(patientVO);
+  else if (item.status === 7)
+    data = await DoctorApi.recallInstallPatient(patientVO);
+
   message.info(data)
   // 鍒锋柊鍒楄〃
   await getList()

--
Gitblit v1.9.3