eight
2024-08-23 f6d5dc98286c7eb1e80092084b96be54ecd56dfe
src/views/ecg/doctor/components/QueuePanel.vue
@@ -1,11 +1,14 @@
<script setup lang="ts">
import {defineComponent, PropType} from "vue";
import { queueApi, queueVO } from '@/api/ecg/queue'
import { queueVO } from '@/api/ecg/queue'
import {DICT_TYPE} from "@/utils/dict";
import {PatientVO, DoctorApi} from "@/api/ecg/doctor";
defineComponent({
  name: 'QueuePanel'
})
const message = useMessage() // 消息弹窗
const  props = defineProps({
  queue: {
@@ -20,6 +23,18 @@
*/
})
const recall = async (item) => {
  const patientVO: PatientVO = {
    roomId: item.roomId,
    bedNo: item.bedNo,
    patId: item.patId,
    jumpFlag: 0
  }
  const data = await DoctorApi.recallPatient(patientVO);
  message.info(data)
}
</script>
<template>
@@ -30,6 +45,7 @@
  {{item.bedNo}}
  <dict-tag :type="DICT_TYPE.ECG_CHECK_TYPE" :value="item.bookCheckType" />
  <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="item.status" />
  <el-button v-if="item.status === 50" @click="recall(item)"> 召回 </el-button>
</div>
</template>