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/doctor/DevInstall.vue |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/src/views/ecg/doctor/DevInstall.vue b/src/views/ecg/doctor/DevInstall.vue
index 03da696..8191f25 100644
--- a/src/views/ecg/doctor/DevInstall.vue
+++ b/src/views/ecg/doctor/DevInstall.vue
@@ -12,7 +12,9 @@
 const roomBedVO = ref<RoomBedVO>({
     roomId: null,
     roomName: null,
-    bedNo: null
+    bedNo: null,
+    checkTypes: null,
+    opType: null
 })
 
 const installingPatient = ref<QueueVO>({
@@ -129,6 +131,8 @@
     roomBedVO.value.roomId = userStore.room!.roomId
     roomBedVO.value.roomName = userStore.room!.roomName
     roomBedVO.value.bedNo = userStore.room!.bedNo
+    roomBedVO.value.checkTypes = userStore.room!.checkTypes
+    roomBedVO.value.opType = userStore.room!.opType
 
     timerRunFlag = true
     doctorTimer()
@@ -150,7 +154,8 @@
 
 const onEventDevInstall = () => {
    //console.info("onDevInstallPanelEvent...")
-  // onStagePatient.value.patId = ""
+  installingPatient.value.patId = ""
+  initLoad()
 }
 
 const onEventRecallFinish = () => {
@@ -168,14 +173,14 @@
 <template>
   <el-container>
     <el-header style="background-color: var(--el-color-primary-light-7); font-size: 24px">
-      <TitlePanel :titleType=1 :room="roomBedVO" :patientStatistic="patientStat" />
+      <TitlePanel :titleType=2 :room="roomBedVO" :patientStatistic="patientStat" />
     </el-header>
     <el-container style="height: 100%;">
       <el-main style="border: solid var(--el-color-primary-light-7)">
         <DevInstallPanel :room="roomBedVO" ref="devInstallPanelRef" @event_dev_install="onEventDevInstall"/>
       </el-main>
       <el-aside width="400px" style="border: solid var(--el-color-primary-light-7)">
-          <QueuePanel :queue="patientList" @event_RecallFinish="onEventRecallFinish"/>
+          <QueuePanel :room="roomBedVO" :queue="patientList" @event_RecallFinish="onEventRecallFinish"/>
       </el-aside>
     </el-container>
     <el-container class="right-bottom">

--
Gitblit v1.9.3