eight
2024-10-14 d14506241dbec4aff4355c6488c1da56d54ef0d0
src/api/ecg/doctor/index.ts
@@ -69,6 +69,11 @@
    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) => {
    return await request.get({ url: `/ecg/doctor/call-again`, params })
@@ -79,9 +84,9 @@
    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 })
  // 取 [待装机] 患者列表
  getToBeInstalledPatientList: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/get-to-be-installed-list`, params })
  },
  // 取患者统计
@@ -104,7 +109,12 @@
    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 })
  }