|
@@ -364,7 +364,7 @@
|
364
|
364
|
<el-button type="primary" @click="toMonitorPint">应用</el-button>
|
365
|
365
|
<!-- <el-button type="danger" @click="template_dele">删除模板</el-button>
|
366
|
366
|
<el-button type="primary" @click="template_save">保存模板</el-button> -->
|
367
|
|
- <el-button type="primary" @click="toContentPint(2)">应用</el-button>
|
|
367
|
+ <!-- <el-button type="primary" @click="toContentPint(2)">应用</el-button> -->
|
368
|
368
|
<el-button @click="blood_dialog = false">取消</el-button>
|
369
|
369
|
</span>
|
370
|
370
|
</el-dialog>
|
|
@@ -2432,10 +2432,18 @@
|
2432
|
2432
|
total_length = this.monitorList.length
|
2433
|
2433
|
}
|
2434
|
2434
|
}
|
2435
|
|
- pingjun_blood_flow_volume = (blood_flow_volume_total/total_length).toFixed(2)
|
|
2435
|
+ pingjun_blood_flow_volume = (blood_flow_volume_total/total_length).toFixed(2)
|
|
2436
|
+ if(pingjun_blood_flow_volume=="NaN"){
|
|
2437
|
+ pingjun_blood_flow_volume = ""
|
|
2438
|
+ }
|
2436
|
2439
|
pingjun_ultrafiltration_volume_total = (ultrafiltration_volume_total/total_length).toFixed(2)
|
|
2440
|
+ if(pingjun_ultrafiltration_volume_total=="NaN"){
|
|
2441
|
+ pingjun_ultrafiltration_volume_total = ""
|
|
2442
|
+ }
|
2437
|
2443
|
pingjun_ultrafiltration_rate_total = (ultrafiltration_rate_total/total_length).toFixed(2)
|
2438
|
|
-
|
|
2444
|
+ if(pingjun_ultrafiltration_rate_total == "NaN"){
|
|
2445
|
+ pingjun_ultrafiltration_rate_total = ""
|
|
2446
|
+ }
|
2439
|
2447
|
var dry_weight_str = ""
|
2440
|
2448
|
//干体重
|
2441
|
2449
|
if(this.dryweightList!=null && this.dryweightList.length>0){
|