|
@@ -27,7 +27,14 @@
|
|
|
</el-descriptions>
|
|
|
</div>
|
|
|
<div class="contentx" v-if="item!=null">
|
|
|
- <div class="desct" > 患者信息</div>
|
|
|
+ <div class="desct" >
|
|
|
+ <span v-if="patientInfo">
|
|
|
+ {{ patientInfo }}
|
|
|
+ </span>
|
|
|
+ <span v-else>
|
|
|
+ 患者信息
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
<el-descriptions title="" :column="3" border>
|
|
|
<el-descriptions-item label="患者姓名" ><span v-if="item!=null">{{JSON.parse(item.patientJson).patientName}}</span></el-descriptions-item>
|
|
|
<el-descriptions-item label="患者年龄" ><span v-if="item!=null">{{JSON.parse(item.patientJson).age}}</span></el-descriptions-item>
|
|
@@ -88,6 +95,7 @@ import { listBySearch,listInquiryOrderReport, getInquiryOrderReport, delInquiryO
|
|
|
props:["data"],
|
|
|
data() {
|
|
|
return {
|
|
|
+ patientInfo: process.env.VUE_APP_PATIENT_INFO,
|
|
|
diseaseParams:{
|
|
|
diseaseId:null,
|
|
|
diseaseName:null
|