eight
2024-12-02 a30f5ac1fd3b69457b16f8332cd918aa2f5a093b
src/views/ecg/checktype/CheckTypeForm.vue
@@ -29,10 +29,10 @@
      <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>
@@ -63,7 +63,7 @@
<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' })
@@ -150,7 +150,8 @@
    expenseRecognition: undefined,
    timeslotBookNum: undefined,
    timeslotReservedNum: undefined,
    affinityCheckTypes: []
    affinityCheckTypes: [],
    notes: undefined
  }
  formRef.value?.resetFields()
}