eight
2024-08-21 a2346b299c8537318fbc245e3325b7a499ecce4e
src/views/ecg/doctor/components/TitlePanel.vue
@@ -1,7 +1,7 @@
<script setup lang="ts">
import {defineComponent, PropType} from "vue";
import {useUserStore} from "@/store/modules/user";
import {RoomBedVO} from "@/api/ecg/doctor";
import {PatientStatisticVO, RoomBedVO} from "@/api/ecg/doctor";
const userStore = useUserStore();
@@ -15,26 +15,18 @@
}
const  props = defineProps({
  room: {
    type: String,
  patientStatistic: {
    type: Object as PropType<PatientStatisticVO>,
    required: true
  }
  /*,
  bedList: {
    type: Array as PropType<RoomVO[]>,
    required: true
  },
  modelValue: {
    type: Object as PropType<RoomVO>,
    required: true
  }
*/
})
</script>
<template>
已就诊{{10}}  准备中{{3}}  过号{{2}} 排队中{{100}}   诊室{{roomBedVO.roomId}} 工位{{roomBedVO.bedNo}}
已就诊{{patientStatistic.finishedNum}}  准备中{{patientStatistic.readyNum}}
  过号{{patientStatistic.passedNum}} 排队中{{patientStatistic.queuingNum}}
  诊室{{roomBedVO.roomId}} 工位{{roomBedVO.bedNo}}
</template>
<style scoped lang="scss">