From 68e4f01bd296fb4adc3c72a8532a5cc81757d1e1 Mon Sep 17 00:00:00 2001 From: wangdongbo <949818794@qq.com> Date: Fri, 30 Jan 2026 18:19:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20=E9=97=AE=E5=8D=B7?= =?UTF-8?q?=E9=A2=84=E8=A7=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/message/index.vue | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pages/message/index.vue b/pages/message/index.vue index e6b7ff4..b8d2aa8 100644 --- a/pages/message/index.vue +++ b/pages/message/index.vue @@ -5,7 +5,9 @@ {{ patientInfo.name }} - {{ patientInfo.sex }} · {{ patientInfo.age }}岁 + {{ patientInfo.sex }} · {{ patientInfo.age }}岁 查看档案 @@ -892,10 +894,16 @@ const handleRejectReasonCancel = () => { // 处理查看患者详情 const handleViewPatientDetail = () => { - // TODO: 跳转到患者详情页面 - uni.showToast({ - title: "患者详情功能开发中", - icon: "none", + if (!patientId.value) { + uni.showToast({ + title: "患者信息不完整", + icon: "none", + }); + return; + } + + uni.navigateTo({ + url: `/pages/case/archive-detail?id=${patientId.value}`, }); }; // 处理结束问诊