|
@@ -459,7 +459,7 @@
|
459
|
459
|
{{ prescription.target_ultrafiltration ? prescription.target_ultrafiltration : 0 }}
|
460
|
460
|
</div>
|
461
|
461
|
</td>
|
462
|
|
- <td width="10">L</td>
|
|
462
|
+ <td width="10">ml</td>
|
463
|
463
|
<td width='70'>置换方式:</td>
|
464
|
464
|
<td width='130'>
|
465
|
465
|
<label-box :isChecked="prescription.displace_liqui_part == 1 ? true : false" showValue="前置换"></label-box>
|
|
@@ -689,7 +689,7 @@
|
689
|
689
|
<td width="60" style="line-height:20px">血流量<br />ml/min</td>
|
690
|
690
|
<td width="80" style="line-height:20px">静脉压<br />{{monitors[0] && monitors[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}</td>
|
691
|
691
|
<td width="80" style="line-height:20px">跨膜压<br />{{monitors[0] && monitors[0]['transmembrane_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}</td>
|
692
|
|
- <td width="60" style="line-height:20px">超滤量<br />L</td>
|
|
692
|
+ <td width="60" style="line-height:20px">超滤量<br />ml</td>
|
693
|
693
|
<td width="60" style="line-height:20px">钠浓度<br />mmol/L</td>
|
694
|
694
|
<td width="60" style="line-height:20px">电导度<br />mS/cm</td>
|
695
|
695
|
<td width="40" style="line-height:20px">机温<br />℃</td>
|
|
@@ -703,36 +703,36 @@
|
703
|
703
|
{{ getTime(monitor.operate_time, "{h}:{i}") }}
|
704
|
704
|
</td>
|
705
|
705
|
<td>
|
706
|
|
- {{ monitor.systolic_blood_pressure ? monitor.systolic_blood_pressure : "" }}/
|
707
|
|
- {{ monitor.diastolic_blood_pressure ? monitor.diastolic_blood_pressure : "" }}
|
|
706
|
+ <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.systolic_blood_pressure ? monitor.systolic_blood_pressure : 0 }}/
|
|
707
|
+ {{ monitor.diastolic_blood_pressure ? monitor.diastolic_blood_pressure : 0 }}</span>
|
708
|
708
|
</td>
|
709
|
709
|
<td>
|
710
|
|
- {{ monitor.pulse_frequency ? monitor.pulse_frequency : "" }}
|
|
710
|
+ <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.pulse_frequency ? monitor.pulse_frequency : 0 }}</span>
|
711
|
711
|
</td>
|
712
|
|
- <td> {{ monitor.temperature ? monitor.temperature : "" }}</td>
|
|
712
|
+ <td> <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.temperature ? monitor.temperature : 0 }}</span></td>
|
713
|
713
|
<td>
|
714
|
|
- {{ monitor.breathing_rate ? monitor.breathing_rate : "" }}
|
|
714
|
+ <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.breathing_rate ? monitor.breathing_rate : 0 }}</span>
|
715
|
715
|
</td>
|
716
|
716
|
<td>
|
717
|
|
- {{ monitor.blood_flow_volume ? monitor.blood_flow_volume : "" }}
|
|
717
|
+ <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.blood_flow_volume ? monitor.blood_flow_volume : 0 }}</span>
|
718
|
718
|
</td>
|
719
|
719
|
<td>
|
720
|
|
- {{ monitor.venous_pressure ? monitor.venous_pressure : "" }}
|
|
720
|
+ <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.venous_pressure ? monitor.venous_pressure : 0 }}</span>
|
721
|
721
|
</td>
|
722
|
722
|
<td>
|
723
|
|
- {{ monitor.transmembrane_pressure ? monitor.transmembrane_pressure : "" }}
|
|
723
|
+ <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.transmembrane_pressure ? monitor.transmembrane_pressure : 0 }}</span>
|
724
|
724
|
</td>
|
725
|
725
|
<td>
|
726
|
|
- {{ monitor.ultrafiltration_volume ? monitor.ultrafiltration_volume : "" }}
|
|
726
|
+ <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.ultrafiltration_volume ? monitor.ultrafiltration_volume : 0 }}</span>
|
727
|
727
|
</td>
|
728
|
728
|
<td>
|
729
|
|
- {{ monitor.sodium_concentration ? monitor.sodium_concentration : "" }}
|
|
729
|
+ <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.sodium_concentration ? monitor.sodium_concentration : 0 }}</span>
|
730
|
730
|
</td>
|
731
|
731
|
<td>
|
732
|
|
- {{ monitor.conductivity ? monitor.conductivity : "" }}
|
|
732
|
+ <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.conductivity ? monitor.conductivity : 0 }}</span>
|
733
|
733
|
</td>
|
734
|
734
|
<td>
|
735
|
|
- {{ monitor.dialysate_temperature ? monitor.dialysate_temperature : "" }}
|
|
735
|
+ <span v-if='getTime(monitor.operate_time, "{h}:{i}")'>{{ monitor.dialysate_temperature ? monitor.dialysate_temperature : 0 }}</span>
|
736
|
736
|
</td>
|
737
|
737
|
|
738
|
738
|
<td>
|
|
@@ -904,7 +904,7 @@
|
904
|
904
|
{{ afterdialysis.actual_ultrafiltration ? afterdialysis.actual_ultrafiltration : 0 }}
|
905
|
905
|
</div>
|
906
|
906
|
</td>
|
907
|
|
- <td width="10">L</td>
|
|
907
|
+ <td width="10">ml</td>
|
908
|
908
|
<td width="20"></td>
|
909
|
909
|
<td width="90">实际治疗时间</td>
|
910
|
910
|
<td width="40">
|