新增 问卷预览
This commit is contained in:
parent
b48a00b58a
commit
68e4f01bd2
@ -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}`,
|
||||
});
|
||||
};
|
||||
// 处理结束问诊
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user