|
@@ -24,8 +24,8 @@
|
24
|
24
|
|
25
|
25
|
<td width="50">住院号:</td>
|
26
|
26
|
<td width="150">
|
27
|
|
- <div class="under-line">
|
28
|
|
- {{ receiverTreatmentAccess.admission_number ? receiverTreatmentAccess.admission_number : "" }}
|
|
27
|
+ <div class="under-line">
|
|
28
|
+ {{ receiverTreatmentAccess.admission_number ? receiverTreatmentAccess.admission_number : "/" }}
|
29
|
29
|
</div>
|
30
|
30
|
</td>
|
31
|
31
|
<td width="20"></td>
|
|
@@ -45,7 +45,7 @@
|
45
|
45
|
<tr>
|
46
|
46
|
<td width="90">传染病标志:</td>
|
47
|
47
|
<td width="80">
|
48
|
|
- <div class="under-line">{{InfectiousDiseases?InfectiousDiseases:'无'}}</div>
|
|
48
|
+ <div class="under-line">{{InfectiousDiseases?InfectiousDiseases:'阴性'}}</div>
|
49
|
49
|
</td>
|
50
|
50
|
<td width="10"></td>
|
51
|
51
|
<td width="110">上次透析时间:</td>
|
|
@@ -389,25 +389,25 @@
|
389
|
389
|
<td width='40'>体重:</td>
|
390
|
390
|
<td width='50'>干体重:</td>
|
391
|
391
|
<td width="50">
|
392
|
|
- <div class="under-line"> {{ predialysis.dry_weight ? predialysis.dry_weight : "" }}</div>
|
|
392
|
+ <div class="under-line"> {{ predialysis.dry_weight ? predialysis.dry_weight : "/" }}</div>
|
393
|
393
|
</td>
|
394
|
394
|
<td width="10">Kg</td>
|
395
|
395
|
<td width="30"></td>
|
396
|
396
|
<td width='70'>上次透后:</td>
|
397
|
397
|
<td width="50">
|
398
|
|
- <div class="under-line"> {{ assessmentafter.weight_after ? assessmentafter.weight_after : "" }}</div>
|
|
398
|
+ <div class="under-line"> {{ assessmentafter.weight_after ? assessmentafter.weight_after : "/" }}</div>
|
399
|
399
|
</td>
|
400
|
400
|
<td width="10">Kg</td>
|
401
|
401
|
<td width="30"></td>
|
402
|
402
|
<td width='70'>本次透前:</td>
|
403
|
403
|
<td width="50">
|
404
|
|
- <div class="under-line"> {{ predialysis.weight_before ? predialysis.weight_before : "" }}</div>
|
|
404
|
+ <div class="under-line"> {{ predialysis.weight_before ? predialysis.weight_before : "/" }}</div>
|
405
|
405
|
</td>
|
406
|
406
|
<td width="10">Kg</td>
|
407
|
407
|
<td width="30"></td>
|
408
|
408
|
<td width='70'>本次透后:</td>
|
409
|
409
|
<td width="50">
|
410
|
|
- <div class="under-line"> {{ afterdialysis.weight_after ? afterdialysis.weight_after : "" }}</div>
|
|
410
|
+ <div class="under-line"> {{ afterdialysis.weight_after ? afterdialysis.weight_after : "/" }}</div>
|
411
|
411
|
</td>
|
412
|
412
|
<td width="10">Kg</td>
|
413
|
413
|
<td></td>
|
|
@@ -452,7 +452,6 @@
|
452
|
452
|
<table class="table-box">
|
453
|
453
|
<tbody>
|
454
|
454
|
<tr>
|
455
|
|
- <td width="90">预设超滤量:</td>
|
456
|
455
|
<td width="80">预设超滤量:</td>
|
457
|
456
|
<td width="50">
|
458
|
457
|
<div class="under-line">
|
|
@@ -718,8 +717,10 @@
|
718
|
717
|
<td> {{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
|
719
|
718
|
<td> {{ monitor.temperature ? monitor.temperature : '' }}</td>
|
720
|
719
|
<td>
|
721
|
|
- {{ monitor.systolic_blood_pressure ? monitor.systolic_blood_pressure : "" }}/
|
722
|
|
- {{ monitor.diastolic_blood_pressure ? monitor.diastolic_blood_pressure : "" }}
|
|
720
|
+ <span v-if="monitor.systolic_blood_pressure || monitor.diastolic_blood_pressure">
|
|
721
|
+ {{ monitor.systolic_blood_pressure ? monitor.systolic_blood_pressure : "" }}/
|
|
722
|
+ {{ monitor.diastolic_blood_pressure ? monitor.diastolic_blood_pressure : "" }}
|
|
723
|
+ </span>
|
723
|
724
|
</td>
|
724
|
725
|
<td> {{ monitor.pulse_frequency ? monitor.pulse_frequency : '' }}</td>
|
725
|
726
|
<td> {{ monitor.breathing_rate ? monitor.breathing_rate : '' }}</td>
|