diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/examineApplication.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/examineApplication.vue index f8979e466..68892412d 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/examineApplication.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/examineApplication.vue @@ -678,15 +678,16 @@ const handlePrint = async (row) => { } // 构建 descJson 字段行(与详情弹窗展示的字段一致) - const fieldKeys = ['targetDepartment', 'symptom', 'sign', 'clinicalDiagnosis', 'otherDiagnosis', 'relatedResult', 'attention']; + const fieldKeys = ['targetDepartment', 'urgencyLevel', 'expectedExaminationTime', 'allergyHistory', 'examinationPurpose', 'medicalHistorySummary', 'symptom', 'sign', 'clinicalDiagnosis', 'otherDiagnosis', 'relatedResult', 'attention']; let descFieldsHtml = ''; fieldKeys.forEach((key) => { const label = labelMap[key] || key; - if (descData[key] != null && descData[key] !== '') { + const value = transformField(key, descData[key]); + if (value != null && value !== '') { descFieldsHtml += `
${label}: - ${descData[key]} + ${value}
`; } });