新增 问卷预览

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-info-content">
<view class="patient-basic-info"> <view class="patient-basic-info">
<text class="patient-name">{{ patientInfo.name }}</text> <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>
<view class="patient-detail-btn" @click="handleViewPatientDetail"> <view class="patient-detail-btn" @click="handleViewPatientDetail">
<text class="detail-btn-text">查看档案</text> <text class="detail-btn-text">查看档案</text>
@ -892,11 +894,17 @@ const handleRejectReasonCancel = () => {
// //
const handleViewPatientDetail = () => { const handleViewPatientDetail = () => {
// TODO: if (!patientId.value) {
uni.showToast({ uni.showToast({
title: "患者详情功能开发中", title: "患者信息不完整",
icon: "none", icon: "none",
}); });
return;
}
uni.navigateTo({
url: `/pages/case/archive-detail?id=${patientId.value}`,
});
}; };
// //
const handleEndConsult = async () => { const handleEndConsult = async () => {