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