eight
2024-08-21 a2346b299c8537318fbc245e3325b7a499ecce4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<script setup lang="ts">
import {defineComponent, PropType} from "vue";
import {useUserStore} from "@/store/modules/user";
import {PatientStatisticVO, RoomBedVO} from "@/api/ecg/doctor";
 
const userStore = useUserStore();
 
defineComponent({
  name: 'TitlePanel'
})
 
const roomBedVO: RoomBedVO = {
  roomId: userStore.room.roomId,
  bedNo: userStore.room.bedNo
}
 
const  props = defineProps({
  patientStatistic: {
    type: Object as PropType<PatientStatisticVO>,
    required: true
  }
})
 
</script>
 
<template>
已就诊{{patientStatistic.finishedNum}}  准备中{{patientStatistic.readyNum}}
  过号{{patientStatistic.passedNum}} 排队中{{patientStatistic.queuingNum}}
  诊室{{roomBedVO.roomId}} 工位{{roomBedVO.bedNo}}
</template>
 
<style scoped lang="scss">
 
</style>