src/api/ecg/doctor/index.ts
@@ -2,6 +2,7 @@ export interface RoomBedVO { roomId: number | null // 诊室编号 roomName: string | null bedNo: string | null // 诊疗床编号 } @@ -57,6 +58,11 @@ return await request.get({ url: `/ecg/doctor/pass-next-patient`, params }) }, // 重叫 callAgainPatient: async (params: RoomBedVO) => { return await request.get({ url: `/ecg/doctor/call-again`, params }) }, // 取初始患者列表 getPatientList: async (params: RoomBedVO) => { return await request.get({ url: `/ecg/doctor/get-patient-list`, params })