From 68496135c2ed6c85c677395e756b13b6132aa8ff Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期一, 14 十月 2024 10:41:35 +0800
Subject: [PATCH] update
---
src/views/ecg/doctor/components/TitlePanel.vue | 32 ++++++++++++++++++++------------
1 files changed, 20 insertions(+), 12 deletions(-)
diff --git a/src/views/ecg/doctor/components/TitlePanel.vue b/src/views/ecg/doctor/components/TitlePanel.vue
index 00def2a..d82751b 100644
--- a/src/views/ecg/doctor/components/TitlePanel.vue
+++ b/src/views/ecg/doctor/components/TitlePanel.vue
@@ -1,20 +1,16 @@
<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({
+ room: {
+ type: Object as PropType<RoomBedVO>,
+ required: true
+ },
patientStatistic: {
type: Object as PropType<PatientStatisticVO>,
required: true
@@ -24,11 +20,23 @@
</script>
<template>
-宸插氨璇妠{patientStatistic.finishedNum}} 鍑嗗涓瓄{patientStatistic.readyNum}}
- 杩囧彿{{patientStatistic.passedNum}} 鎺掗槦涓瓄{patientStatistic.queuingNum}}
- 璇婂{{roomBedVO.roomId}} 宸ヤ綅{{roomBedVO.bedNo}}
+<div class="mytitle">
+ <div>
+ {{room.roomName || ''}} {{room.bedNo || ''}}
+ </div>
+ <div>
+ 宸查鐢▄{patientStatistic.receivedNum??0}}
+ 鍑嗗涓瓄{patientStatistic.readyNum??0}}
+ 杩囧彿{{patientStatistic.passedNum??0}}
+ 鎺掗槦涓瓄{patientStatistic.queuingNum??0}}
+ </div>
+</div>
+
</template>
<style scoped lang="scss">
-
+.mytitle {
+ display: flex;
+ justify-content: space-between;
+}
</style>
--
Gitblit v1.9.3