eight
2024-08-27 fe792c0638eeaaba49289de00c4c59bd6279ecd9
src/views/ecg/room/RoomLoginSelect.vue
@@ -2,10 +2,13 @@
  <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"/>
        <RoomBedSelect :title="key" :bedList="value" :curBed="curSel" @haveSeat="haveSeat" @leaveSeat="leaveSeat"/>
      </div>
    </div>
    <el-button type="primary" @click="roomConfirm">确认</el-button>
    <div>
      <el-button type="primary" @click="haveSeatConfirm">入座确认</el-button>
      <el-button type="primary" @click="leaveSeatConfirm">离座确认</el-button>
    </div>
  </div>
</template>
@@ -15,7 +18,7 @@
import { queueApi } from '@/api/ecg/queue'
import {useUserStore} from "@/store/modules/user";
import {ElMessage} from "element-plus";
import {isStringEmpty}  from "@/utils/stringUtil"
import {isStringEmpty} from "@/utils/stringUtil";
const {  push } = useRouter()
defineOptions({ name: 'RoomLoginSelect' })
@@ -30,13 +33,13 @@
const originalSel = ref<RoomVO>();
let curSel = ref<RoomVO>({
    id: 0,
    roomId: 0,
    roomName: "",
    bedNo: "",
    status: 0,
    docId: 0,
    docName: ""
  id: null,
  roomId: null,
  roomName: null,
  bedNo: null,
  status: null,
  docId: null,
  docName: null
});
/** 查询列表 */
@@ -56,10 +59,8 @@
    }
}
const roomConfirm = async () => {
  console.info(curSel.value)
  if (curSel.value.roomId === 0) {
const haveSeatConfirm = async () => {
  if (curSel.value.roomId === null) {
    ElMessage({
      message: '请先选择工作的位置!',
      type: 'info',
@@ -69,20 +70,52 @@
  }
  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
          }
    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)
    }
    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,
@@ -91,21 +124,13 @@
          });
          return
      }
      originalSel.value = curSel.value
      originalSel.value = undefined
  }
  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})
  userStore.clearRoomInfoAction()
}
const haveSeat = (roomVO: RoomVO) => {
    console.info(roomVO)
    curSel.value.docId = null
    curSel.value.docName = null
@@ -113,6 +138,20 @@
    roomVO.docName = curUser.nickname
    curSel.value = roomVO
}
const leaveSeat = (roomVO: RoomVO) => {
    curSel.value.docId = null
    curSel.value.docName = null
    curSel.value = {
      id: null,
      roomId: null,
      roomName: null,
      bedNo: null,
      status: null,
      docId: null,
      docName: null
    }
}
/** 初始化 **/
onMounted(() => {