eight
2024-12-18 8ce35ee72e52f51f93e61d2dec6084c3cfd397b6
src/api/ecg/doctor/index.ts
@@ -4,7 +4,7 @@
  roomId: number | null // 诊室编号
  roomName: string | null
  bedNo: string | null // 诊疗床编号
  checkTypes: number[] | null,
  checkTypes: number[] | null
  opType: number | null
}
@@ -12,7 +12,10 @@
  roomId: number // 诊室编号
  bedNo: string // 诊疗床编号
  patId: string // 患者编号
  checkType: number // 检查类型
  jumpFlag: number // 插队标记
  roomId_operator: number
  bedNo_operator: string
}
export interface PatientStatisticVO {
@@ -111,6 +114,16 @@
    return await request.get({ url: `/ecg/doctor/get-dev-install-statistic`, params })
  },
  // 过号 [排队中] 患者
  passWaitingPatient: async (params: PatientVO) => {
    return await request.get({ url: `/ecg/doctor/pass-waiting-patient`, params })
  },
  // 召回 [过号-排队中] 患者
  recallPassWaitingPatient: async (params: PatientVO) => {
    return await request.get({ url: `/ecg/doctor/recall-pass-waiting-patient`, params })
  },
  // 召回过号患者
  recallPatient: async (params: PatientVO) => {
    return await request.get({ url: `/ecg/doctor/recall-patient`, params })