| | |
| | | </el-table-column> |
| | | <el-table-column label="预约检查类型" align="center" prop="bookCheckType" min-width="120px"> |
| | | <template #default="scope"> |
| | | {{checkTypeStore.getCheckTypeName(scope.row.bookCheckType)}} |
| | | {{getCheckTypeName(scope.row.bookCheckType)}} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="生日" align="center" prop="patBirthday" :formatter="dateFormatter2" width="110px"/> |
| | |
| | | import { AppointmentApi, AppointmentVO } from '@/api/ecg/appointment' |
| | | import AppointmentForm from './AppointmentForm.vue' |
| | | import {useCheckTypeStore} from "@/store/modules/checkType"; |
| | | import {getCheckTypeName} from "../../../utils/checkTypeFormatter"; |
| | | |
| | | /** 预约 列表 */ |
| | | defineOptions({ name: 'Appointment' }) |