|
@@ -291,7 +291,7 @@
|
291
|
291
|
</div>
|
292
|
292
|
ml/min
|
293
|
293
|
</div>
|
294
|
|
-
|
|
294
|
+
|
295
|
295
|
</div>
|
296
|
296
|
|
297
|
297
|
<div class="row" style="padding: 2px 0; line-height: 23px; display: flex">
|
|
@@ -370,7 +370,7 @@
|
370
|
370
|
</div>
|
371
|
371
|
|
372
|
372
|
<div class="row" style="padding: 2px 0; line-height: 23px; display: flex">
|
373
|
|
-
|
|
373
|
+
|
374
|
374
|
<div class="inline_block" style="flex: 1">
|
375
|
375
|
上次透后体重:
|
376
|
376
|
<div class="under_line" style="width: 50px; text-align: center">
|
|
@@ -643,11 +643,11 @@
|
643
|
643
|
<td height="40px">{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
|
644
|
644
|
<td >{{monitor.blood_flow_volume? monitor.blood_flow_volume: ""}}</td>
|
645
|
645
|
<td>
|
646
|
|
- <span v-if="monitor.systolic_blood_pressure>0">{{monitor.replacement_rate ? monitor.replacement_rate : '/'}}</span>
|
647
|
|
- <span v-if="monitor.systolic_blood_pressure == 0">{{monitor.replacement_rate ? monitor.replacement_rate : ''}}</span>
|
|
646
|
+ <span v-if="monitor.systolic_blood_pressure>0">{{monitor.replacement_rate ? monitor.replacement_rate : '/'}}</span>
|
|
647
|
+ <span v-if="monitor.systolic_blood_pressure == 0">{{monitor.replacement_rate ? monitor.replacement_rate : ''}}</span>
|
648
|
648
|
</td>
|
649
|
649
|
<td >
|
650
|
|
- <span v-if="monitor.systolic_blood_pressure>0">{{monitor.ultrafiltration_rate ? monitor.ultrafiltration_rate : '/' }}</span>
|
|
650
|
+ <span v-if="monitor.systolic_blood_pressure>0">{{monitor.ultrafiltration_rate ? monitor.ultrafiltration_rate : '/' }}</span>
|
651
|
651
|
<span v-if="monitor.systolic_blood_pressure ==0">{{monitor.ultrafiltration_rate ? monitor.ultrafiltration_rate : '' }}</span>
|
652
|
652
|
</td>
|
653
|
653
|
<td >
|
|
@@ -1845,7 +1845,7 @@ export default {
|
1845
|
1845
|
}
|
1846
|
1846
|
}
|
1847
|
1847
|
})
|
1848
|
|
- }
|
|
1848
|
+ }
|
1849
|
1849
|
if(this.monitors.length >0){
|
1850
|
1850
|
for(let i in this.monitors){
|
1851
|
1851
|
if(this.monitors[i].blood_flow_volume ==0){
|
|
@@ -1893,7 +1893,7 @@ export default {
|
1893
|
1893
|
|
1894
|
1894
|
}
|
1895
|
1895
|
}
|
1896
|
|
-
|
|
1896
|
+
|
1897
|
1897
|
|
1898
|
1898
|
if(monearr.length>0){
|
1899
|
1899
|
checkDate =checkDate.concat(monearr)
|
|
@@ -2490,14 +2490,14 @@ export default {
|
2490
|
2490
|
//过滤口服药
|
2491
|
2491
|
if(this.org_id ==10721 ||this.org_id ==0){
|
2492
|
2492
|
console.log('df11111111',this.doctor_advices);
|
2493
|
|
-
|
|
2493
|
+
|
2494
|
2494
|
var docArr = []
|
2495
|
2495
|
if(this.doctor_advices!=null && this.doctor_advices.length>0){
|
2496
|
2496
|
for(let i=0;i<this.doctor_advices.length;i++){
|
2497
|
2497
|
if(this.doctor_advices[i].delivery_way!='口服' && this.doctor_advices[i].delivery_way!='中药口服'){
|
2498
|
2498
|
if(this.doctor_advices[i].execution_frequency.indexOf("上机前") == -1 ){
|
2499
|
2499
|
docArr.push(this.doctor_advices[i])
|
2500
|
|
- }
|
|
2500
|
+ }
|
2501
|
2501
|
}
|
2502
|
2502
|
}
|
2503
|
2503
|
}
|
|
@@ -2708,15 +2708,32 @@ export default {
|
2708
|
2708
|
},
|
2709
|
2709
|
getcheckData(val){
|
2710
|
2710
|
if(val.length >0){
|
2711
|
|
- let message = `记录单未填数据:<br/><br/> ${val.join("<br/><br/> ")}`;
|
2712
|
|
- this.$message({
|
|
2711
|
+ let message = `记录单未填数据:<br/> ${val.join("<br/> ")}`;
|
|
2712
|
+ this.$confirm(message, '提示', {
|
|
2713
|
+ confirmButtonText: '确定',
|
|
2714
|
+ cancelButtonText: '取消',
|
|
2715
|
+ type: 'warning',
|
2713
|
2716
|
dangerouslyUseHTMLString: true,
|
2714
|
|
- message:message,
|
2715
|
|
- duration:0,
|
2716
|
|
- showClose:true,
|
2717
|
|
- type:'error'
|
2718
|
2717
|
})
|
2719
|
|
- return message
|
|
2718
|
+ // .then(() => {
|
|
2719
|
+ // this.$message({
|
|
2720
|
+ // type: 'success',
|
|
2721
|
+ // message: '删除成功!'
|
|
2722
|
+ // });
|
|
2723
|
+ // }).catch(() => {
|
|
2724
|
+ // this.$message({
|
|
2725
|
+ // type: 'info',
|
|
2726
|
+ // message: '已取消删除'
|
|
2727
|
+ // });
|
|
2728
|
+ // });
|
|
2729
|
+ // this.$message({
|
|
2730
|
+ // dangerouslyUseHTMLString: true,
|
|
2731
|
+ // message:message,
|
|
2732
|
+ // duration:0,
|
|
2733
|
+ // showClose:true,
|
|
2734
|
+ // type:'error'
|
|
2735
|
+ // })
|
|
2736
|
+ // return message
|
2720
|
2737
|
}else{
|
2721
|
2738
|
this.$message.success('核对完成')
|
2722
|
2739
|
}
|