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}`, }); }; // 处理结束问诊