| | |
| | | <script setup lang="ts"> |
| | | import {defineComponent, PropType} from "vue"; |
| | | import { queueVO } from '@/api/ecg/queue' |
| | | import { QueueVO } from '@/api/ecg/queue' |
| | | import {DICT_TYPE} from "@/utils/dict"; |
| | | import {PatientVO, DoctorApi} from "@/api/ecg/doctor"; |
| | | |
| | |
| | | |
| | | const props = defineProps({ |
| | | queue: { |
| | | type: Array as PropType<queueVO[]>, |
| | | type: Array as PropType<QueueVO[]>, |
| | | required: true |
| | | } |
| | | /*, |
| | |
| | | {{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> |
| | | <el-button v-if="item.status === 5" @click="recall(item)"> 召回 </el-button> |
| | | </div> |
| | | </template> |
| | | |