eight
2024-10-14 ddf15c484eb3208b76cdb25c2737cd4e960ea8df
src/views/ecg/room/RoomLoginSelect.vue
@@ -4,7 +4,7 @@
      <div class=roomwrap v-for="(value, key) in bedMap" :key="key">
        <RoomBedSelect :title="key" :bedList="value" :curBed="curSel" @event-haveseat="haveSeat" @event-leaveseat="leaveSeat"/>
      </div>
      <div v-if="isEmptyOpeningBed">"工位没有开放"</div>
      <el-empty v-if="isEmptyOpeningBed" description="工位没有开放"/>
    </div>
    <div>
      <el-button @click="confirmCurSel">确认</el-button>
@@ -16,11 +16,11 @@
<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' })
@@ -44,6 +44,12 @@
/** 初始化 **/
onMounted(() => {
  console.info( curUser.id + " onMounted")
    getList()
})
onActivated(() => {
  console.info( curUser.id + " onActivated")
    getList()
})
@@ -55,32 +61,49 @@
const getList = async () => {
  resetCurSel()
  console.info( "getList before"  )
  const data = await RoomApi.getOpeningBedMap()
  console.info(data)
  bedMap.value = data;
  console.info( "getList after " + data )
  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
              return
          }
      } )
        if (roomVO.docId === curUser.id) {
          curSel.value = roomVO
          userStore.setRoomInfoAction(curSel.value)
        }
      })
  }
}
const haveSeatConfirm = async (newRoomVO: RoomVO) => {
  const tempRoomVO = cloneDeep(newRoomVO)
  tempRoomVO.docId = curUser.id
  tempRoomVO.docName = curUser.nickname
const confirmCurSel = () => {
  if (curSel.value.docId === null ) {
    ElMessage({
      message: '请先选择工作的位置!',
      type: 'info',
      duration: 3000 // 自动关闭时间,默认为3000ms
    });
    return
  }
  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 haveSeatConfirm = async (newRoomVO: RoomVO) => {
  if (newRoomVO !== curSel.value) {
    let data;
    if (curSel.value.docId !== null) {
      data = await queueApi.bedDoctorOff(curSel.value)
      data = await DoctorApi.bedDoctorOff(curSel.value)
      if (data !== 0) {
        ElMessage({
          message: '内部错误!' + data,
@@ -90,10 +113,14 @@
        return
      }
    }
    curSel.value.docId = null
    curSel.value.docName = null
    data = await queueApi.bedDoctorOn(tempRoomVO)
    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,
@@ -102,24 +129,30 @@
      });
      return
    }
    userStore.setRoomInfoAction(tempRoomVO)
    newRoomVO.docId = curUser.id
    newRoomVO.docName = curUser.nickname
    curSel.value = newRoomVO;
  }
  newRoomVO.docId = curUser.id
  newRoomVO.docName = curUser.nickname
  curSel.value = newRoomVO
  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})
  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.roomId !== null) {
      let data = await queueApi.bedDoctorOff(curSel.value)
  if (curSel.value.docId !== null) {
      let data = await DoctorApi.bedDoctorOff(curSel.value)
      if (data !== 0) {
          ElMessage({
              message: '内部错误!' + data,
@@ -128,13 +161,11 @@
          });
          return
      }
    curSel.value.docId = null
    curSel.value.docName = null
    resetCurSel()
  }
  resetCurSel()
  userStore.clearRoomInfoAction()
  getList()
}
const haveSeat = async (newRoomVO: RoomVO) => {
@@ -147,10 +178,8 @@
        type: 'warning'
      }
  ).then(async () => {
    console.log('确认');
    haveSeatConfirm(newRoomVO)
  }).catch(() => {
    console.log('取消');
  });
}
@@ -164,30 +193,9 @@
        type: 'warning'
      }
  ).then(() => {
    console.log('确认');
    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})
}
const resetCurSel = () => {