|
@@ -16,7 +16,7 @@
|
16
|
16
|
<label-box :isChecked="patientInfo.gender == '女'" showValue="女" ></label-box>
|
17
|
17
|
</td>
|
18
|
18
|
<td style="width:20%;text-align:left;">
|
19
|
|
- 性别:{{ getNewAge(patientInfo.id_card_no) }}
|
|
19
|
+ 年龄:{{ getNewAge(patientInfo.id_card_no) }}
|
20
|
20
|
</td>
|
21
|
21
|
<td style="width:20%;text-align:left;">
|
22
|
22
|
床号:{{ getNumber() }}
|
|
@@ -73,6 +73,10 @@
|
73
|
73
|
<span style="width:50px;display: inline-block;text-align:center;">{{ predialysis.systolic_blood_pressure ? predialysis.systolic_blood_pressure : ""}}</span>/
|
74
|
74
|
<span style="width:50px;display: inline-block;text-align:center;">{{ predialysis.diastolic_blood_pressure ? predialysis.diastolic_blood_pressure : "" }}</span>mmHg
|
75
|
75
|
</td>
|
|
76
|
+ <td style="padding-left:5px;">
|
|
77
|
+ 体温
|
|
78
|
+ <span style="width:50px;display: inline-block;text-align:center;">{{ predialysis.temperature ? predialysis.temperature : "" }}</span>℃
|
|
79
|
+ </td>
|
76
|
80
|
<td style="padding-left:5px;">
|
77
|
81
|
脉搏
|
78
|
82
|
<span style="width:50px;display: inline-block;text-align:center;">{{ predialysis.pulse_frequency ? predialysis.pulse_frequency : "" }}</span>次/分
|
|
@@ -115,23 +119,27 @@
|
115
|
119
|
</table>
|
116
|
120
|
<table class="table-box" border="1" style="border-collapse: collapse;">
|
117
|
121
|
<tr>
|
118
|
|
- <td style="padding-left:5px;width:20%;">
|
|
122
|
+ <td style="padding-left:5px;width:16%;">
|
119
|
123
|
透前体重
|
120
|
124
|
<span style="width:50px;display: inline-block;text-align:center">{{ predialysis.weight_before ? predialysis.weight_before : "" }}</span>kg
|
121
|
125
|
</td>
|
122
|
|
- <td style="padding-left:5px;width:20%;">
|
|
126
|
+ <td style="padding-left:5px;width:16%;">
|
123
|
127
|
上次透后体重
|
124
|
128
|
<span style="width:50px;display: inline-block;text-align:center">{{ assessmentafter.weight_after ? assessmentafter.weight_after : "" }}</span>kg
|
125
|
129
|
</td>
|
126
|
|
- <td style="padding-left:5px;width:20%;">
|
|
130
|
+ <td style="padding-left:5px;width:16%;">
|
127
|
131
|
拟脱水
|
128
|
132
|
<span style="width:50px;display: inline-block;text-align:center">{{ prescription.target_ultrafiltration ? prescription.target_ultrafiltration : '' }}</span>kg
|
129
|
133
|
</td>
|
130
|
|
- <td style="padding-left:5px;width:20%;">
|
|
134
|
+ <td style="padding-left:5px;width:16%;">
|
|
135
|
+ 实际脱水
|
|
136
|
+ <span style="width:50px;display: inline-block;text-align:center">{{ afterdialysis.actual_ultrafiltration ? afterdialysis.actual_ultrafiltration : " " }}</span>kg
|
|
137
|
+ </td>
|
|
138
|
+ <td style="padding-left:5px;width:16%;">
|
131
|
139
|
透后体重
|
132
|
140
|
<span style="width:50px;display: inline-block;text-align:center">{{ afterdialysis.weight_after ? afterdialysis.weight_after : "" }}</span>kg
|
133
|
141
|
</td>
|
134
|
|
- <td style="padding-left:5px;width:20%;">
|
|
142
|
+ <td style="padding-left:5px;width:16%;">
|
135
|
143
|
干体重
|
136
|
144
|
<span style="width:50px;display: inline-block;text-align:center">{{ predialysis.dry_weight ? predialysis.dry_weight : "" }}</span>kg
|
137
|
145
|
</td>
|
|
@@ -639,10 +647,18 @@ export default {
|
639
|
647
|
}
|
640
|
648
|
|
641
|
649
|
} else {
|
642
|
|
- return (
|
643
|
|
- this.patientInfo.DialysisSchedule.device_zone.name +
|
644
|
|
- this.patientInfo.DialysisSchedule.device_number.number
|
645
|
|
- );
|
|
650
|
+ if(this.patientInfo.DialysisSchedule.device_zone.name.indexOf("区") > -1){
|
|
651
|
+ return (
|
|
652
|
+ this.patientInfo.DialysisSchedule.device_zone.name +
|
|
653
|
+ this.patientInfo.DialysisSchedule.device_number.number
|
|
654
|
+ );
|
|
655
|
+ }else{
|
|
656
|
+ return (
|
|
657
|
+ this.patientInfo.DialysisSchedule.device_zone.name + "区" +
|
|
658
|
+ this.patientInfo.DialysisSchedule.device_number.number
|
|
659
|
+ );
|
|
660
|
+ }
|
|
661
|
+
|
646
|
662
|
}
|
647
|
663
|
},
|
648
|
664
|
|