eight
2024-08-28 3b8457c9c63f0996d8dae63ac988f976da956d38
src/views/ecg/doctor/components/TitlePanel.vue
@@ -10,8 +10,8 @@
})
const roomBedVO: RoomBedVO = {
  roomId: userStore.room.roomId,
  bedNo: userStore.room.bedNo
  roomId: userStore.room!.roomId,
  bedNo: userStore.room!.bedNo
}
const  props = defineProps({
@@ -24,11 +24,23 @@
</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>