From 6f1b2cf3dc89059104ca0eedebf5f3ec4d1147f0 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期三, 26 十一月 2025 11:08:17 +0800
Subject: [PATCH] 打印
---
src/views/ecg/doctor/components/TitlePanel.vue | 57 +++++++++++++++++++++++++++++++++++++++++++++------------
1 files changed, 45 insertions(+), 12 deletions(-)
diff --git a/src/views/ecg/doctor/components/TitlePanel.vue b/src/views/ecg/doctor/components/TitlePanel.vue
index 00def2a..9bb66ee 100644
--- a/src/views/ecg/doctor/components/TitlePanel.vue
+++ b/src/views/ecg/doctor/components/TitlePanel.vue
@@ -1,34 +1,67 @@
<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();
+import {useCheckTypeStore} from "@/store/modules/checkType";
+import {getCheckTypeName} from "../../../../utils/checkTypeFormatter";
defineComponent({
name: 'TitlePanel'
})
-const roomBedVO: RoomBedVO = {
- roomId: userStore.room.roomId,
- bedNo: userStore.room.bedNo
-}
-
const props = defineProps({
+ titleType: Number,
+ room: {
+ type: Object as PropType<RoomBedVO>,
+ required: true
+ },
patientStatistic: {
type: Object as PropType<PatientStatisticVO>,
required: true
}
})
+const checkTypeStore = useCheckTypeStore();
+
</script>
<template>
-宸插氨璇妠{patientStatistic.finishedNum}} 鍑嗗涓瓄{patientStatistic.readyNum}}
- 杩囧彿{{patientStatistic.passedNum}} 鎺掗槦涓瓄{patientStatistic.queuingNum}}
- 璇婂{{roomBedVO.roomId}} 宸ヤ綅{{roomBedVO.bedNo}}
+<div class="mytitle">
+ <div>
+ <img v-if="titleType !== room.opType"
+ src="@/assets/imgs/error.png"
+ alt="绂佹璁块棶鏈〉闈紝褰撳墠宸ヤ綅涓嶇鍚堣姹�"
+ width="20px"
+ />
+ {{room.roomName || ''}} {{room.bedNo || ''}} {{room.opType === 1?"棰嗙敤":""}} {{room.opType === 2?"瀹夎":""}}
+ <div>
+ <span v-for="(checkType, subIndex) in room.checkTypes" :key="subIndex">
+ {{getCheckTypeName(checkType)}}
+ </span>
+ </div>
+ </div>
+ <div v-if="titleType === 0">
+ 宸叉鏌{patientStatistic.finishedNum??0}}
+ 鍑嗗涓瓄{patientStatistic.readyNum??0}}
+ 杩囧彿{{patientStatistic.passedNum??0}}
+ 鎺掗槦涓瓄{patientStatistic.queuingNum??0}}
+ </div>
+ <div v-if="titleType === 1">
+ 宸插彂鏀緖{patientStatistic.receivedNum??0}}
+ 鍑嗗涓瓄{patientStatistic.readyNum??0}}
+ 杩囧彿{{patientStatistic.passedNum??0}}
+ 鎺掗槦涓瓄{patientStatistic.queuingNum??0}}
+ </div>
+ <div v-if="titleType === 2">
+ 宸茶鏈簕{patientStatistic.finishedNum??0}}
+ 寰呰鏈簕{patientStatistic.receivedNum??0}}
+ </div>
+</div>
+
</template>
<style scoped lang="scss">
-
+.mytitle {
+ display: flex;
+ justify-content: space-between;
+}
</style>
--
Gitblit v1.9.3