| | |
| | | </div> |
| | | </el-main> |
| | | <el-aside width="250px"> |
| | | <div>开诊时间:{{ openingPeriod }} {{ monitorInfo.openingFlag }} </div> |
| | | <div>工位概况: {{monitorInfo.openingBedNum}} {{monitorInfo.docBedNum}} {{monitorInfo.routingBedNum}} </div> |
| | | <div>开诊时间:{{ openingPeriod }} {{ monitorInfo?.openingFlag }} </div> |
| | | <div>工位概况: {{monitorInfo?.openingBedNum}} {{monitorInfo?.docBedNum}} {{monitorInfo?.routingBedNum}} </div> |
| | | <div v-for="(value, key) in monitorInfo.checkTypeBedInfo" :key="key"> |
| | | {{ getCheckTypeName(Number(key)) }} {{ value }} |
| | | </div> |
| | |
| | | import { QueueApi } from '@/api/ecg/queue' |
| | | import { getConfigKey } from '@/api/infra/config' |
| | | import {useCheckTypeStore} from "@/store/modules/checkType"; |
| | | import {getCheckTypeName} from "../../../utils/checkTypeFormatter"; |
| | | |
| | | defineOptions({ name: 'RoomSetting' }) |
| | | |