eight
2024-10-24 6657e1941f1b517c66a47ec14ef5ed65afb75e21
src/api/ecg/doctor/index.ts
@@ -16,6 +16,7 @@
export interface PatientStatisticVO {
  finishedNum: number
  readyNum: number
  receivedNum: number
  passedNum: number
  queuingNum: number
}
@@ -68,19 +69,29 @@
    return await request.get({ url: `/ecg/doctor/pass-next-patient`, params })
  },
  // 装机过号,取下一位患者
  passInstallNextPatient: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/pass-install-next-patient`, params })
  },
  // 重叫
  callAgainPatient: async (params: RoomBedVO) => {
  callPatientAgain: 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 })
  // 重叫 安装
  callInstallingPatientAgain: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/call-install-again`, params })
  },
  // 取 已领用 患者列表
  getReceivedPatientList: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/get-received-patient-list`, params })
  // 取 常规检查、领用 患者列表
  getToBeCheckedPatientList: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/get-to-be-checked-list`, params })
  },
  // 取 [待装机] 患者列表
  getToBeInstalledPatientList: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/get-to-be-installed-list`, params })
  },
  // 取患者统计
@@ -88,12 +99,27 @@
    return await request.get({ url: `/ecg/doctor/get-patient-statistic`, params })
  },
  // 设备领用统计
  getDevReadyStatistic: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/get-dev-ready-statistic`, params })
  },
  // 设备装机统计
  getDevInstallStatistic: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/get-dev-install-statistic`, params })
  },
  // 召回过号患者
  recallPatient: async (params: PatientVO) => {
    return await request.get({ url: `/ecg/doctor/recall-patient`, params })
  },
  // 召回过号患者
  // 召回 安装过号 患者
  recallInstallPatient: async (params: PatientVO) => {
    return await request.get({ url: `/ecg/doctor/recall-install-patient`, params })
  },
  // 加急患者
  patientJump: async (params: PatientVO) => {
    return await request.get({ url: `/ecg/doctor/patient-jump`, params })
  }