|
@@ -421,13 +421,13 @@
|
421
|
421
|
<td width="70">计划时间:</td>
|
422
|
422
|
<td width="40">
|
423
|
423
|
<div class="under-line">
|
424
|
|
- {{ prescription.dialysis_duration_hour ? prescription.dialysis_duration_hour : "" }}
|
|
424
|
+ {{ prescription.dialysis_duration_hour ? prescription.dialysis_duration_hour : 0 }}
|
425
|
425
|
</div>
|
426
|
426
|
</td>
|
427
|
427
|
<td width="10">h</td>
|
428
|
428
|
<td width="40">
|
429
|
429
|
<div class="under-line">
|
430
|
|
- {{ prescription.dialysis_duration_minute ? prescription.dialysis_duration_minute : "" }}
|
|
430
|
+ {{ prescription.dialysis_duration_minute ? prescription.dialysis_duration_minute : 0 }}
|
431
|
431
|
</div>
|
432
|
432
|
</td>
|
433
|
433
|
<td width="35">min</td>
|
|
@@ -435,13 +435,13 @@
|
435
|
435
|
<td width="100">实际治疗时间:</td>
|
436
|
436
|
<td width="40">
|
437
|
437
|
<div class="under-line">
|
438
|
|
- {{ afterdialysis.actual_treatment_hour ? afterdialysis.actual_treatment_hour : "" }}
|
|
438
|
+ {{ afterdialysis.actual_treatment_hour ? afterdialysis.actual_treatment_hour : 0 }}
|
439
|
439
|
</div>
|
440
|
440
|
</td>
|
441
|
441
|
<td width="10">h</td>
|
442
|
442
|
<td width="40">
|
443
|
443
|
<div class="under-line">
|
444
|
|
- {{ afterdialysis.actual_treatment_minute ? afterdialysis.actual_treatment_minute : "" }}
|
|
444
|
+ {{ afterdialysis.actual_treatment_minute ? afterdialysis.actual_treatment_minute : 0 }}
|
445
|
445
|
</div>
|
446
|
446
|
</td>
|
447
|
447
|
<td width="35">min</td>
|
|
@@ -661,7 +661,7 @@
|
661
|
661
|
<td></td>
|
662
|
662
|
<td width="70">主管医生:</td>
|
663
|
663
|
<td width="100">
|
664
|
|
- <div>
|
|
664
|
+ <div style="text-align:left;">
|
665
|
665
|
<span v-if="setAdminUserES(prescription.prescription_doctor) == ''">
|
666
|
666
|
{{ getAdminUser(prescription.prescription_doctor) }}
|
667
|
667
|
</span>
|
|
@@ -672,7 +672,7 @@
|
672
|
672
|
</td>
|
673
|
673
|
<td width="120">穿刺/开管护士:</td>
|
674
|
674
|
<td width="100">
|
675
|
|
- <div>
|
|
675
|
+ <div style="text-align:left;">
|
676
|
676
|
<span v-if="setAdminUserES(dialysisOrder == null ? 0 : dialysisOrder.puncture_nurse) == ''">
|
677
|
677
|
{{ getAdminUser(dialysisOrder == null ? 0 : dialysisOrder.puncture_nurse) }}</span>
|
678
|
678
|
<img style="height:30px;" :src="setAdminUserES(dialysisOrder == null ? 0 : dialysisOrder.puncture_nurse)" alt="" srcset="" v-else />
|
|
@@ -680,7 +680,7 @@
|
680
|
680
|
</td>
|
681
|
681
|
<td width="70">核对护士:</td>
|
682
|
682
|
<td width="100">
|
683
|
|
- <div>
|
|
683
|
+ <div style="text-align:left;">
|
684
|
684
|
<span v-if="setAdminUserES(check == null ? 0 : check.modifier) == ''">
|
685
|
685
|
{{ getAdminUser(check == null ? 0 : check.modifier) ? getAdminUser(check == null ? 0 : check.modifier) : "" }}
|
686
|
686
|
</span>
|