| | |
| | | import request from '@/config/axios' |
| | | |
| | | export interface RoomProfileVO { |
| | | roomId: number | null // 诊室编号 |
| | | roomName: string | null |
| | | bedNum: number | null // 诊疗床数量 |
| | | callingScreenType: number | null // 叫号屏类型 |
| | | } |
| | | |
| | | export interface RoomBedVO { |
| | | roomId: number | null // 诊室编号 |
| | | roomName: string | null |
| | |
| | | return await request.get({ url: `/ecg/doctor/get-dev-install-statistic`, params }) |
| | | }, |
| | | |
| | | // 过号 [排队中] 患者 |
| | | passWaitingPatient: async (params: PatientVO) => { |
| | | return await request.get({ url: `/ecg/doctor/pass-waiting-patient`, params }) |
| | | }, |
| | | |
| | | // 召回 [过号-排队中] 患者 |
| | | recallPassWaitingPatient: async (params: PatientVO) => { |
| | | return await request.get({ url: `/ecg/doctor/recall-pass-waiting-patient`, params }) |
| | | }, |
| | | |
| | | // 召回过号患者 |
| | | recallPatient: async (params: PatientVO) => { |
| | | return await request.get({ url: `/ecg/doctor/recall-patient`, params }) |