1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| import request from '@/config/axios'
|
| export interface RoomBedVO {
| roomId: number // 诊室编号
| bedNo: string // 诊疗床编号
| }
|
| // 医生 API
| export const DoctorApi = {
|
| // 下一位患者
| nextPatient: async (params: RoomBedVO) => {
| return await request.get({ url: `/ecg/doctor/nextpatient`, params })
| }
|
| }
|
|