| | |
| | | import {useUserStore} from "@/store/modules/user"; |
| | | import {QueueVO} from "@/api/ecg/queue"; |
| | | import {ElNotification} from "element-plus"; |
| | | import DevInstallPanel from "@/views/ecg/doctor/components/DevInstallPanel.vue"; |
| | | import DevReadyPanel from "@/views/ecg/doctor/components/DevReadyPanel.vue"; |
| | | |
| | | const userStore = useUserStore(); |
| | | |
| | |
| | | const finishNextPatient = async () => { |
| | | finishFlag.value = true |
| | | try { |
| | | patientList.value = await DoctorApi.finishNextPatient(roomBedVO) |
| | | patientStat.value = await DoctorApi.getPatientStatistic(roomBedVO) |
| | | patientList.value = await DoctorApi.finishReceiveNextPatient(roomBedVO) |
| | | patientStat.value = await DoctorApi.getDevReadyStatistic(roomBedVO) |
| | | getOnstagePatient() |
| | | |
| | | // 用于解决 左侧重置后 获取当前 【就诊中】患者 |
| | | setOnStagePatient(onStagePatient.value) |
| | | } finally { |
| | | finishFlag.value = false |
| | | } |
| | |
| | | passFlag.value = true |
| | | try { |
| | | patientList.value = await DoctorApi.passNextPatient(roomBedVO) |
| | | patientStat.value = await DoctorApi.getPatientStatistic(roomBedVO) |
| | | patientStat.value = await DoctorApi.getDevReadyStatistic(roomBedVO) |
| | | getOnstagePatient() |
| | | } finally { |
| | | passFlag.value = false |
| | | } |
| | | } |
| | | |
| | | const callAgain = async () => { |
| | | await DoctorApi.callPatientAgain(roomBedVO) |
| | | } |
| | | |
| | | const getOnstagePatient = () => { |
| | | const tempPatient : QueueVO | undefined = patientList.value.find(item => item.status === 30) |
| | | if (undefined === tempPatient) { |
| | | setOnStagePatient(undefined) |
| | | // setOnStagePatient(undefined) |
| | | } else if (tempPatient.patId !== onStagePatient.value.patId) { |
| | | onStagePatient.value= tempPatient |
| | | onStagePatient.value = tempPatient |
| | | setOnStagePatient(tempPatient) |
| | | } |
| | | } |
| | |
| | | return |
| | | } |
| | | |
| | | patientList.value = await DoctorApi.getPatientList(roomBedVO) |
| | | patientList.value = await DoctorApi.getToBeCheckedPatientList(roomBedVO) |
| | | getOnstagePatient() |
| | | patientStat.value = await DoctorApi.getPatientStatistic(roomBedVO) |
| | | patientStat.value = await DoctorApi.getDevReadyStatistic(roomBedVO) |
| | | const queueVO2 = await DoctorApi.bedDoctorGet(roomBedVO) |
| | | if (queueVO2.status === 20) |
| | | if (queueVO2.status === 20) // 工位状态 有医生 |
| | | state.value = true |
| | | else if (queueVO2.status === 30) |
| | | else if (queueVO2.status === 30) // 工位状态 暂停 |
| | | state.value = false |
| | | } |
| | | |
| | |
| | | timerRunFlag = false |
| | | }) |
| | | |
| | | const onEvent = () => { |
| | | // console.info("onDevRentPanelEvent...") |
| | | const onEventDevReady = () => { |
| | | //console.info("onDevRentPanelEvent...") |
| | | onStagePatient.value.patId = "" |
| | | initLoad() |
| | | } |
| | | |
| | | const onEventRecallFinish = () => { |
| | | initLoad() |
| | | } |
| | | |
| | | /** 患者变更操作 */ |
| | | const devInstallPanelRef = ref() |
| | | const devReadyPanelRef = ref() |
| | | const setOnStagePatient = (tempPatient: QueueVO | undefined) => { |
| | | devInstallPanelRef.value.setPatient(tempPatient) |
| | | devReadyPanelRef.value.setPatient(tempPatient) |
| | | } |
| | | |
| | | </script> |
| | |
| | | <template> |
| | | <el-container> |
| | | <el-header style="background-color: var(--el-color-primary-light-7); font-size: 24px"> |
| | | <TitlePanel :room="roomBedVO" :patientStatistic="patientStat" /> |
| | | <TitlePanel :titleType=0 :room="roomBedVO" :patientStatistic="patientStat" /> |
| | | </el-header> |
| | | <el-container> |
| | | <el-main> |
| | | <DevInstallPanel ref="devInstallPanelRef" @success="onEvent"/> |
| | | <el-container style="height: 100%;"> |
| | | <el-main style="border: solid var(--el-color-primary-light-7)"> |
| | | <DevReadyPanel :room="roomBedVO" ref="devReadyPanelRef" @event_dev_ready="onEventDevReady"/> |
| | | </el-main> |
| | | <el-aside width="300px" style="background-color: var(--el-color-primary-light-7);"> |
| | | <QueuePanel :queue="patientList"/> |
| | | <el-aside width="400px" style="border: solid var(--el-color-primary-light-7)"> |
| | | <QueuePanel :queue="patientList" @event_RecallFinish="onEventRecallFinish"/> |
| | | </el-aside> |
| | | </el-container> |
| | | <el-container style="justify-content: center; margin-top: 30px"> |
| | | <el-container class="right-bottom"> |
| | | <el-button :disabled="finishFlag" type="primary" @click="finishNextPatient">叫号</el-button> |
| | | <el-button :disabled="passFlag" type="primary" @click="passNextPatient">过号</el-button> |
| | | <el-button type="primary" @click="callAgain">重叫</el-button> |
| | | <el-button :disabled="bedControlFlag" type="primary" @click="bedControl">{{state?'暂停':'恢复'}}</el-button> |
| | | </el-container> |
| | | </el-container> |
| | | </template> |
| | | |
| | | <style scoped lang="scss"> |
| | | |
| | | .right-bottom { |
| | | position: absolute; |
| | | bottom: 50px; |
| | | right: 100px; |
| | | //background-color: #f00; |
| | | //color: #fff; |
| | | //padding: 10px; |
| | | } |
| | | </style> |