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) {