|
@@ -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>
|
|
@@ -531,7 +530,7 @@
|
531
|
530
|
<div class="inline_block">
|
532
|
531
|
 核对时间:
|
533
|
532
|
<div class="under_line" style="width: 200px;">
|
534
|
|
- {{record.check?getTime(record.check.updated_time,'{y}年{m}月{d}日 {h}时'):''}}
|
|
533
|
+ {{record.check&&record.check.modifier> 0?getTime(record.check.check_time,'{y}年{m}月{d}日 {h}时'):''}}
|
535
|
534
|
</div>
|
536
|
535
|
</div>
|
537
|
536
|
|
|
@@ -585,7 +584,7 @@
|
585
|
584
|
<div class="inline_block">
|
586
|
585
|
 时间:
|
587
|
586
|
<div class="under_line" style="width: 200px;">
|
588
|
|
- {{record.check?getTime(record.dialysis_order.end_time,'{y}年{m}月{d}日 {h}时'):''}}
|
|
587
|
+ {{record.dialysis_order?getTime(record.dialysis_order.end_time,'{y}年{m}月{d}日 {h}时'):''}}
|
589
|
588
|
</div>
|
590
|
589
|
</div>
|
591
|
590
|
|
|
@@ -631,8 +630,6 @@
|
631
|
630
|
<div class="inline_block" style="margin-left:25px;">
|
632
|
631
|
住院号/ID号:
|
633
|
632
|
<div class="under_line" style="width: 120px;">
|
634
|
|
- {{record.patient.admission_number?record.patient.admission_number:'无'}}/{{ record.patient.dialysis_no
|
635
|
|
- }}
|
636
|
633
|
</div>
|
637
|
634
|
</div>
|
638
|
635
|
</div>
|
|
@@ -1040,10 +1037,10 @@
|
1040
|
1037
|
for (const recordIndex in this.records) {
|
1041
|
1038
|
this.advice_groups =[]
|
1042
|
1039
|
var dlegh = 0
|
1043
|
|
- if (this.records[recordIndex].monitor_records && this.records[recordIndex].monitor_records.length < 8) {
|
1044
|
|
- dlegh = 8 - this.records[recordIndex].monitor_records.length
|
|
1040
|
+ if (this.records[recordIndex].monitor_records && this.records[recordIndex].monitor_records.length < 7) {
|
|
1041
|
+ dlegh = 7 - this.records[recordIndex].monitor_records.length
|
1045
|
1042
|
} else {
|
1046
|
|
- dlegh = 8
|
|
1043
|
+ dlegh = 7
|
1047
|
1044
|
}
|
1048
|
1045
|
if (dlegh > 0) {
|
1049
|
1046
|
if (typeof (this.records[recordIndex].monitor_records) == 'undefined' || this.records[recordIndex].monitor_records == null) {
|