From a7d0cd5b5c09bd3f4a92076a5bd59b38358b4b6d Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期一, 28 十月 2024 09:47:03 +0800 Subject: [PATCH] icon update --- src/views/ecg/appointment/AppointmentConfirm.vue | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/ecg/appointment/AppointmentConfirm.vue b/src/views/ecg/appointment/AppointmentConfirm.vue index 0e57f85..f795312 100644 --- a/src/views/ecg/appointment/AppointmentConfirm.vue +++ b/src/views/ecg/appointment/AppointmentConfirm.vue @@ -53,7 +53,7 @@ <el-form-item label="棰勭害妫�鏌ョ被鍨�" prop="bookCheckType"> <el-select v-model="formData.bookCheckType" placeholder="璇烽�夋嫨棰勭害妫�鏌ョ被鍨�"> <el-option - v-for="dict in getIntDictOptions(DICT_TYPE.ECG_CHECK_TYPE)" + v-for="dict in checkTypeStore.getCheckTypeOptions()" :key="dict.value" :label="dict.label" :value="dict.value" @@ -111,9 +111,12 @@ <script setup lang="ts"> import {DICT_TYPE, getIntDictOptions} from '@/utils/dict' import { AppointmentApi, AppointmentVO } from '@/api/ecg/appointment' +import {useCheckTypeStore} from "@/store/modules/checkType"; /** 棰勭害纭 琛ㄥ崟 */ defineOptions({ name: 'AppointmentConfirm' }) + +const checkTypeStore = useCheckTypeStore(); const message = useMessage() // 娑堟伅寮圭獥 @@ -145,7 +148,7 @@ bookTime: new Date(), bookDate: new Date(), bookTimeslot: 9000930, - bookCheckType: 10 + bookCheckType: checkTypeStore.getCheckTypeName(100) }) const formRef = ref() // 琛ㄥ崟 Ref -- Gitblit v1.9.3