| | |
| | | }) |
| | | |
| | | const roomBedVO: RoomBedVO = { |
| | | roomId: userStore.room.roomId, |
| | | bedNo: userStore.room.bedNo |
| | | roomId: userStore.room!.roomId, |
| | | bedNo: userStore.room!.bedNo |
| | | } |
| | | |
| | | const props = defineProps({ |
| | |
| | | </script> |
| | | |
| | | <template> |
| | | 已就诊{{patientStatistic.finishedNum}} 准备中{{patientStatistic.readyNum}} |
| | | 过号{{patientStatistic.passedNum}} 排队中{{patientStatistic.queuingNum}} |
| | | <div class="mytitle"> |
| | | <div> |
| | | 诊室{{roomBedVO.roomId}} 工位{{roomBedVO.bedNo}} |
| | | </div> |
| | | <div> |
| | | 已就诊{{patientStatistic.finishedNum==undefined ? 0 : patientStatistic.finishedNum}} |
| | | 准备中{{patientStatistic.readyNum==undefined ? 0 : patientStatistic.readyNum}} |
| | | 过号{{patientStatistic.passedNum==undefined ? 0 : patientStatistic.passedNum}} |
| | | 排队中{{patientStatistic.queuingNum==undefined ? 0 : patientStatistic.queuingNum}} |
| | | </div> |
| | | </div> |
| | | |
| | | </template> |
| | | |
| | | <style scoped lang="scss"> |
| | | |
| | | .mytitle { |
| | | display: flex; |
| | | justify-content: space-between; |
| | | } |
| | | </style> |