| | |
| | | <el-table-column label="是否需要确费" align="center" prop="expenseRecognition" /> |
| | | <el-table-column label="时段预约规定人数" align="center" prop="timeslotBookNum" /> |
| | | <el-table-column label="每时段预留人数" align="center" prop="timeslotReservedNum" /> |
| | | <el-table-column label="亲和的检查类型" align="center" prop="affinityCheckTypes" /> |
| | | <el-table-column label="亲和的检查类型" align="center" prop="affinityCheckTypes" > |
| | | <template #default="scope"> |
| | | <div v-for="(checkType, subIndex) in scope.row.affinityCheckTypes" :key="subIndex"> |
| | | {{checkTypeStore.getCheckTypeName(checkType)}} |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作" align="center" min-width="120px"> |
| | | <template #default="scope"> |
| | | <el-button |
| | |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import { DICT_TYPE } from '@/utils/dict' |
| | | import { dateFormatter } from '@/utils/formatTime' |
| | | import download from '@/utils/download' |
| | | import { CheckTypeApi, CheckTypeVO } from '@/api/ecg/checktype' |
| | | import CheckTypeForm from './CheckTypeForm.vue' |
| | | import {useCheckTypeStore} from "@/store/modules/checkType"; |
| | | |
| | | /** 检查类型 列表 */ |
| | | defineOptions({ name: 'CheckType' }) |
| | |
| | | const message = useMessage() // 消息弹窗 |
| | | const { t } = useI18n() // 国际化 |
| | | |
| | | const checkTypeStore = useCheckTypeStore(); |
| | | |
| | | const loading = ref(true) // 列表的加载中 |
| | | const list = ref<CheckTypeVO[]>([]) // 列表的数据 |
| | | const total = ref(0) // 列表的总页数 |