|
@@ -27,33 +27,33 @@
|
27
|
27
|
血液透析记录单
|
28
|
28
|
</div>
|
29
|
29
|
</div>
|
30
|
|
- <div class="row">
|
31
|
|
- <div class="inline_block">
|
|
30
|
+ <div class="row" style="display: flex;">
|
|
31
|
+ <div class="inline_block" style="flex: 1;">
|
32
|
32
|
姓名:
|
33
|
33
|
<div class="under_line" style="width: 50px; text-align: center">
|
34
|
34
|
{{ patientInfo.name }}
|
35
|
35
|
</div>
|
36
|
36
|
</div>
|
37
|
|
- <div class="inline_block" style="margin:0 10px">
|
|
37
|
+ <div class="inline_block" style="flex: 1;">
|
38
|
38
|
性别:
|
39
|
39
|
<div class="under_line" style="width: 30px; text-align: center">
|
40
|
40
|
{{ patientInfo_gender_1 ? "男" : "女" }}
|
41
|
41
|
</div>
|
42
|
42
|
</div>
|
43
|
|
- <div class="inline_block" style="">
|
|
43
|
+ <div class="inline_block" style="flex: 1;">
|
44
|
44
|
年龄:
|
45
|
45
|
<div class="under_line" style="width: 30px; text-align: center">
|
46
|
46
|
{{ getAge(patientInfo) }}
|
47
|
47
|
</div>
|
48
|
48
|
岁
|
49
|
49
|
</div>
|
50
|
|
- <div class="inline_block" style="margin: 0 10px;">
|
|
50
|
+ <div class="inline_block" style="flex: 1;">
|
51
|
51
|
病历号:
|
52
|
52
|
<div class="under_line" style="width: 70px; text-align: center">
|
53
|
53
|
{{ patientInfo.dialysis_no }}
|
54
|
54
|
</div>
|
55
|
55
|
</div>
|
56
|
|
- <div class="inline_block" style="">
|
|
56
|
+ <div class="inline_block" style="flex: 1;">
|
57
|
57
|
日期:
|
58
|
58
|
<div class="under_line"
|
59
|
59
|
style="width: 100px; text-align: center"
|
|
@@ -61,7 +61,7 @@
|
61
|
61
|
{{ xtdate }}
|
62
|
62
|
</div>
|
63
|
63
|
</div>
|
64
|
|
- <div class="inline_block" style="margin-left: 10px">
|
|
64
|
+ <div class="inline_block" style="flex: 1;">
|
65
|
65
|
次数:
|
66
|
66
|
<div
|
67
|
67
|
class="under_line"
|
|
@@ -83,7 +83,7 @@
|
83
|
83
|
<div class="under_line"
|
84
|
84
|
style="
|
85
|
85
|
width: 640px;
|
86
|
|
- text-align: left;
|
|
86
|
+ text-align: center;
|
87
|
87
|
word-wrap: break-word;
|
88
|
88
|
white-space: inherit;
|
89
|
89
|
"
|
|
@@ -92,10 +92,10 @@
|
92
|
92
|
</div>
|
93
|
93
|
</div>
|
94
|
94
|
</div>
|
95
|
|
- <div class="row" style="text-align: center;border: 1px solid black;width: 99%">
|
|
95
|
+ <div style="text-align: center;border: 1px solid black;width: 99%;padding: 5px 0;">
|
96
|
96
|
透前情况
|
97
|
97
|
</div>
|
98
|
|
- <div class="row" style="border: 1px solid black;border-top: none;width: 99%;">
|
|
98
|
+ <div style="border: 1px solid black;border-top: none;width: 99%;border-bottom: none;">
|
99
|
99
|
<div class="row" style="display: flex;">
|
100
|
100
|
<div class="inline_block" style="flex: 2;" >
|
101
|
101
|
血管通路:
|
|
@@ -132,7 +132,10 @@
|
132
|
132
|
white-space: normal;
|
133
|
133
|
"
|
134
|
134
|
>
|
135
|
|
- {{ dialysisOrder.dialysis_dialyszers ? dialysisOrder.dialysis_dialyszers : "/" }}
|
|
135
|
+ <span v-if="dialysisOrder !=null" >
|
|
136
|
+ {{dialysisOrder.dialysis_dialyszers ? dialysisOrder.dialysis_dialyszers : "/" }}
|
|
137
|
+ </span>
|
|
138
|
+ <span v-else>/</span>
|
136
|
139
|
</div>
|
137
|
140
|
</div>
|
138
|
141
|
<div class="inline_block" style="flex: 1;" >
|
|
@@ -182,9 +185,10 @@
|
182
|
185
|
white-space: normal;
|
183
|
186
|
"
|
184
|
187
|
>
|
185
|
|
- {{
|
186
|
|
- dialysisOrder.dialysis_irrigation ? dialysisOrder.dialysis_irrigation : "/"
|
187
|
|
- }}
|
|
188
|
+ <span v-if="dialysisOrder !=null">
|
|
189
|
+ {{ dialysisOrder.dialysis_irrigation ? dialysisOrder.dialysis_irrigation : "/"}}
|
|
190
|
+ </span>
|
|
191
|
+ <span v-else>/</span>
|
188
|
192
|
</div>
|
189
|
193
|
</div>
|
190
|
194
|
<div class="inline_block" style="flex: 1;" >
|
|
@@ -256,6 +260,16 @@
|
256
|
260
|
<span v-if="prescription.anticoagulant == '低分子肝素钠'">iu/h</span>
|
257
|
261
|
<!-- <span v-else>mg/h</span> -->
|
258
|
262
|
</div>
|
|
263
|
+ <div class="inline_block" style="flex: 1">
|
|
264
|
+ 透前体重:
|
|
265
|
+ <div
|
|
266
|
+ class="under_line"
|
|
267
|
+ style="width: 70px; text-align: center"
|
|
268
|
+ >
|
|
269
|
+ {{predialysis.weight_before ? predialysis.weight_before : ""}}
|
|
270
|
+ </div>
|
|
271
|
+ kg
|
|
272
|
+ </div>
|
259
|
273
|
</div>
|
260
|
274
|
<!-- -->
|
261
|
275
|
<div class="row" style="display: flex;">
|
|
@@ -308,25 +322,17 @@
|
308
|
322
|
</div>
|
309
|
323
|
kg
|
310
|
324
|
</div>
|
311
|
|
- <div class="inline_block" style="flex: 1">
|
312
|
|
- 透前体重:
|
313
|
|
- <div
|
314
|
|
- class="under_line"
|
315
|
|
- style="width: 70px; text-align: center"
|
316
|
|
- >
|
317
|
|
- {{predialysis.weight_before ? predialysis.weight_before : ""}}
|
318
|
|
- </div>
|
319
|
|
- kg
|
320
|
|
- </div>
|
|
325
|
+
|
321
|
326
|
</div>
|
322
|
327
|
<!-- 医嘱脱水量 -->
|
323
|
|
- <div class="row" style="display: flex;">
|
|
328
|
+ <div class="row" style="display: flex;vertical-align: text-bottom;">
|
324
|
329
|
<div class="inline_block" style="flex: 1;" >
|
325
|
330
|
医嘱脱水量:
|
326
|
331
|
<div class="under_line"
|
327
|
332
|
style=" width: 100px;
|
328
|
|
- text-align: center; white-space: normal;
|
|
333
|
+ text-align: center;
|
329
|
334
|
">
|
|
335
|
+ <span style="height: 30px;display: inline-block;"></span>
|
330
|
336
|
{{ prescription.target_ultrafiltration ? prescription.target_ultrafiltration : "/"}}
|
331
|
337
|
</div>L
|
332
|
338
|
</div>
|
|
@@ -336,18 +342,18 @@
|
336
|
342
|
class="under_line"
|
337
|
343
|
style="width: 80px; text-align: center"
|
338
|
344
|
>
|
|
345
|
+ <span style="height: 30px;display: inline-block;"></span>
|
339
|
346
|
{{ prescription.dialysis_duration_hour ? prescription.dialysis_duration_hour : "0"}} h
|
340
|
347
|
{{ prescription.dialysis_duration_minute ? prescription.dialysis_duration_minute : "0" }}min
|
341
|
348
|
</div>
|
342
|
349
|
</div>
|
343
|
|
-
|
344
|
350
|
<div class="inline_block" style="flex: 1">
|
345
|
351
|
医生签名:
|
346
|
352
|
<div
|
347
|
353
|
class="under_line"
|
348
|
354
|
style="width: 100px; text-align: center"
|
349
|
355
|
>
|
350
|
|
- <span style="display: inline-block;" v-if="setAdminUserES(prescription.creater) == ''">
|
|
356
|
+ <span style="display: inline-block;height: 30px;" v-if="setAdminUserES(prescription.creater) == ''">
|
351
|
357
|
{{ getAdminUser(prescription.creater)}}
|
352
|
358
|
</span>
|
353
|
359
|
<span style="display: inline-block;" v-else>
|
|
@@ -383,7 +389,7 @@
|
383
|
389
|
</div> -->
|
384
|
390
|
<!-- 医嘱 -->
|
385
|
391
|
<div style="width: 99%;">
|
386
|
|
- <table class="inside_table" border="1" style="border-collapse: collapse;width: 100%;text-align: center;">
|
|
392
|
+ <table class="inside_table" border="1" style="border-collapse: collapse;width: 100%;text-align: center;border-bottom: none;">
|
387
|
393
|
<tbody>
|
388
|
394
|
<tr style="line-height: 30px;">
|
389
|
395
|
<td
|
|
@@ -417,17 +423,13 @@
|
417
|
423
|
v-for="(advice, advice_index) in doctor_advices"
|
418
|
424
|
:key="advice_index"
|
419
|
425
|
>
|
420
|
|
- <td height="32px">
|
|
426
|
+ <td style="line-height:35px">
|
421
|
427
|
<span v-if="advice.start_time">
|
422
|
428
|
{{ getTime(advice.start_time, "{h}:{i}") }}
|
423
|
429
|
</span>
|
424
|
|
-
|
425
|
430
|
</td>
|
426
|
|
- <td
|
427
|
|
- height="32px"
|
428
|
|
- colspan="2"
|
429
|
|
- class="advice-name"
|
430
|
|
- style="padding-left: 7px"
|
|
431
|
+ <td style="padding-left: 5px;line-height:35px"
|
|
432
|
+ colspan="2" class="advice-name"
|
431
|
433
|
>
|
432
|
434
|
|
433
|
435
|
<span v-if="advice.parent_id > 0"></span>
|
|
@@ -437,7 +439,7 @@
|
437
|
439
|
}}{{ advice.drug_spec_unit }})</span
|
438
|
440
|
>
|
439
|
441
|
<span v-if="advice.prescribing_number"
|
440
|
|
- > {{ advice.prescribing_number
|
|
442
|
+ > {{ advice.prescribing_number
|
441
|
443
|
}}{{ advice.prescribing_number_unit }}</span
|
442
|
444
|
>
|
443
|
445
|
<span v-if="advice.single_dose != 0">
|
|
@@ -458,7 +460,7 @@
|
458
|
460
|
>({{ advice.remark }})</span
|
459
|
461
|
>
|
460
|
462
|
</td>
|
461
|
|
- <td height="32px">
|
|
463
|
+ <td style="line-height:35px">
|
462
|
464
|
<span
|
463
|
465
|
v-if="setAdminUserES(advice.advice_doctor) == ''"
|
464
|
466
|
>{{ getAdminUser(advice.advice_doctor) }}</span
|
|
@@ -471,12 +473,12 @@
|
471
|
473
|
v-else
|
472
|
474
|
/>
|
473
|
475
|
</td>
|
474
|
|
- <td height="32px">
|
|
476
|
+ <td style="line-height:35px">
|
475
|
477
|
<span v-if="advice.execution_time">{{
|
476
|
478
|
getTime(advice.execution_time, "{h}:{i}")
|
477
|
479
|
}}</span>
|
478
|
480
|
</td>
|
479
|
|
- <td height="32px">
|
|
481
|
+ <td style="line-height:35px">
|
480
|
482
|
<span
|
481
|
483
|
v-if="setAdminUserES(advice.execution_staff) == ''"
|
482
|
484
|
>{{ getAdminUser(advice.execution_staff) }}</span
|
|
@@ -490,7 +492,7 @@
|
490
|
492
|
/>
|
491
|
493
|
</td>
|
492
|
494
|
|
493
|
|
- <td height="32px">
|
|
495
|
+ <td style="line-height:35px">
|
494
|
496
|
<span
|
495
|
497
|
v-if="setAdminUserES(advice.checker) == ''"
|
496
|
498
|
>{{ getAdminUser(advice.checker) }}</span
|
|
@@ -508,8 +510,8 @@
|
508
|
510
|
</table>
|
509
|
511
|
</div>
|
510
|
512
|
<!-- 透析监测 -->
|
511
|
|
- <div class="row" style="width: 99%;">
|
512
|
|
- <table class="inside_table" border="1" style="border-collapse: collapse;width: 100%;text-align: center;">
|
|
513
|
+ <div style="width: 99%;">
|
|
514
|
+ <table class="inside_table" border="1" style="border-collapse: collapse;width: 100%;text-align: center;border-top: none;">
|
513
|
515
|
<tbody>
|
514
|
516
|
<tr style="line-height: 30px; padding: 8px 5px">
|
515
|
517
|
<td
|
|
@@ -556,7 +558,7 @@
|
556
|
558
|
<td width="50">{{monitor.blood_flow_volume? monitor.blood_flow_volume: "/"}}</td>
|
557
|
559
|
<td width="50">{{ monitor.conductivity ? monitor.conductivity : "/" }}</td>
|
558
|
560
|
<td width="50">{{ monitor.ultrafiltration_rate ? monitor.ultrafiltration_rate : '/' }}</td>
|
559
|
|
- <td width="50">{{ monitor.ultrafiltration_volume? monitor.ultrafiltration_volume: "0" }}</td>
|
|
561
|
+ <td width="50">{{ monitor.ultrafiltration_volume? monitor.ultrafiltration_volume: "/" }}</td>
|
560
|
562
|
<!-- 剩余肝素 -->
|
561
|
563
|
<td width="65">{{ monitor.heparin ? monitor.heparin :'/' }}</td>
|
562
|
564
|
<td width="200">
|
|
@@ -571,7 +573,7 @@
|
571
|
573
|
</table>
|
572
|
574
|
</div>
|
573
|
575
|
|
574
|
|
- <div class="row" style="border: 1px solid black;border-bottom:none;width: 99%;">
|
|
576
|
+ <div style="border: 1px solid black;border-bottom:none;border-top:none;width: 99%;">
|
575
|
577
|
<div class="row" style="display: flex;">
|
576
|
578
|
<div class="inline_block" style="flex: 1">
|
577
|
579
|
穿刺护士:
|
|
@@ -596,7 +598,7 @@
|
596
|
598
|
}}</span
|
597
|
599
|
>
|
598
|
600
|
<img
|
599
|
|
- style="height: 35px"
|
|
601
|
+ style="height: 30px"
|
600
|
602
|
:src="
|
601
|
603
|
setAdminUserES(
|
602
|
604
|
dialysisOrder == null
|
|
@@ -633,7 +635,7 @@
|
633
|
635
|
}}</span
|
634
|
636
|
>
|
635
|
637
|
<img
|
636
|
|
- style="height: 35px"
|
|
638
|
+ style="height: 30px"
|
637
|
639
|
:src="
|
638
|
640
|
setAdminUserES(
|
639
|
641
|
dialysisOrder == null
|
|
@@ -655,7 +657,7 @@
|
655
|
657
|
<span style="height: 30px; display: inline-block" v-if="setAdminUserES(check == null ? 0 : check.modifier) == ''">
|
656
|
658
|
{{ getAdminUser(check == null ? 0 : check.modifier) ? getAdminUser(check == null ? 0 : check.modifier) : "" }}
|
657
|
659
|
</span>
|
658
|
|
- <img :src="setAdminUserES(check == null ? 0 : check.modifier)" alt="" srcset="" style="height:35px" v-else />
|
|
660
|
+ <img :src="setAdminUserES(check == null ? 0 : check.modifier)" alt="" srcset="" style="height:30px" v-else />
|
659
|
661
|
</div>
|
660
|
662
|
</div>
|
661
|
663
|
</div>
|
|
@@ -747,8 +749,8 @@
|
747
|
749
|
</div>
|
748
|
750
|
</div>
|
749
|
751
|
<!-- 透析小结 -->
|
750
|
|
- <div class="row" style="width: 99%;border: 1px solid black;height: 120px;white-space: normal;">
|
751
|
|
- <div style="height: 80px;">
|
|
752
|
+ <div style="width: 99%;border: 1px solid black;height: 120px;white-space: normal;">
|
|
753
|
+ <div style="height: 80px;padding: 5px;">
|
752
|
754
|
治疗小结:
|
753
|
755
|
<span style="white-space: normal;">
|
754
|
756
|
{{ summary.dialysis_summary ? summary.dialysis_summary : "/"}}
|
|
@@ -2284,7 +2286,7 @@ export default {
|
2284
|
2286
|
.row {
|
2285
|
2287
|
font-size: 14px;
|
2286
|
2288
|
line-height: 20px;
|
2287
|
|
- padding: 5px 0;
|
|
2289
|
+ padding: 5px;
|
2288
|
2290
|
}
|
2289
|
2291
|
|
2290
|
2292
|
.inline_block {
|