eight
2024-10-14 ddf15c484eb3208b76cdb25c2737cd4e960ea8df
src/views/ecg/doctor/components/TitlePanel.vue
@@ -1,6 +1,5 @@
<script setup lang="ts">
import {defineComponent, PropType} from "vue";
import {useUserStore} from "@/store/modules/user";
import {PatientStatisticVO, RoomBedVO} from "@/api/ecg/doctor";
defineComponent({
@@ -23,13 +22,13 @@
<template>
<div class="mytitle">
    <div>
      诊室{{room.roomId}} 工位{{room.bedNo}}
      {{room.roomName || ''}} {{room.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}}
    已发放{{patientStatistic.receivedNum??0}}
    准备中{{patientStatistic.readyNum??0}}
    过号{{patientStatistic.passedNum??0}}
    排队中{{patientStatistic.queuingNum??0}}
    </div>
</div>