| | |
| | | return await request.get({ url: `/ecg/appointment/get?id=` + id }) |
| | | }, |
| | | |
| | | // |
| | | getCurAppointmentByPatId: async (patId: string) => { |
| | | return await request.get({ url: `/ecg/appointment/get-current-by-patient?patId=` + patId }) |
| | | }, |
| | | |
| | | // 从HIS或者DB查询预约详情 |
| | | getAppointmentByPatId: async (patId: string) => { |
| | | return await request.get({ url: `/ecg/appointment/get-by-patient?patId=` + patId }) |
| | | queryAndCreateAppointmentByPatId: async (patId: string) => { |
| | | return await request.get({ url: `/ecg/appointment/query-and-create-by-patient?patId=` + patId }) |
| | | }, |
| | | |
| | | // 从HIS查询预约或开单信息 |