From c6421e15ecc9df14dbb2f29ab76a73ce7aa7f603 Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期一, 25 十一月 2024 21:32:09 +0800 Subject: [PATCH] 预约小票 打印 --- src/views/ecg/doctor/components/QueuePanel.vue | 41 ++++++++++++++++++++++++++++------------- 1 files changed, 28 insertions(+), 13 deletions(-) diff --git a/src/views/ecg/doctor/components/QueuePanel.vue b/src/views/ecg/doctor/components/QueuePanel.vue index 6f82075..60ed25f 100644 --- a/src/views/ecg/doctor/components/QueuePanel.vue +++ b/src/views/ecg/doctor/components/QueuePanel.vue @@ -2,11 +2,16 @@ 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 {useCheckTypeStore} from "@/store/modules/checkType"; defineComponent({ name: 'QueuePanel' }) + +const emit = defineEmits(['event_RecallFinish']) // 瀹氫箟 success 浜嬩欢锛岀敤浜庢搷浣滄垚鍔熷悗鐨勫洖璋� + +const checkTypeStore = useCheckTypeStore(); const message = useMessage() // 娑堟伅寮圭獥 @@ -14,13 +19,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) => { @@ -28,10 +31,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); + 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) } @@ -39,16 +51,19 @@ <template> <div v-for="(item, index) in queue" :key="index"> - {{item.patName}}{{item.passed === 0 ? "":"*"}} + <span style="display:inline-block; width:120px;"> {{item.seqNum}} {{item.bookSeqNum}} {{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" /> +<!-- {{item.roomName}} {{item.bedNo}}--> + {{checkTypeStore.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> <style scoped lang="scss"> +div { + padding-left: 5px; + padding-bottom: 5px; +} </style> -- Gitblit v1.9.3