From c6421e15ecc9df14dbb2f29ab76a73ce7aa7f603 Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期一, 25 十一月 2024 21:32:09 +0800 Subject: [PATCH] 预约小票 打印 --- src/views/ecg/appointment/AppointmentConfirm.vue | 25 ++++++++++++++++--------- 1 files changed, 16 insertions(+), 9 deletions(-) diff --git a/src/views/ecg/appointment/AppointmentConfirm.vue b/src/views/ecg/appointment/AppointmentConfirm.vue index badefc0..791bda5 100644 --- a/src/views/ecg/appointment/AppointmentConfirm.vue +++ b/src/views/ecg/appointment/AppointmentConfirm.vue @@ -28,8 +28,7 @@ <el-radio v-for="dict in getIntDictOptions(DICT_TYPE.SYSTEM_USER_SEX)" :key="dict.value" - :value="dict.value" - > + :value="dict.value"> {{ dict.label }} </el-radio> </el-radio-group> @@ -90,17 +89,14 @@ import { AppointmentApi, AppointmentVO } from '@/api/ecg/appointment' import {useCheckTypeStore} from "@/store/modules/checkType"; import CheckItemPanel from "@/views/ecg/appointment/CheckItemPanel.vue"; -import {RoomStatus} from "@/components/RoomStatus"; /** 棰勭害纭 琛ㄥ崟 */ defineOptions({ name: 'AppointmentConfirm' }) const checkTypeStore = useCheckTypeStore(); -const message = useMessage() // 娑堟伅寮圭獥 - const queryParams = reactive({ - patId: undefined + patId: '' }) const appointmentVOList = ref<AppointmentVO[]>([]) @@ -126,7 +122,8 @@ bookTime: new Date(), bookDate: new Date(), bookTimeslot: 9301030, - bookCheckType: checkTypeStore.getCheckTypeName(100) + bookCheckType: checkTypeStore.getCheckTypeName(100), + paid: 0, }) const formRef = ref() // 琛ㄥ崟 Ref @@ -139,7 +136,7 @@ const data = await AppointmentApi.queryAndCreateAppointmentByPatId(queryParams.patId) // 瀵瑰簲鏁版嵁搴撲腑 pat_id console.info( data ) appointmentVOList.value = data - if (null !== data) { + if (null !== data && data.length > 0) { formData.value = data[0] console.info( formData.value ) return @@ -154,6 +151,7 @@ /** 閲嶇疆琛ㄥ崟 */ const resetForm = () => { + appointmentVOList.value.length=0; formData.value = { id: 0, applyNo: "", @@ -175,10 +173,19 @@ bookTime: new Date(), bookDate: new Date(), bookTimeslot: 9301030, - bookCheckType: checkTypeStore.getCheckTypeName(100) + bookCheckType: checkTypeStore.getCheckTypeName(100), + paid: 0, + bookSeqNum: 0 } formRef.value?.resetFields() } + +/** 鍒濆鍖� **/ +onMounted(() => { + resetForm() +}) + + </script> <style lang="scss" scoped> -- Gitblit v1.9.3