From 5bb3a71b3430c959cf3cb282b534c5086e211321 Mon Sep 17 00:00:00 2001 From: wangdongbo <> Date: Mon, 31 Aug 2026 09:04:33 +0800 Subject: [PATCH] no message --- pages/ai-consult/chat.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/ai-consult/chat.vue b/pages/ai-consult/chat.vue index ee2aeb4..0780f75 100644 --- a/pages/ai-consult/chat.vue +++ b/pages/ai-consult/chat.vue @@ -4,7 +4,7 @@ {{ patientDisplayName }} - {{ patientDetail }} + {{ patientDetail }} 查看/修改 @@ -74,7 +74,7 @@ const patientDetail = computed(() => { if (patient.sex) details.push(patient.sex); if (patient.age !== '' && patient.age !== null && patient.age !== undefined) details.push(`${patient.age}岁`); if (patient.relationship) details.push(patient.relationship); - return details.join(' · ') || '基础信息待完善'; + return details.join(' · '); }); function displayContent(item) {