| | |
| | | <el-table-column label="检查类型" align="center" prop="checkTypes" width="180px"> |
| | | <template #default="scope"> |
| | | <div v-for="(checkType, subIndex) in scope.row.checkTypes" :key="subIndex"> |
| | | {{checkTypeStore.getCheckTypeName(checkType)}} |
| | | {{getCheckTypeName(checkType)}} |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | import { RoomApi, RoomVO } from '@/api/ecg/room' |
| | | import RoomForm from './RoomForm.vue' |
| | | import {useCheckTypeStore} from "@/store/modules/checkType"; |
| | | import {getCheckTypeName} from "../../../utils/checkTypeFormatter"; |
| | | |
| | | /** 诊室和诊疗床 列表 */ |
| | | defineOptions({ name: 'Room' }) |