eight
2025-04-11 348e6bcdc7fa566a48b96dea53d24ec6dda49e1d
src/views/ecg/callingscreen/roomscreen.vue
@@ -1,36 +1,31 @@
<script setup lang="ts">
import {RoomBedVO} from "@/api/ecg/doctor";
import {RoomProfileVO} from "@/api/ecg/doctor";
import {RoomApi} from "@/api/ecg/room";
import {ScreenQueueVO, ScreenApi} from "@/api/ecg/screen";
import {CallApi, CallVO} from "@/api/ecg/call";
import {queueStatusConvert} from "../../../utils/statusFormatter";
import {useCheckTypeStore} from "@/store/modules/checkType";
import {getCheckTypeName, getCheckTypeSeqPrefix} from "../../../utils/checkTypeFormatter";
defineOptions({ name: 'roomscreen' })
let roomId = ref<number>(0)
const checkTypeStore = useCheckTypeStore()
const list = ref<ScreenQueueVO[]>([]) // 列表的数据
//const listPassed = ref<ScreenQueueVO[]>([]) // 过号列表的数据
const checkRelatedPatientList = ref<ScreenQueueVO[]>([])
const installRelatedPatientList = ref<ScreenQueueVO[]>([])
let curSpeakPat : CallVO | null = null;
const roomBed = ref<RoomBedVO>({
  roomId : null,
  roomName: null,
  bedNo: null
})
const roomProfile = ref<RoomProfileVO>()
const getList = async () => {
  const data = await ScreenApi.getRoomScreenData()
  list.value = data[1]
  // listPassed.value = data[2]
  const data = await ScreenApi.getRoomScreenData(roomId.value)
  checkRelatedPatientList.value = data[1]
  installRelatedPatientList.value = data[2]
}
const getRoomByIp = async () => {
  const data = await RoomApi.getRoomByIP()
  roomBed.value = data
  const data = await RoomApi.getRoomByIP(roomId.value)
  roomProfile.value = data
}
const startScrolling = () => {
@@ -77,10 +72,14 @@
}
const initiateSpeak = async () => {
  //TODO: 测试用,暂时不播音
  return;
  curSpeakPat = await CallApi.getNextInstallCall()
  if (curSpeakPat !== null) {
    speak("请、" + curSpeakPat.patName + "到" + curSpeakPat.roomName + "装机");
  }
  if (curSpeakPat == null)
    return;
  speak("请、" + curSpeakPat.patName + "到" + curSpeakPat.roomName + "装机");
}
const speak = (msg) => {
@@ -105,51 +104,97 @@
<template>
  <el-container style="height: 100%;">
    <el-header style="font-size: 25px">{{ roomBed.roomName }}</el-header>
    <el-header style="font-size: 25px">
      {{ roomProfile?.roomName||'-' }}
      <el-input-number v-model="roomId"  @change="getRoomByIp" />
    </el-header>
    <el-main>
      <el-table
          :data="list"
          :show-header="false"
          style="width: 100%; height: 100%; border: solid var(--el-color-primary-light-7); font-size: 18px;"
          :row-class-name="tableRowClassName"
      >
        <el-table-column
            prop="patName"
            label="预约序号"
            width="60px">
          <template #default="scope">
            <span style="display:inline-block; width:60px;">{{checkTypeStore.getCheckTypeSeqPrefix(scope.row.bookCheckType)}}{{scope.row.bookSeqNum}} </span>
          </template>
        </el-table-column>
        <el-table-column
            prop="patName"
            label="患者姓名"
            width="80px">
          <template #default="scope">
            <span style="display:inline-block; width:80px;">{{ nameDesensitize(scope.row.patName) }} </span>
          </template>
        </el-table-column>
        <el-table-column
            prop="patName"
            label="检查项目"
            width="80px">
          <template #default="scope">
            <span style="display:inline-block; width:80px;">{{scope.row.bookCheckType && checkTypeStore.getCheckTypeName(scope.row.bookCheckType)}} </span>
          </template>
        </el-table-column>
        <el-table-column label="状态" align="center" width="100px">
          <template #default="scope">
<!--            <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="scope.row.status" />-->
            {{queueStatusConvert(scope.row.status)}}
          </template>
        </el-table-column>
      </el-table>
      <div class="layout-content">
        <div class="left" v-if="roomProfile?.callingScreenType === 10 || roomProfile?.callingScreenType === 20 || roomProfile?.callingScreenType === 40 || roomProfile?.callingScreenType === 50">
          <el-table
              :data="checkRelatedPatientList"
              :show-header="false"
              style="width: 100%; height: 100%; border: solid var(--el-color-primary-light-7); font-size: 18px;"
              :row-class-name="tableRowClassName"
          >
            <el-table-column
                prop="patName"
                label="预约序号"
                width="60px">
              <template #default="scope">
                <span style="display:inline-block; width:60px;">{{getCheckTypeSeqPrefix(scope.row.bookCheckType)}}{{scope.row.bookSeqNum}} </span>
              </template>
            </el-table-column>
            <el-table-column
                prop="patName"
                label="患者姓名"
                width="80px">
              <template #default="scope">
                <span style="display:inline-block; width:80px;">{{ nameDesensitize(scope.row.patName) }} </span>
              </template>
            </el-table-column>
            <el-table-column
                prop="patName"
                label="检查项目"
                width="80px">
              <template #default="scope">
                <span style="display:inline-block; width:80px;">{{scope.row.bookCheckType && getCheckTypeName(scope.row.bookCheckType)}} </span>
              </template>
            </el-table-column>
            <el-table-column label="状态" align="center" width="200px">
              <template #default="scope">
                <!--            <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="scope.row.status" />-->
                {{queueStatusConvert(scope.row.status)}} {{scope.row.bedNo}}
              </template>
            </el-table-column>
          </el-table>
        </div>
        <div class="right" v-if="roomProfile?.callingScreenType === 30 || roomProfile?.callingScreenType === 40 || roomProfile?.callingScreenType === 50">
          <el-table
              :data="installRelatedPatientList"
              :show-header="false"
              style="width: 100%; height: 100%; border: solid var(--el-color-primary-light-7); font-size: 18px;"
              :row-class-name="tableRowClassName"
          >
            <el-table-column
                prop="patName"
                label="预约序号"
                width="60px">
              <template #default="scope">
                <span style="display:inline-block; width:60px;">{{getCheckTypeSeqPrefix(scope.row.bookCheckType)}}{{scope.row.bookSeqNum}} </span>
              </template>
            </el-table-column>
            <el-table-column
                prop="patName"
                label="患者姓名"
                width="80px">
              <template #default="scope">
                <span style="display:inline-block; width:80px;">{{ nameDesensitize(scope.row.patName) }} </span>
              </template>
            </el-table-column>
            <el-table-column
                prop="patName"
                label="检查项目"
                width="80px">
              <template #default="scope">
                <span style="display:inline-block; width:80px;">{{scope.row.bookCheckType && getCheckTypeName(scope.row.bookCheckType)}} </span>
              </template>
            </el-table-column>
            <el-table-column label="状态" align="center" width="200px">
              <template #default="scope">
                <!--            <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="scope.row.status" />-->
                {{queueStatusConvert(scope.row.status)}} {{scope.row.bedNo}}
              </template>
            </el-table-column>
          </el-table>
        </div>
      </div>
    </el-main>
    <el-button @click="speak('欢迎使用')" >欢迎使用</el-button>
<!--
    <el-footer height="100px" style="padding: 0 0">
          <el-header height="30px" style="background-color: #98b8e5; line-height: 30px;">过号区</el-header>
          <span v-for="(passedItem, index) in listPassed" :key="index">
          <span v-for="(passedItem, index) in installRelatedPatientList" :key="index">
                {{nameDesensitize(passedItem.patName) + "&nbsp;&nbsp;&nbsp;&nbsp;"}}
          </span>
    </el-footer>
@@ -187,4 +232,15 @@
  --el-table-tr-bg-color: var(--el-color-success-light-9);
}
.layout-content {
  display: flex;
  height: 100%;
}
.left, .right {
  flex: 1;
  border: 1px solid #ccc;
  padding: 10px;
}
</style>