From ef48f9bce2b2cb0df3c3abb36aab0089ba7df331 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期五, 20 九月 2024 14:59:39 +0800
Subject: [PATCH] 移除 已不用的字段

---
 src/views/ecg/room/RoomLoginSelect.vue |  300 ++++++++++++++++++++++++++++++-----------------------------
 1 files changed, 152 insertions(+), 148 deletions(-)

diff --git a/src/views/ecg/room/RoomLoginSelect.vue b/src/views/ecg/room/RoomLoginSelect.vue
index a69c86d..5b619d9 100644
--- a/src/views/ecg/room/RoomLoginSelect.vue
+++ b/src/views/ecg/room/RoomLoginSelect.vue
@@ -2,20 +2,25 @@
   <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>
+      <el-empty v-if="isEmptyOpeningBed" description="宸ヤ綅娌℃湁寮�鏀�"/>
     </div>
-    <el-button @click="confirmCurSel">纭</el-button>
+    <div>
+      <el-button @click="confirmCurSel">纭</el-button>
+      <el-button @click="resetPage">閲嶇疆</el-button>
+    </div>
   </div>
 </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, ElMessageBox} from "element-plus";
 import {isStringEmpty} from "@/utils/stringUtil";
+import {cloneDeep} from "lodash-es";
+import {DoctorApi} from "@/api/ecg/doctor";
 const {  push } = useRouter()
 
 defineOptions({ name: 'RoomLoginSelect' })
@@ -25,11 +30,9 @@
 const userStore = useUserStore()
 const curUser = userStore.getUser
 
+const isEmptyOpeningBed = ref<boolean>(true);
 const bedMap = ref() // 鍒楄〃鐨勬暟鎹�
-
-const originalSel = ref<RoomVO>();
-
-let curSel = ref<RoomVO>({
+const curSel = ref<RoomVO>({
   id: null,
   roomId: null,
   roomName: null,
@@ -37,148 +40,43 @@
   status: null,
   docId: null,
   docName: null
-});
+})
+
+/** 鍒濆鍖� **/
+onMounted(() => {
+  console.info( curUser.id + " onMounted")
+    getList()
+})
+
+onActivated(() => {
+  console.info( curUser.id + " onActivated")
+    getList()
+})
+
+const resetPage = () => {
+    getList()
+}
 
 /** 鏌ヨ鍒楄〃 */
 const getList = async () => {
-  const data = await RoomApi.getOnstageBedMap()
+  resetCurSel()
+
+  console.info( "getList before"  )
+  const data = await RoomApi.getOpeningBedMap()
   bedMap.value = data;
+  console.info( "getList after " + 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 haveSeatConfirm = async () => {
-  if (curSel.value.roomId === null) {
-    ElMessage({
-      message: '璇峰厛閫夋嫨宸ヤ綔鐨勪綅缃�!',
-      type: 'info',
-      duration: 3000 // 鑷姩鍏抽棴鏃堕棿锛岄粯璁や负3000ms
-    });
-    return
+  isEmptyOpeningBed.value = true
+  for (const key in data) {
+      isEmptyOpeningBed.value = false
+      const roomVOArray = data[key] as RoomVO[];
+      roomVOArray.forEach((roomVO) => {
+        if (roomVO.docId === curUser.id) {
+          curSel.value = roomVO
+          userStore.setRoomInfoAction(curSel.value)
+        }
+      })
   }
-
-  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 leaveSeatConfirm = async () => {
-  if (curSel.value.roomId !== null) {
-    ElMessage({
-      message: '璇峰厛绂诲紑宸ヤ綅, 鍐嶇‘璁ょ搴�!',
-      type: 'info',
-      duration: 3000 // 鑷姩鍏抽棴鏃堕棿锛岄粯璁や负3000ms
-    });
-    return
-  }
-
-  if (originalSel.value !== undefined) {
-      let data = await queueApi.bedDoctorOff(originalSel.value)
-      if (data !== 0) {
-          ElMessage({
-              message: '鍐呴儴閿欒!' + data,
-              type: 'info',
-              duration: 3000 // 鑷姩鍏抽棴鏃堕棿锛岄粯璁や负3000ms
-          });
-          return
-      }
-      originalSel.value = undefined
-  }
-
-  userStore.clearRoomInfoAction()
-}
-
-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
-
-    curSel.value = {
-      id: null,
-      roomId: null,
-      roomName: null,
-      bedNo: null,
-      status: null,
-      docId: null,
-      docName: null
-    }
-
-    leaveSeatConfirm()
-  }).catch(() => {
-    console.log('鍙栨秷');
-  });
 }
 
 const confirmCurSel = () => {
@@ -192,17 +90,123 @@
   }
 
   if (isStringEmpty(route.redirectedFrom?.fullPath))
-    push({ path: "/"})
+    push({ path: "/ecg/doctor"})
   else if(route.redirectedFrom?.fullPath === "/roomselect" )
-    push({ path: "/"})
+    push({ path: "/ecg/doctor"})
+  else if(route.redirectedFrom?.fullPath === "/ecg/roomselect" )
+    push({ path: "/ecg/doctor"})
   else
     push({ path: route.redirectedFrom?.fullPath})
 }
 
-/** 鍒濆鍖� **/
-onMounted(() => {
+const haveSeatConfirm = async (newRoomVO: RoomVO) => {
+  if (newRoomVO !== curSel.value) {
+    let data;
+    if (curSel.value.docId !== null) {
+      data = await DoctorApi.bedDoctorOff(curSel.value)
+      if (data !== 0) {
+        ElMessage({
+          message: '鍐呴儴閿欒!' + data,
+          type: 'info',
+          duration: 3000 // 鑷姩鍏抽棴鏃堕棿锛岄粯璁や负3000ms
+        });
+        return
+      }
+    }
+
+    resetCurSel()
+    userStore.clearRoomInfoAction()
+
+    const tempRoomVO = cloneDeep(newRoomVO)
+    tempRoomVO.docId = curUser.id
+    tempRoomVO.docName = curUser.nickname
+    data = await DoctorApi.bedDoctorOn(tempRoomVO)
+    if (data !== 0) {
+      ElMessage({
+        message: '鍐呴儴閿欒!' + data,
+        type: 'info',
+        duration: 3000 // 鑷姩鍏抽棴鏃堕棿锛岄粯璁や负3000ms
+      });
+      return
+    }
+
+    userStore.setRoomInfoAction(tempRoomVO)
+    newRoomVO.docId = curUser.id
+    newRoomVO.docName = curUser.nickname
+    curSel.value = newRoomVO;
+  }
+
+  if (isStringEmpty(route.redirectedFrom?.fullPath)) {
+    push({path: "/ecg/doctor"})
+  }
+  else if(route.redirectedFrom?.fullPath === "/roomselect" ) {
+    push({path: "/ecg/doctor"})
+  }
+  else if(route.redirectedFrom?.fullPath === "/ecg/roomselect" ) {
+    push({path: "/ecg/doctor"})
+  }
+  else {
+    push({path: route.redirectedFrom?.fullPath})
+  }
+}
+
+const leaveSeatConfirm = async () => {
+  if (curSel.value.docId !== null) {
+      let data = await DoctorApi.bedDoctorOff(curSel.value)
+      if (data !== 0) {
+          ElMessage({
+              message: '鍐呴儴閿欒!' + data,
+              type: 'info',
+              duration: 3000 // 鑷姩鍏抽棴鏃堕棿锛岄粯璁や负3000ms
+          });
+          return
+      }
+  }
+
+  resetCurSel()
+  userStore.clearRoomInfoAction()
   getList()
-})
+}
+
+const haveSeat = async (newRoomVO: RoomVO) => {
+  ElMessageBox.confirm(
+      '鍏ュ骇, 鏄惁缁х画?',
+      '鎻愮ず',
+      {
+        confirmButtonText: '纭畾',
+        cancelButtonText: '鍙栨秷',
+        type: 'warning'
+      }
+  ).then(async () => {
+    haveSeatConfirm(newRoomVO)
+  }).catch(() => {
+  });
+}
+
+const leaveSeat = (roomVO: RoomVO) => {
+  ElMessageBox.confirm(
+      '绂诲骇, 鏄惁缁х画?',
+      '鎻愮ず',
+      {
+        confirmButtonText: '纭畾',
+        cancelButtonText: '鍙栨秷',
+        type: 'warning'
+      }
+  ).then(() => {
+    leaveSeatConfirm()
+  }).catch(() => {
+  });
+}
+
+const resetCurSel = () => {
+    curSel.value.id = null
+    curSel.value.roomId = null
+    curSel.value.roomName = null
+    curSel.value.bedNo = null
+    curSel.value.status = null
+    curSel.value.docId = null
+    curSel.value.docName = null
+}
 
 </script>
 

--
Gitblit v1.9.3