|
@@ -38,7 +38,6 @@
|
38
|
38
|
<div class="inline_block" style="margin-left: 25px;">
|
39
|
39
|
住院号/ID号:
|
40
|
40
|
<div class="under_line" style="width: 100px;">
|
41
|
|
- {{record.patient.admission_number?record.patient.admission_number:'无'}}/{{ record.patient.dialysis_no }}
|
42
|
41
|
</div>
|
43
|
42
|
</div>
|
44
|
43
|
</div>
|
|
@@ -78,9 +77,9 @@
|
78
|
77
|
|
79
|
78
|
<div class="inline_block" style="margin-left: 30px;">
|
80
|
79
|
透析机编号:
|
81
|
|
- <div class="under_line" style="width: 50px;">{{''}}</div>
|
|
80
|
+ <div class="under_line" style="width: 100px;">{{record.dialysis_order&&record.dialysis_order.device_number&&record.dialysis_order.device_number.number.length > 0?record.dialysis_order.device_number.number:''}}</div>
|
82
|
81
|
型号
|
83
|
|
- <div class="under_line" style="width: 50px;">{{''}}</div>
|
|
82
|
+ <div class="under_line" style="width: 100px;">{{record.assessment_before_dislysis&&record.assessment_before_dislysis.machine_type&&record.assessment_before_dislysis.machine_type.length > 0 ? record.assessment_before_dislysis.machine_type:''}}</div>
|
84
|
83
|
</div>
|
85
|
84
|
|
86
|
85
|
</div>
|
|
@@ -431,6 +430,15 @@
|
431
|
430
|
:checked="isCheckBoxChecked(record.assessment_after_dislysis, 'hemostasis_opera', 3)"></check-box>
|
432
|
431
|
</div>
|
433
|
432
|
|
|
433
|
+
|
|
434
|
+ <div class="inline_block" style="margin-left: 30px;">
|
|
435
|
+ 实际超滤量:
|
|
436
|
+ <div class="under_line" style="width: 50px;">
|
|
437
|
+ {{record.assessment_after_dislysis&&record.assessment_after_dislysis.actual_ultrafiltration?record.assessment_after_dislysis.actual_ultrafiltration:''}}
|
|
438
|
+ </div>
|
|
439
|
+ L
|
|
440
|
+ </div>
|
|
441
|
+
|
434
|
442
|
</div>
|
435
|
443
|
|
436
|
444
|
<div class="row" style="padding: 2px 0;line-height:19px;">
|
|
@@ -531,7 +539,7 @@
|
531
|
539
|
<div class="inline_block">
|
532
|
540
|
 核对时间:
|
533
|
541
|
<div class="under_line" style="width: 200px;">
|
534
|
|
- {{record.check?getTime(record.check.updated_time,'{y}年{m}月{d}日 {h}时'):''}}
|
|
542
|
+ {{record.check&&record.check.modifier> 0?getTime(record.check.check_time,'{y}年{m}月{d}日 {h}时'):''}}
|
535
|
543
|
</div>
|
536
|
544
|
</div>
|
537
|
545
|
|
|
@@ -585,7 +593,7 @@
|
585
|
593
|
<div class="inline_block">
|
586
|
594
|
 时间:
|
587
|
595
|
<div class="under_line" style="width: 200px;">
|
588
|
|
- {{record.check?getTime(record.dialysis_order.end_time,'{y}年{m}月{d}日 {h}时'):''}}
|
|
596
|
+ {{record.dialysis_order?getTime(record.dialysis_order.end_time,'{y}年{m}月{d}日 {h}时'):''}}
|
589
|
597
|
</div>
|
590
|
598
|
</div>
|
591
|
599
|
|
|
@@ -631,8 +639,6 @@
|
631
|
639
|
<div class="inline_block" style="margin-left:25px;">
|
632
|
640
|
住院号/ID号:
|
633
|
641
|
<div class="under_line" style="width: 120px;">
|
634
|
|
- {{record.patient.admission_number?record.patient.admission_number:'无'}}/{{ record.patient.dialysis_no
|
635
|
|
- }}
|
636
|
642
|
</div>
|
637
|
643
|
</div>
|
638
|
644
|
</div>
|
|
@@ -674,11 +680,11 @@
|
674
|
680
|
<div class="inline_block" style="margin-left:20px;">
|
675
|
681
|
治疗时间:
|
676
|
682
|
<div class="under_line" style="width: 30px;">
|
677
|
|
- {{record.prescription&&record.prescription.dialysis_duration_hour?record.prescription.dialysis_duration_hour:''}}
|
|
683
|
+ {{record.prescription&&record.prescription.dialysis_duration_hour?record.prescription.dialysis_duration_hour:'0'}}
|
678
|
684
|
</div>
|
679
|
685
|
h
|
680
|
686
|
<div class="under_line" style="width: 30px;">
|
681
|
|
- {{record.prescription&&record.prescription.dialysis_duration_minute?record.prescription.dialysis_duration_minute:''}}
|
|
687
|
+ {{record.prescription&&record.prescription.dialysis_duration_minute?record.prescription.dialysis_duration_minute:'0'}}
|
682
|
688
|
</div>
|
683
|
689
|
min
|
684
|
690
|
</div>
|
|
@@ -1039,10 +1045,10 @@
|
1039
|
1045
|
for (const recordIndex in this.records) {
|
1040
|
1046
|
this.advice_groups = []
|
1041
|
1047
|
var dlegh = 0
|
1042
|
|
- if (this.records[recordIndex].monitor_records && this.records[recordIndex].monitor_records.length < 8) {
|
1043
|
|
- dlegh = 8 - this.records[recordIndex].monitor_records.length
|
|
1048
|
+ if (this.records[recordIndex].monitor_records && this.records[recordIndex].monitor_records.length < 7) {
|
|
1049
|
+ dlegh = 7 - this.records[recordIndex].monitor_records.length
|
1044
|
1050
|
} else {
|
1045
|
|
- dlegh = 8
|
|
1051
|
+ dlegh = 7
|
1046
|
1052
|
}
|
1047
|
1053
|
if (dlegh > 0) {
|
1048
|
1054
|
if (typeof (this.records[recordIndex].monitor_records) === 'undefined' || this.records[recordIndex].monitor_records == null) {
|
|
@@ -1100,7 +1106,12 @@
|
1100
|
1106
|
id: this.doctor_advices[index].id,
|
1101
|
1107
|
parent_id: this.doctor_advices[index].parent_id,
|
1102
|
1108
|
children: this.doctor_advices[index].children,
|
1103
|
|
- remark: this.doctor_advices[index].remark
|
|
1109
|
+ remark: this.doctor_advices[index].remark,
|
|
1110
|
+
|
|
1111
|
+ execution_staff: this.doctor_advices[index].execution_staff,
|
|
1112
|
+ checker: this.doctor_advices[index].checker,
|
|
1113
|
+ advice_doctor: this.doctor_advices[index].advice_doctor,
|
|
1114
|
+
|
1104
|
1115
|
|
1105
|
1116
|
}
|
1106
|
1117
|
doctor_advice['isShow'] = 1
|