From cf182f0e3489c774082f72b4ff68f1edb3972a47 Mon Sep 17 00:00:00 2001 From: qk123 <18211963828.@163.cpm> Date: Mon, 10 Nov 2025 14:32:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=9A=E5=88=9D=E5=A4=8D?= =?UTF-8?q?=E8=AF=8A=E6=A0=87=E8=AF=86=E7=B3=BB=E7=BB=9F=E9=87=8D=E6=96=B0?= =?UTF-8?q?=E5=88=A4=E6=96=AD->=E4=BB=8E=E6=95=B0=E6=8D=AE=E5=BA=93?= =?UTF-8?q?=E4=B8=AD=E8=AF=BB=E5=8F=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- openhis-ui-vue3/src/views/doctorstation/index.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/openhis-ui-vue3/src/views/doctorstation/index.vue b/openhis-ui-vue3/src/views/doctorstation/index.vue index a3ae3866..0ed248c2 100644 --- a/openhis-ui-vue3/src/views/doctorstation/index.vue +++ b/openhis-ui-vue3/src/views/doctorstation/index.vue @@ -415,9 +415,7 @@ function handleCardClick(item, index) { }); patientInfo.value = item; - // 检查患者历史记录以确定初诊/复诊 - checkPatientHistory(item); - // 直接使用数据库中保存的初复诊值,而不是重新判断 + // 优先使用数据库中保存的初复诊值 if (item.visitType) { visitType.value = item.visitType; // 已完诊的记录禁用修改 @@ -427,7 +425,7 @@ function handleCardClick(item, index) { firstVisitDate.value = item.firstVisitDate; } } else { - // 对于没有初复诊记录的患者,仍使用原有的判断逻辑 + // 对于没有初复诊记录的患者,才使用原有的判断逻辑 checkPatientHistory(item); } activeTab.value = 'emr';