| | |
| | | </el-main> |
| | | <el-aside width="250px"> |
| | | <div>开诊时间:{{ openingPeriod }} {{ monitorInfo.openingFlag }} </div> |
| | | <div>工位概况: {{monitorInfo.queueNum}} {{monitorInfo.activeQueueNum}} {{monitorInfo.priorityQueueNum}} </div> |
| | | <div>工位概况: {{monitorInfo.openingBedNum}} {{monitorInfo.docBedNum}} {{monitorInfo.routingBedNum}} </div> |
| | | <div v-for="(value, key) in monitorInfo.checkTypeBedInfo" :key="key"> |
| | | {{ checkTypeStore.getCheckTypeName(Number(key)) }} {{ value }} |
| | | </div> |
| | | <div>工位概况:开放的工位 有医生工位 参与分流工位</div> |
| | | <div>检查类型 开放的工位 (检查/领用 | 安装) 有医生工位 (检查/领用 | 安装)</div> |
| | | </el-aside> |
| | | </el-container> |
| | | </template> |
| | |
| | | |
| | | const openingPeriod = ref<string>('') |
| | | const monitorInfo = ref<MonitorInfo>({ |
| | | queueNum: 0, |
| | | activeQueueNum: 0, |
| | | priorityQueueNum: 0, |
| | | openingBedNum: 0, |
| | | docBedNum: 0, |
| | | routingBedNum: 0, |
| | | openingFlag: 0, |
| | | checkTypeBedInfo: {} |
| | | }) |