eight
2024-11-26 3418a10025716ed4b14f96cb4c52b5ce0875e563
排队界面 召回操作
已修改2个文件
18 ■■■■ 文件已修改
src/views/ecg/doctor/components/QueuePanel.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/queue/index.vue 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/doctor/components/QueuePanel.vue
@@ -32,7 +32,7 @@
    bedNo: item.bedNo,
    patId: item.patId,
    checkType: item.bookCheckType,
    jumpFlag: 0,
    //jumpFlag: 0,
    roomId_operator: props.room.roomId,
    bedNo_operator: props.room.bedNo,
  }
@@ -43,7 +43,7 @@
  else if (item.status === 7)
    data = await DoctorApi.recallInstallPatient(patientVO);
  emit("event_RecallFinish") // 装机 过号
  emit("event_RecallFinish") // 召回完成
  message.info(data)
}
src/views/ecg/queue/index.vue
@@ -204,7 +204,7 @@
            link
            type="danger"
            @click="recall(scope.row)"
            v-if="scope.row.status === 5"
            v-if="scope.row.status === 5 || scope.row.status === 7"
            v-hasPermi="['ecg:queue:recall']"
          >
            召回
@@ -334,10 +334,18 @@
    roomId: item.roomId,
    bedNo: item.bedNo,
    patId: item.patId,
    jumpFlag: 0
    checkType: item.bookCheckType,
    //jumpFlag: 0,
    roomId_operator: item.roomId,  // 队列界面 召回操作时 保持原来的工位
    bedNo_operator: item.bedNo,    // 队列界面 召回操作时 保持原来的工位
  }
  const data = await DoctorApi.recallPatient(patientVO);
  let data = ""
  if (item.status === 5) // 常规、领用 过号
    data = await DoctorApi.recallPatient(patientVO);
  else if (item.status === 7)
    data = await DoctorApi.recallInstallPatient(patientVO);
  message.info(data)
  // 刷新列表
  await getList()