新增 问卷预览

This commit is contained in:
wangdongbo 2026-01-30 18:19:39 +08:00
parent b48a00b58a
commit 68e4f01bd2

View File

@ -5,7 +5,9 @@
<view class="patient-info-content">
<view class="patient-basic-info">
<text class="patient-name">{{ patientInfo.name }}</text>
<text class="patient-detail">{{ patientInfo.sex }} · {{ patientInfo.age }}</text>
<text class="patient-detail"
>{{ patientInfo.sex }} · {{ patientInfo.age }}</text
>
</view>
<view class="patient-detail-btn" @click="handleViewPatientDetail">
<text class="detail-btn-text">查看档案</text>
@ -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}`,
});
};
//