1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| import request from '@/config/axios'
|
| export interface RoomBedVO {
| roomId: number // 诊室编号
| bedNo: string // 诊疗床编号
| }
|
| // 医生 API
| export const DoctorApi = {
|
| // 看完,取下一位患者
| finishNextPatient: async (params: RoomBedVO) => {
| return await request.get({ url: `/ecg/doctor/finish-next-patient`, params })
| },
|
| // 过号,取下一位患者
| passNextPatient: async (params: RoomBedVO) => {
| return await request.get({ url: `/ecg/doctor/pass-next-patient`, params })
| },
|
| // 取初始患者列表
| getPatientList: async (params: RoomBedVO) => {
| return await request.get({ url: `/ecg/doctor/get-patient-list`, params })
| }
|
| }
|
|