From 602d521424b72403231256d9b7fe2315ca4cd736 Mon Sep 17 00:00:00 2001 From: qk123 <18211963828.@163.cpm> Date: Thu, 6 Nov 2025 14:00:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AE=8C=E8=AF=8A=E5=90=8E?= =?UTF-8?q?=E5=86=8D=E6=8E=A5=E8=AF=8A=E5=88=9D=E5=A4=8D=E8=AF=8A=E6=A0=87?= =?UTF-8?q?=E8=AF=86=E4=B8=8D=E5=AF=B9=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- openhis-ui-vue3/src/views/doctorstation/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) => {