From f3b1dd339c98b063e6311e0b07367c8d11fdc8cf Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期三, 28 八月 2024 16:34:55 +0800
Subject: [PATCH] auto refresh doctor page

---
 src/views/ecg/room/RoomLoginSelect.vue |   59 +++++++++++++++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 53 insertions(+), 6 deletions(-)

diff --git a/src/views/ecg/room/RoomLoginSelect.vue b/src/views/ecg/room/RoomLoginSelect.vue
index d5180f4..e3ccc3f 100644
--- a/src/views/ecg/room/RoomLoginSelect.vue
+++ b/src/views/ecg/room/RoomLoginSelect.vue
@@ -2,13 +2,10 @@
   <div style="display: flex; flex-direction: column; align-items: center;">
     <div style="display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 20px">
       <div class=roomwrap v-for="(value, key) in bedMap" :key="key">
-        <RoomBedSelect :title="key" :bedList="value" :curBed="curSel" @haveSeat="haveSeat" @leaveSeat="leaveSeat"/>
+        <RoomBedSelect :title="key" :bedList="value" :curBed="curSel" @event-haveseat="haveSeat" @event-leaveseat="leaveSeat"/>
       </div>
     </div>
-    <div>
-      <el-button type="primary" @click="haveSeatConfirm">鍏ュ骇纭</el-button>
-      <el-button type="primary" @click="leaveSeatConfirm">绂诲骇纭</el-button>
-    </div>
+    <el-button @click="confirmCurSel">纭</el-button>
   </div>
 </template>
 
@@ -17,7 +14,7 @@
 import { RoomApi, RoomVO } from '@/api/ecg/room'
 import { queueApi } from '@/api/ecg/queue'
 import {useUserStore} from "@/store/modules/user";
-import {ElMessage} from "element-plus";
+import {ElMessage, ElMessageBox} from "element-plus";
 import {isStringEmpty} from "@/utils/stringUtil";
 const {  push } = useRouter()
 
@@ -131,14 +128,40 @@
 }
 
 const haveSeat = (roomVO: RoomVO) => {
+  ElMessageBox.confirm(
+      '鍏ュ骇, 鏄惁缁х画?',
+      '鎻愮ず',
+      {
+        confirmButtonText: '纭畾',
+        cancelButtonText: '鍙栨秷',
+        type: 'warning'
+      }
+  ).then(() => {
+    console.log('纭');
     curSel.value.docId = null
     curSel.value.docName = null
 
     roomVO.docId = curUser.id
     roomVO.docName = curUser.nickname
     curSel.value = roomVO
+
+    haveSeatConfirm()
+  }).catch(() => {
+    console.log('鍙栨秷');
+  });
 }
+
 const leaveSeat = (roomVO: RoomVO) => {
+  ElMessageBox.confirm(
+      '绂诲骇, 鏄惁缁х画?',
+      '鎻愮ず',
+      {
+        confirmButtonText: '纭畾',
+        cancelButtonText: '鍙栨秷',
+        type: 'warning'
+      }
+  ).then(() => {
+    console.log('纭');
     curSel.value.docId = null
     curSel.value.docName = null
 
@@ -151,6 +174,30 @@
       docId: null,
       docName: null
     }
+
+    leaveSeatConfirm()
+  }).catch(() => {
+    console.log('鍙栨秷');
+  });
+}
+
+const confirmCurSel = () => {
+  if (curSel.value.docId === null ) {
+    ElMessage({
+      message: '璇峰厛閫夋嫨宸ヤ綔鐨勪綅缃�!',
+      type: 'info',
+      duration: 3000 // 鑷姩鍏抽棴鏃堕棿锛岄粯璁や负3000ms
+    });
+    return
+  }
+
+  userStore.setRoomInfoAction(curSel.value)
+  if (isStringEmpty(route.redirectedFrom?.fullPath))
+    push({ path: "/"})
+  else if(route.redirectedFrom?.fullPath === "/roomselect" )
+    push({ path: "/"})
+  else
+    push({ path: route.redirectedFrom?.fullPath})
 }
 
 /** 鍒濆鍖� **/

--
Gitblit v1.9.3