From b3631abf0aaddb74be6ebd0803792833bb7285e6 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期二, 10 十二月 2024 21:10:15 +0800
Subject: [PATCH] update
---
src/views/ecg/appointment/AppointmentConfirm.vue | 18 ++++++++++++++----
1 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/src/views/ecg/appointment/AppointmentConfirm.vue b/src/views/ecg/appointment/AppointmentConfirm.vue
index 3d5d74c..93a42f6 100644
--- a/src/views/ecg/appointment/AppointmentConfirm.vue
+++ b/src/views/ecg/appointment/AppointmentConfirm.vue
@@ -7,7 +7,7 @@
<div style="display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 20px">
<div v-for="_appointment in appointmentVOList" :key="_appointment.applyNo">
- <CheckItemPanel :appointment="_appointment" />
+ <CheckItemPanel :appointment="_appointment" @event_appoint_confirm="onEventAppointConfirm"/>
</div>
</div>
@@ -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>
@@ -137,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
@@ -152,6 +151,7 @@
/** 閲嶇疆琛ㄥ崟 */
const resetForm = () => {
+ appointmentVOList.value.length=0;
formData.value = {
id: 0,
applyNo: "",
@@ -175,10 +175,20 @@
bookTimeslot: 9301030,
bookCheckType: checkTypeStore.getCheckTypeName(100),
paid: 0,
+ bookSeqNum: 0
}
formRef.value?.resetFields()
}
+const onEventAppointConfirm = () => {
+/*
+ if (null !== appointmentVOList.value && appointmentVOList.value.length === 1) {
+ queryParams.patId = ""
+ }
+*/
+ queryParams.patId = ""
+}
+
/** 鍒濆鍖� **/
onMounted(() => {
resetForm()
--
Gitblit v1.9.3