|
@@ -574,8 +574,11 @@
|
574
|
574
|
<td> {{monitor.pulse_frequency?monitor.pulse_frequency:''}}</td>
|
575
|
575
|
<td> {{monitor.breathing_rate?monitor.breathing_rate:''}}</td>
|
576
|
576
|
<td> {{monitor.blood_flow_volume?monitor.blood_flow_volume:''}}</td>
|
577
|
|
- <td> {{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:''}}</td>
|
578
|
|
- <td> {{monitor.displacement_quantity?monitor.displacement_quantity:''}}</td>
|
|
577
|
+
|
|
578
|
+ <td v-if="isShowZero && monitor.operate_time"> {{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:0}}</td>
|
|
579
|
+ <td v-else> {{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:''}}</td>
|
|
580
|
+ <td v-if="isShowZero && monitor.operate_time"> {{monitor.displacement_quantity?monitor.displacement_quantity:0}}</td>
|
|
581
|
+ <td v-else> {{monitor.displacement_quantity?monitor.displacement_quantity:''}}</td>
|
579
|
582
|
<td> {{monitor.venous_pressure?monitor.venous_pressure:''}}</td>
|
580
|
583
|
<td> {{monitor.transmembrane_pressure?monitor.transmembrane_pressure:''}}</td>
|
581
|
584
|
<!-- <td> {{monitor.sodium_concentration}}</td>
|
|
@@ -1094,6 +1097,7 @@
|
1094
|
1097
|
summary: {},
|
1095
|
1098
|
receiverTreatmentAccess: {},
|
1096
|
1099
|
org_template_info: {},
|
|
1100
|
+ isShowZero: false,
|
1097
|
1101
|
|
1098
|
1102
|
doctor_advices: [],
|
1099
|
1103
|
advice_groups: [],
|
|
@@ -1295,6 +1299,10 @@
|
1295
|
1299
|
this.monitors = response.data.data.monitors
|
1296
|
1300
|
this.summary = response.data.data.summary
|
1297
|
1301
|
this.org_template_info = response.data.data.org_template_info
|
|
1302
|
+ // 配置超滤量和置换量是否要显示0还是空
|
|
1303
|
+ if(this.org_template_info.org_id == 9535){
|
|
1304
|
+ this.isShowZero = true
|
|
1305
|
+ }
|
1298
|
1306
|
if (this.monitors.length < 8) {
|
1299
|
1307
|
var nl = 8 - this.monitors.length
|
1300
|
1308
|
for (let index = 0; index < nl; index++) {
|