eight
2024-08-27 2d093a888b13f7a020b5923da571733edea7affa
src/views/ecg/room/RoomLoginSelect.vue
@@ -2,25 +2,21 @@
  <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" v-model="curSel"/>
        <RoomBedSelect :title="key" :bedList="value" :curBed="curSel" @haveSeat="haveSeat"/>
      </div>
    </div>
    <el-button type="primary" @click="roomConfirm">确认</el-button>
    <el-button type="primary" @click="test">TEST</el-button>
  </div>
</template>
<script setup lang="ts">
import {RoomBedSelect} from "@/components/RoomBedSelect"
import { RoomApi, RoomVO } from '@/api/ecg/room'
import { queueApi, queueVO } from '@/api/ecg/queue'
import { queueApi } from '@/api/ecg/queue'
import {useUserStore} from "@/store/modules/user";
import {CACHE_KEY, useCache} from "@/hooks/web/useCache";
import {ElMessage} from "element-plus";
import {isStringEmpty}  from "@/utils/stringUtil"
const {  push } = useRouter()
const { wsCache } = useCache()
defineOptions({ name: 'RoomLoginSelect' })
@@ -31,17 +27,9 @@
const bedMap = ref() // 列表的数据
const originalSel = ref<RoomVO>({
    id: 0,
    roomId: 0,
    roomName: "",
    bedNo: "",
    status: 0,
    docId: 0,
    docName: ""
});
const originalSel = ref<RoomVO>();
const curSel = ref<RoomVO>({
let curSel = ref<RoomVO>({
    id: 0,
    roomId: 0,
    roomName: "",
@@ -81,7 +69,10 @@
  }
  if (curSel.value !== originalSel.value) {
      const data = await queueApi.bedDoctorOn(curSel.value)
      console.info(originalSel.value)
      let data;
      if (originalSel.value !== undefined) {
          data = await queueApi.bedDoctorOff(originalSel.value)
      if (data !== 0) {
          ElMessage({
              message: '内部错误!' + data,
@@ -91,22 +82,36 @@
          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 === "/login-room-select" )
  else if(route.redirectedFrom?.fullPath === "/roomselect" )
      push({ path: "/"})
  else
    push({ path: route.redirectedFrom?.fullPath})
}
const test = () => {
  userStore.getRoom;
  console.info(userStore.getRoom);
const haveSeat = (roomVO: RoomVO) => {
    console.info(roomVO)
  const userInfo = wsCache.get(CACHE_KEY.USER)
  console.info(userInfo);
    curSel.value.docId = null
    curSel.value.docName = ''
    roomVO.docId = curUser.id
    roomVO.docName = curUser.nickname
    curSel.value = roomVO
}
/** 初始化 **/