|
@@ -25,14 +25,14 @@
|
25
|
25
|
<td width="90">
|
26
|
26
|
<div class="under-line"> {{ record.patient.name }}</div>
|
27
|
27
|
</td>
|
28
|
|
- <td width="30"></td>
|
|
28
|
+ <td width="10"></td>
|
29
|
29
|
<td width="50">性 别:</td>
|
30
|
30
|
<td width="50">
|
31
|
31
|
<div class="under-line">
|
32
|
32
|
{{ record.patient.gender == 1 ? "男" : "女" }}
|
33
|
33
|
</div>
|
34
|
34
|
</td>
|
35
|
|
- <td width="30"></td>
|
|
35
|
+ <td width="10"></td>
|
36
|
36
|
<td width="50">年 龄:</td>
|
37
|
37
|
<td width="40">
|
38
|
38
|
<div class="under-line">{{ getNewAge(record.patient.id_card_no) }}</div>
|
|
@@ -40,11 +40,11 @@
|
40
|
40
|
<td>岁</td>
|
41
|
41
|
|
42
|
42
|
<td width="140">透析号/住院号:</td>
|
43
|
|
- <td width="130">
|
|
43
|
+ <td width="200">
|
44
|
44
|
<div class="under-line"> {{ record.patient.dialysis_no }} /{{ record.receive_assessment.admission_number ? record.receive_assessment.admission_number : "无" }}
|
45
|
45
|
</div>
|
46
|
46
|
</td>
|
47
|
|
- <td width="30"></td>
|
|
47
|
+ <td width="10"></td>
|
48
|
48
|
<td width="80">治疗日期:</td>
|
49
|
49
|
<td width="120">
|
50
|
50
|
<div class="under-line">
|
|
@@ -393,7 +393,6 @@
|
393
|
393
|
</div>
|
394
|
394
|
</td>
|
395
|
395
|
<td width="10">ml</td>
|
396
|
|
- <td width='10'></td>
|
397
|
396
|
|
398
|
397
|
<td width="60">置换量:</td>
|
399
|
398
|
<td width="40">
|
|
@@ -401,7 +400,7 @@
|
401
|
400
|
{{ record.prescription.replacement_total ? record.prescription.replacement_total : "/" }}
|
402
|
401
|
</div>
|
403
|
402
|
</td>
|
404
|
|
- <td width="20">ml</td>
|
|
403
|
+ <td width="10">ml</td>
|
405
|
404
|
|
406
|
405
|
<td width="80">透析方式:</td>
|
407
|
406
|
<td width="50">
|
|
@@ -410,10 +409,13 @@
|
410
|
409
|
<td width="60">
|
411
|
410
|
<label-box :isChecked="record.prescription.mode_id == 2 ? true : false" showValue="HDF"></label-box>
|
412
|
411
|
</td>
|
|
412
|
+ <td width="60">
|
|
413
|
+ <label-box :isChecked="record.prescription.mode_id == 5 ? true : false" showValue="HF"></label-box>
|
|
414
|
+ </td>
|
413
|
415
|
<td width="50">
|
414
|
416
|
<label-box :isChecked="record.prescription.mode_id == 4 ? true : false" showValue="HP"></label-box>
|
415
|
417
|
</td>
|
416
|
|
- <td width="80">
|
|
418
|
+ <td width="90">
|
417
|
419
|
<label-box :isChecked="record.prescription.mode_id == 3 ? true : false" showValue="HD+HP"></label-box>
|
418
|
420
|
</td>
|
419
|
421
|
<td width="90">透析器型号</td>
|
|
@@ -553,7 +555,7 @@
|
553
|
555
|
<td width="60">时间</td>
|
554
|
556
|
<td width="40" style="line-height:20px">T<br />℃</td>
|
555
|
557
|
<td width="80" style="line-height:20px">Bp<br />mmHg</td>
|
556
|
|
- <td width="40" style="line-height:20px">P<br />次/分</td>
|
|
558
|
+ <td width="50" style="line-height:20px">P<br />次/分</td>
|
557
|
559
|
<td width="60" style="line-height:20px">R<br />次/分</td>
|
558
|
560
|
<td width="60" style="line-height:20px">静脉压<br />{{record.monitor_records[0] && record.monitor_records[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}</td>
|
559
|
561
|
<td width="60" style="line-height:20px">动脉压<br />{{record.monitor_records[0] && record.monitor_records[0]['venous_pressure_type'] == 2 ? 'kpa' : 'mmHg'}}</td>
|
|
@@ -1076,9 +1078,9 @@ export default {
|
1076
|
1078
|
var dlegh = 0
|
1077
|
1079
|
if (
|
1078
|
1080
|
this.records[recordIndex].monitor_records &&
|
1079
|
|
- this.records[recordIndex].monitor_records.length < 8
|
|
1081
|
+ this.records[recordIndex].monitor_records.length < 6
|
1080
|
1082
|
) {
|
1081
|
|
- dlegh = 8 - this.records[recordIndex].monitor_records.length
|
|
1083
|
+ dlegh = 6 - this.records[recordIndex].monitor_records.length
|
1082
|
1084
|
} else {
|
1083
|
1085
|
dlegh = 0
|
1084
|
1086
|
}
|