|
@@ -569,8 +569,10 @@
|
569
|
569
|
<td> {{monitor.pulse_frequency?monitor.pulse_frequency:''}}</td>
|
570
|
570
|
<td> {{monitor.breathing_rate?monitor.breathing_rate:''}}</td>
|
571
|
571
|
<td> {{monitor.blood_flow_volume?monitor.blood_flow_volume:''}}</td>
|
572
|
|
- <td> {{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:''}}</td>
|
573
|
|
- <td> {{monitor.displacement_quantity?monitor.displacement_quantity:''}}</td>
|
|
572
|
+ <td v-if="isShowZero && monitor.operate_time"> {{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:0}}</td>
|
|
573
|
+ <td v-else> {{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:''}}</td>
|
|
574
|
+ <td v-if="isShowZero && monitor.operate_time"> {{monitor.displacement_quantity?monitor.displacement_quantity:0}}</td>
|
|
575
|
+ <td v-else> {{monitor.displacement_quantity?monitor.displacement_quantity:''}}</td>
|
574
|
576
|
<td> {{monitor.venous_pressure?monitor.venous_pressure:''}}</td>
|
575
|
577
|
<td> {{monitor.transmembrane_pressure?monitor.transmembrane_pressure:''}}</td>
|
576
|
578
|
<!-- <td> {{monitor.sodium_concentration}}</td>
|
|
@@ -606,7 +608,7 @@
|
606
|
608
|
<td width="70">
|
607
|
609
|
<div class="under-line"> {{afterdialysis.actual_ultrafiltration?afterdialysis.actual_ultrafiltration:''}}</div>
|
608
|
610
|
</td>
|
609
|
|
- <td width="20">ml</td>
|
|
611
|
+ <td width="20">L</td>
|
610
|
612
|
<td></td>
|
611
|
613
|
<td width="60">透后体重</td>
|
612
|
614
|
<td width="50">
|
|
@@ -1092,6 +1094,7 @@
|
1092
|
1094
|
summary: {},
|
1093
|
1095
|
receiverTreatmentAccess: {},
|
1094
|
1096
|
org_template_info: {},
|
|
1097
|
+ isShowZero: false,
|
1095
|
1098
|
|
1096
|
1099
|
doctor_advices: [],
|
1097
|
1100
|
advice_groups: [],
|
|
@@ -1353,6 +1356,11 @@
|
1353
|
1356
|
this.advices = response.data.data.advices;
|
1354
|
1357
|
this.monitors = response.data.data.monitors;
|
1355
|
1358
|
this.summary = response.data.data.summary;
|
|
1359
|
+ this.org_template_info = response.data.data.org_template_info
|
|
1360
|
+ // 配置超滤量和置换量是否要显示0还是空
|
|
1361
|
+ if(this.org_template_info.org_id == 9535){
|
|
1362
|
+ this.isShowZero = true
|
|
1363
|
+ }
|
1356
|
1364
|
|
1357
|
1365
|
if (this.monitors.length < 8) {
|
1358
|
1366
|
var nl = 8 - this.monitors.length;
|