eight
2024-11-18 8d11e11a86bbfe84ea4156bd68e865bb2986e9bd
src/api/ecg/doctor/index.ts
@@ -4,13 +4,18 @@
  roomId: number | null // 诊室编号
  roomName: string | null
  bedNo: string | null // 诊疗床编号
  checkTypes: number[] | null
  opType: number | null
}
export interface PatientVO {
  roomId: number // 诊室编号
  bedNo: string // 诊疗床编号
  patId: string // 患者编号
  checkType: number // 检查类型
  jumpFlag: number // 插队标记
  roomId_operator: number
  bedNo_operator: string
}
export interface PatientStatisticVO {
@@ -75,10 +80,15 @@
  },
  // 重叫
  callAgainPatient: async (params: RoomBedVO) => {
  callPatientAgain: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/call-again`, params })
  },
  // 重叫 安装
  callInstallingPatientAgain: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/call-install-again`, params })
  },
  // 取 常规检查、领用 患者列表
  getToBeCheckedPatientList: async (params: RoomBedVO) => {
    return await request.get({ url: `/ecg/doctor/get-to-be-checked-list`, params })