eight
2024-08-20 b1cb442f56ee40c4fe0cc51455cc61d26732b35d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 })
  },
 
  // 看完患者
  finishPatient: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/finishpatient`, params })
  }
 
}