diff --git a/openhis-ui-vue3/src/views/doctorstation/index.vue b/openhis-ui-vue3/src/views/doctorstation/index.vue index 5d691caa..d7c6ab9b 100644 --- a/openhis-ui-vue3/src/views/doctorstation/index.vue +++ b/openhis-ui-vue3/src/views/doctorstation/index.vue @@ -325,7 +325,7 @@ function checkPatientHistory(patient) { if (res.code === 200) { const records = res.data?.records || []; // 如果有历史记录,则为复诊 - if (res.data && res.data.total > 0) { + if (res.data && res.data.total > 1) { visitType.value = 'FOLLOW_UP'; // 计算最早一次病历创建时间作为初诊日期 const earliest = records.reduce((min, cur) => {