From a90276a242ddca6f45e234c5cc4832a7a01a7e03 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期一, 02 十二月 2024 11:06:53 +0800
Subject: [PATCH] Fix Bug: 条码更新问题

---
 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