| | |
| | | <el-form-item label="显示患者条码" prop="displayBarcode"> |
| | | <el-checkbox-group v-model="formData.displayBarcode"> |
| | | <el-checkbox |
| | | v-for="(dict, index) in getDictOptions(DICT_TYPE.ECG_PAT_SOURCE)" |
| | | v-for="(dict, index) in getIntDictOptions(DICT_TYPE.ECG_PAT_SOURCE)" |
| | | :key="index" |
| | | :label="dict.label" |
| | | :value="dict.value" |
| | | :value=dict.value |
| | | /> |
| | | </el-checkbox-group> |
| | | </el-form-item> |
| | |
| | | <script setup lang="ts"> |
| | | import { CheckTypeApi, CheckTypeVO } from '@/api/ecg/checktype' |
| | | import {useCheckTypeStore} from "@/store/modules/checkType"; |
| | | import {DICT_TYPE, getDictOptions} from "@/utils/dict"; |
| | | import {DICT_TYPE, getIntDictOptions} from "@/utils/dict"; |
| | | |
| | | /** 检查类型 表单 */ |
| | | defineOptions({ name: 'CheckTypeForm' }) |
| | |
| | | expenseRecognition: undefined, |
| | | timeslotBookNum: undefined, |
| | | timeslotReservedNum: undefined, |
| | | affinityCheckTypes: [] |
| | | affinityCheckTypes: [], |
| | | notes: undefined |
| | | } |
| | | formRef.value?.resetFields() |
| | | } |