| | |
| | | return await request.get({ url: `/ecg/doctor/bed-doctor-get`, params }) |
| | | }, |
| | | |
| | | // 看完,取下一位患者 |
| | | // 常规叫号,取下一位患者 |
| | | finishNextPatient: async (params: RoomBedVO) => { |
| | | return await request.get({ url: `/ecg/doctor/finish-next-patient`, params }) |
| | | }, |
| | | |
| | | // 领用叫号,取下一位患者 |
| | | finishReceiveNextPatient: async (params: RoomBedVO) => { |
| | | return await request.get({ url: `/ecg/doctor/finish-receive-next-patient`, params }) |
| | | }, |
| | | |
| | | // 装机叫号,取下一位患者 |
| | | finishInstallNextPatient: async (params: RoomBedVO) => { |
| | | return await request.get({ url: `/ecg/doctor/finish-install-next-patient`, params }) |
| | | }, |
| | | |
| | | // 过号,取下一位患者 |
| | | passNextPatient: async (params: RoomBedVO) => { |
| | | return await request.get({ url: `/ecg/doctor/pass-next-patient`, params }) |
| | |
| | | const finishNextPatient = async () => { |
| | | finishFlag.value = true |
| | | try { |
| | | patientList.value = await DoctorApi.finishNextPatient(roomBedVO) |
| | | patientList.value = await DoctorApi.finishReceiveNextPatient(roomBedVO) |
| | | patientStat.value = await DoctorApi.getPatientStatistic(roomBedVO) |
| | | getOnstagePatient() |
| | | } finally { |