From d9020ea85395682af5621a6de6bf073d9ee5d086 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期五, 29 十一月 2024 15:18:12 +0800
Subject: [PATCH] update

---
 src/views/ecg/checktype/CheckTypeForm.vue |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/views/ecg/checktype/CheckTypeForm.vue b/src/views/ecg/checktype/CheckTypeForm.vue
index 11afbe8..6183458 100644
--- a/src/views/ecg/checktype/CheckTypeForm.vue
+++ b/src/views/ecg/checktype/CheckTypeForm.vue
@@ -29,10 +29,10 @@
       <el-form-item label="鏄剧ず鎮h�呮潯鐮�" 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()
 }

--
Gitblit v1.9.3