| | |
| | | </el-table-column> |
| | | <el-table-column label="检查类型" align="center" prop="bookCheckType" min-width="100px"> |
| | | <template #default="scope"> |
| | | {{checkTypeStore.getCheckTypeName(scope.row.bookCheckType)}} |
| | | {{getCheckTypeName(scope.row.bookCheckType)}} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="患者详情" align="center" prop="patDetails" min-width="300px"> |
| | |
| | | import {useCheckTypeStore} from "@/store/modules/checkType"; |
| | | import AppointmentForm from "@/views/ecg/appointment/AppointmentForm.vue"; |
| | | import {genderFormat} from "@/utils/stringUtil"; |
| | | import {getCheckTypeName} from "../../../utils/checkTypeFormatter"; |
| | | |
| | | /** 排队 列表 */ |
| | | defineOptions({ name: 'queue' }) |
| | |
| | | onMounted(() => { |
| | | getList() |
| | | }) |
| | | |
| | | onActivated(() => { |
| | | console.info("queue onActivated...") |
| | | handleQuery() |
| | | }) |
| | | </script> |