From 589bcdb26f8e9d3e0d5ef46d27acc901c96d50ea Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期二, 15 四月 2025 15:44:49 +0800 Subject: [PATCH] update --- src/views/ecg/doctor/components/QueuePanel.vue | 33 +++++++++++++++++++++------------ 1 files changed, 21 insertions(+), 12 deletions(-) diff --git a/src/views/ecg/doctor/components/QueuePanel.vue b/src/views/ecg/doctor/components/QueuePanel.vue index 89fdd55..663b521 100644 --- a/src/views/ecg/doctor/components/QueuePanel.vue +++ b/src/views/ecg/doctor/components/QueuePanel.vue @@ -2,7 +2,8 @@ import {defineComponent, PropType} from "vue"; import { QueueVO } from '@/api/ecg/queue' import {DICT_TYPE} from "@/utils/dict"; -import {PatientVO, DoctorApi} from "@/api/ecg/doctor"; +import {PatientVO, DoctorApi, RoomBedVO} from "@/api/ecg/doctor"; +import {getCheckTypeName, getCheckTypeSeqPrefix} from "../../../../utils/checkTypeFormatter"; defineComponent({ name: 'QueuePanel' @@ -16,13 +17,11 @@ queue: { type: Array as PropType<QueueVO[]>, required: true - } - /*, - modelValue: { - type: Object as PropType<RoomVO>, + }, + room: { + type: Object as PropType<RoomBedVO>, required: true } -*/ }) const recall = async (item) => { @@ -30,11 +29,19 @@ roomId: item.roomId, bedNo: item.bedNo, patId: item.patId, - jumpFlag: 0 + checkType: item.bookCheckType, + //jumpFlag: 0, + roomId_operator: props.room.roomId, + bedNo_operator: props.room.bedNo, } - const data = await DoctorApi.recallPatient(patientVO); - emit("event_RecallFinish") + let data = "" + if (item.status === 5) // 甯歌銆侀鐢� 杩囧彿 + data = await DoctorApi.recallPatient(patientVO); + else if (item.status === 7) + data = await DoctorApi.recallInstallPatient(patientVO); + + emit("event_RecallFinish") // 鍙洖瀹屾垚 message.info(data) } @@ -42,12 +49,14 @@ <template> <div v-for="(item, index) in queue" :key="index"> - <span style="display:inline-block; width:70px;"> {{item.patName}}{{item.passed === 0 ? "":"*"}} </span> + <span style="display:inline-block; width:30px;"> {{item.seqNum}} </span> + <span style="display:inline-block; width:40px;"> {{getCheckTypeSeqPrefix(item.bookCheckType)}}{{item.bookSeqNum}} </span> + <span style="display:inline-block; width:70px;"> {{item.patName}}{{item.passed === 0 ? "":"*"}} </span> <dict-tag :type="DICT_TYPE.SYSTEM_USER_SEX" :value="item.patGender" /> <!-- {{item.roomName}} {{item.bedNo}}--> - <dict-tag :type="DICT_TYPE.ECG_CHECK_TYPE" :value="item.bookCheckType" /> + {{getCheckTypeName(item.bookCheckType)}} <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="item.status" /> - <el-button v-if="item.status === 5" @click="recall(item)"> 鍙洖 </el-button> + <el-button v-if="item.status === 5 || item.status === 7" @click="recall(item)"> 鍙洖 </el-button> </div> </template> -- Gitblit v1.9.3