From 88d284ea4a0c9b5fe50020b4112229e13d15dbcb Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期二, 27 八月 2024 14:40:02 +0800
Subject: [PATCH] update

---
 src/views/ecg/room/RoomLoginSelect.vue |  113 ++++++++++++++++++++++++++++++++++++++++++++++++--------
 1 files changed, 97 insertions(+), 16 deletions(-)

diff --git a/src/views/ecg/room/RoomLoginSelect.vue b/src/views/ecg/room/RoomLoginSelect.vue
index e653ad4..8cc83b1 100644
--- a/src/views/ecg/room/RoomLoginSelect.vue
+++ b/src/views/ecg/room/RoomLoginSelect.vue
@@ -1,36 +1,117 @@
 <template>
-  <div style="display: flex; flex-wrap: wrap; margin-bottom: 20px">
-    <div class=wrap v-for="(value, key) in bedMap" :key="key">
-      <RoomBedSelect :title="key" :bedList="value" v-model="curSel"/>
+  <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"/>
+      </div>
     </div>
+    <el-button type="primary" @click="roomConfirm">纭</el-button>
   </div>
-  <el-button @click="roomConfirm">KKKK</el-button>
-<!--
-  <el-button type="primary">Primary Button</el-button>
-  <el-button type="success">Success Button</el-button>
-  <el-button type="info">Info Button</el-button>
-  <el-button type="warning">Warning Button</el-button>
-  <el-button type="danger">Danger Button</el-button>
--->
 </template>
 
 <script setup lang="ts">
 import {RoomBedSelect} from "@/components/RoomBedSelect"
 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 {isStringEmpty}  from "@/utils/stringUtil"
+const {  push } = useRouter()
 
 defineOptions({ name: 'RoomLoginSelect' })
 
-const bedMap = ref<Map<String, RoomVO[]>>() // 鍒楄〃鐨勬暟鎹�
+const route = useRoute();
 
-const curSel = ref<String>("B2");
+const userStore = useUserStore()
+const curUser = userStore.getUser
+
+const bedMap = ref() // 鍒楄〃鐨勬暟鎹�
+
+const originalSel = ref<RoomVO>();
+
+let curSel = ref<RoomVO>({
+    id: 0,
+    roomId: 0,
+    roomName: "",
+    bedNo: "",
+    status: 0,
+    docId: 0,
+    docName: ""
+});
 
 /** 鏌ヨ鍒楄〃 */
 const getList = async () => {
   const data = await RoomApi.getOnstageBedMap()
-  bedMap.value = data as Map<String, RoomVO[]>
+  bedMap.value = data;
+
+    for (const key in data) {
+        const roomVOArray = data[key] as RoomVO[];
+        roomVOArray.forEach((roomVO) => {
+            if (roomVO.docId === curUser.id) {
+                originalSel.value = roomVO
+                curSel.value = roomVO
+                return
+            }
+        } )
+    }
 }
 
-const roomConfirm = () => {
+const roomConfirm = async () => {
+  console.info(curSel.value)
+
+  if (curSel.value.roomId === 0) {
+    ElMessage({
+      message: '璇峰厛閫夋嫨宸ヤ綔鐨勪綅缃�!',
+      type: 'info',
+      duration: 3000 // 鑷姩鍏抽棴鏃堕棿锛岄粯璁や负3000ms
+    });
+    return
+  }
+
+  if (curSel.value !== originalSel.value) {
+      console.info(originalSel.value)
+      let data;
+      if (originalSel.value !== undefined) {
+          data = await queueApi.bedDoctorOff(originalSel.value)
+          if (data !== 0) {
+              ElMessage({
+                  message: '鍐呴儴閿欒!' + data,
+                  type: 'info',
+                  duration: 3000 // 鑷姩鍏抽棴鏃堕棿锛岄粯璁や负3000ms
+              });
+              return
+          }
+      }
+      data = await queueApi.bedDoctorOn(curSel.value)
+      if (data !== 0) {
+          ElMessage({
+              message: '鍐呴儴閿欒!' + data,
+              type: 'info',
+              duration: 3000 // 鑷姩鍏抽棴鏃堕棿锛岄粯璁や负3000ms
+          });
+          return
+      }
+      originalSel.value = curSel.value
+  }
+
+  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})
+}
+
+const haveSeat = (roomVO: RoomVO) => {
+    console.info(roomVO)
+
+    curSel.value.docId = null
+    curSel.value.docName = null
+
+    roomVO.docId = curUser.id
+    roomVO.docName = curUser.nickname
+    curSel.value = roomVO
 }
 
 /** 鍒濆鍖� **/
@@ -41,7 +122,7 @@
 </script>
 
 <style scoped lang="scss">
-.wrap {
+.roomwrap {
   margin-right: 20px;
 }
 </style>

--
Gitblit v1.9.3