eight
2024-10-12 e54cd52d2621189e9a192e2fe47ecc241cfc69fd
src/api/ecg/doctor/index.ts
@@ -2,6 +2,7 @@
export interface RoomBedVO {
  roomId: number | null // 诊室编号
  roomName: string | null
  bedNo: string | null // 诊疗床编号
}
@@ -47,9 +48,19 @@
    return await request.get({ url: `/ecg/doctor/bed-doctor-get`, params })
  },
  // 看完,取下一位患者
  // 常规叫号,取下一位患者
  finishNextPatient: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/finish-next-patient`, params })
  },
  // 领用叫号,取下一位患者
  finishReceiveNextPatient: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/finish-receive-next-patient`, params })
  },
  // 装机叫号,取下一位患者
  finishInstallNextPatient: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/finish-install-next-patient`, params })
  },
  // 过号,取下一位患者
@@ -57,11 +68,21 @@
    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 })
  },
  // 取 已领用 患者列表
  getReceivedPatientList: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/get-received-patient-list`, params })
  },
  // 取患者统计
  getPatientStatistic: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/get-patient-statistic`, params })