|
@@ -5,12 +5,10 @@
|
5
|
5
|
<div class="order-title">血液透析治疗记录单</div>
|
6
|
6
|
<table class="print-table" border="1" style="margin-top: 10px;">
|
7
|
7
|
<tbody>
|
8
|
|
- <tr style="text-align:center">
|
9
|
|
- <td colspan="11" style="margin-left:15px">
|
|
8
|
+ <tr>
|
|
9
|
+ <td colspan="2" style="padding-left:5px;border:none;text-align: left;">
|
10
|
10
|
治疗日期:{{ queryParams.xtdate ? queryParams.xtdate : "/" }}
|
11
|
11
|
</td>
|
12
|
|
- </tr>
|
13
|
|
- <tr>
|
14
|
12
|
<td width="120" style="padding-left:5px;border:none;text-align: left;">
|
15
|
13
|
<div>
|
16
|
14
|
姓 名: {{ patientInfo.name ? patientInfo.name : "/" }}
|
|
@@ -35,10 +33,33 @@
|
35
|
33
|
</td>
|
36
|
34
|
<!-- <td width="1"></td> -->
|
37
|
35
|
<td width="50" style="border:none">住院号:</td>
|
38
|
|
- <td width="80" style="border:none;text-align: left;" colspan="2">
|
|
36
|
+ <td width="80" style="border:none;text-align: left;" colspan="3">
|
39
|
37
|
<div>{{ receiverTreatmentAccess.admission_number ? receiverTreatmentAccess.admission_number : "" }}</div>
|
40
|
38
|
</td>
|
41
|
39
|
</tr>
|
|
40
|
+ <tr>
|
|
41
|
+ <td colspan="2" style="padding-left:5px;border-left:none;border-right:none;text-align: left;">
|
|
42
|
+ <div>
|
|
43
|
+ 体 温: {{ predialysis.temperature ? predialysis.temperature : "" }} ℃
|
|
44
|
+ </div>
|
|
45
|
+ </td>
|
|
46
|
+
|
|
47
|
+ <td colspan="2" style="border-left:none;border-right:none;text-align: left;">
|
|
48
|
+ 脉 搏:
|
|
49
|
+ <span>{{ predialysis.pulse_frequency ? predialysis.pulse_frequency : "" }}</span> 次/分
|
|
50
|
+ </td>
|
|
51
|
+ <td colspan="2" style="border-left:none;border-right:none;text-align: left;">
|
|
52
|
+ 呼吸频次:
|
|
53
|
+ <span>{{ predialysis.breathing_rate ? predialysis.breathing_rate : "" }}</span> 次/分
|
|
54
|
+ </td>
|
|
55
|
+ <td colspan="5" style="border-left:none;border-right:none;text-align: left;">
|
|
56
|
+ 血压:
|
|
57
|
+ <span>
|
|
58
|
+ {{ predialysis.systolic_blood_pressure ? predialysis.systolic_blood_pressure : "" }}/
|
|
59
|
+ {{ predialysis.diastolic_blood_pressure ? predialysis.diastolic_blood_pressure : "" }} mmHg
|
|
60
|
+ </span>
|
|
61
|
+ </td>
|
|
62
|
+ </tr>
|
42
|
63
|
<tr style="text-align:left">
|
43
|
64
|
<td colspan="11" style="padding-left:5px">
|
44
|
65
|
上机前病情:{{ predialysis.symptom_before_dialysis ? predialysis.symptom_before_dialysis : "" }}
|
|
@@ -132,7 +153,7 @@
|
132
|
153
|
处方脱水量:
|
133
|
154
|
<span style="width:50px;display: inline-block;">
|
134
|
155
|
{{ prescription.target_ultrafiltration ? prescription.target_ultrafiltration : "" }}
|
135
|
|
- </span>L; 透析液流量:
|
|
156
|
+ </span>ml; 透析液流量:
|
136
|
157
|
<span style="width:50px;display: inline-block;">
|
137
|
158
|
{{ prescription.dialysate_flow ? prescription.dialysate_flow : "" }}
|
138
|
159
|
</span>ml/min;
|
|
@@ -146,7 +167,7 @@
|
146
|
167
|
<span v-if="setAdminUserES(prescription.creater) == ''">
|
147
|
168
|
{{ getAdminUser(prescription.creater) }}
|
148
|
169
|
</span>
|
149
|
|
- <img class="es-img" :src="setAdminUserES(prescription.creater)" alt srcset v-else />
|
|
170
|
+ <img class="es-img" style="height:30px;" :src="setAdminUserES(prescription.creater)" alt srcset v-else />
|
150
|
171
|
</td>
|
151
|
172
|
</tr>
|
152
|
173
|
<tr style="text-align:left">
|
|
@@ -183,7 +204,7 @@
|
183
|
204
|
<span v-if="setAdminUserES(dialysisOrder == null ? 0 : dialysisOrder.puncture_nurse) == ''">
|
184
|
205
|
{{ getAdminUser(dialysisOrder == null ? 0 : dialysisOrder.puncture_nurse) }}
|
185
|
206
|
</span>
|
186
|
|
- <img class="es-img" :src="setAdminUserES(dialysisOrder == null ? 0 : dialysisOrder.puncture_nurse)" alt srcset v-else />
|
|
207
|
+ <img class="es-img" style="height:30px;" :src="setAdminUserES(dialysisOrder == null ? 0 : dialysisOrder.puncture_nurse)" alt srcset v-else />
|
187
|
208
|
</span>
|
188
|
209
|
</td>
|
189
|
210
|
</tr>
|
|
@@ -525,7 +546,7 @@
|
525
|
546
|
</tr>
|
526
|
547
|
</tbody>
|
527
|
548
|
</table>-->
|
528
|
|
- <table class="print-table" border="1">
|
|
549
|
+ <table class="print-table" border="1" style="border-top:none;">
|
529
|
550
|
<tr style="text-align:center">
|
530
|
551
|
<td colspan="14" style="margin-left:15px;font-size:20px">
|
531
|
552
|
治 疗 过 程 记 录
|
|
@@ -533,19 +554,23 @@
|
533
|
554
|
</tr>
|
534
|
555
|
<tr>
|
535
|
556
|
<td style="width:60px" rowspan="2">时间</td>
|
536
|
|
- <td colspan="4">透析参数</td>
|
|
557
|
+ <td colspan="5">透析参数</td>
|
537
|
558
|
<td colspan="4">生命体征</td>
|
538
|
559
|
<td colspan="2">治疗中病情变化</td>
|
539
|
560
|
<td style="width:80px" rowspan="2">护士签名</td>
|
540
|
561
|
</tr>
|
541
|
562
|
<tr>
|
542
|
563
|
<th style="width:70px">
|
543
|
|
- <p style="height:20px;line-height:20px">TMP</p>
|
|
564
|
+ <p style="height:20px;line-height:20px">静脉压</p>
|
544
|
565
|
<p style="height:20px;line-height:20px">mmHg</p>
|
545
|
566
|
</th>
|
546
|
567
|
<th style="width:70px">
|
547
|
|
- <p style="height:20px;line-height:20px">静脉压</p>
|
548
|
|
- <p style="height:20px;line-height:20px">mmHg</p>
|
|
568
|
+ <p style="height:20px;line-height:20px">置换率</p>
|
|
569
|
+ <p style="height:20px;line-height:20px">ml/h</p>
|
|
570
|
+ </th>
|
|
571
|
+ <th style="width:70px">
|
|
572
|
+ <p style="height:20px;line-height:20px">超滤率</p>
|
|
573
|
+ <p style="height:20px;line-height:20px">ml/h</p>
|
549
|
574
|
</th>
|
550
|
575
|
<th style="width:70px">
|
551
|
576
|
<p style="height:20px;line-height:20px">血流量</p>
|
|
@@ -567,7 +592,7 @@
|
567
|
592
|
<p style="height:20px;line-height:20px">R</p>
|
568
|
593
|
<p style="height:20px;line-height:20px">bpm</p>
|
569
|
594
|
</th>
|
570
|
|
- <th style="width:100px">
|
|
595
|
+ <th style="width:80px">
|
571
|
596
|
<p style="height:20px;line-height:20px">BP</p>
|
572
|
597
|
<p style="height:20px;line-height:20px">mmHg</p>
|
573
|
598
|
</th>
|
|
@@ -592,12 +617,17 @@
|
592
|
617
|
</td>
|
593
|
618
|
<td>
|
594
|
619
|
<span v-if="getTime(monitor.operate_time) != ''">
|
595
|
|
- {{ monitor.transmembrane_pressure ? monitor.transmembrane_pressure : "0" }}
|
|
620
|
+ {{ monitor.venous_pressure ? monitor.venous_pressure : "0" }}
|
596
|
621
|
</span>
|
597
|
622
|
</td>
|
598
|
623
|
<td>
|
599
|
624
|
<span v-if="getTime(monitor.operate_time) != ''">
|
600
|
|
- {{ monitor.venous_pressure ? monitor.venous_pressure : "0" }}
|
|
625
|
+ {{monitor.replacement_rate ? monitor.replacement_rate : "0" }}
|
|
626
|
+ </span>
|
|
627
|
+ </td>
|
|
628
|
+ <td>
|
|
629
|
+ <span v-if="getTime(monitor.operate_time) != ''">
|
|
630
|
+ {{ monitor.ultrafiltration_rate ? monitor.ultrafiltration_rate : '0' }}
|
601
|
631
|
</span>
|
602
|
632
|
</td>
|
603
|
633
|
<td>
|
|
@@ -638,7 +668,7 @@
|
638
|
668
|
</td> -->
|
639
|
669
|
<td>
|
640
|
670
|
<span v-if="monitor.symptom || monitor.dispose || monitor.result">
|
641
|
|
- {{ monitor.symptom + "," + monitor.dispose + "," + monitor.result }}
|
|
671
|
+ {{ monitor.symptom }} {{ monitor.dispose }} {{ monitor.result }}
|
642
|
672
|
</span>
|
643
|
673
|
</td>
|
644
|
674
|
<td width="0" style="border:none;visibility: hidden;padding:0"></td>
|
|
@@ -646,7 +676,7 @@
|
646
|
676
|
<span v-if="setAdminUserES(monitor.monitoring_nurse) == ''">
|
647
|
677
|
{{ getAdminUser(monitor.monitoring_nurse) }}
|
648
|
678
|
</span>
|
649
|
|
- <img class="es-img" :src="setAdminUserES(monitor.monitoring_nurse)" alt srcset v-else />
|
|
679
|
+ <img class="es-img" style="height:30px;" :src="setAdminUserES(monitor.monitoring_nurse)" alt srcset v-else />
|
650
|
680
|
</td>
|
651
|
681
|
</tr>
|
652
|
682
|
</table>
|
|
@@ -747,7 +777,7 @@
|
747
|
777
|
</tr>
|
748
|
778
|
</tbody>
|
749
|
779
|
</table>
|
750
|
|
- <table class="print-table" border="1">
|
|
780
|
+ <table class="print-table" border="1" style="border-top:none;">
|
751
|
781
|
<tbody>
|
752
|
782
|
<tr>
|
753
|
783
|
<td width="100" style="padding-left:5px;border:none">透前体重:</td>
|
|
@@ -796,7 +826,7 @@
|
796
|
826
|
</tr>
|
797
|
827
|
</tbody>
|
798
|
828
|
</table>
|
799
|
|
- <table class="print-table" border="1">
|
|
829
|
+ <table class="print-table" border="1" style="border-top:none;">
|
800
|
830
|
<tbody>
|
801
|
831
|
<tr>
|
802
|
832
|
<td width="100" style="padding-left:5px;border:none;border-right:1px solid #000;">
|
|
@@ -834,7 +864,7 @@
|
834
|
864
|
</tr>
|
835
|
865
|
</tbody>
|
836
|
866
|
</table>
|
837
|
|
- <table class="print-table" border="1">
|
|
867
|
+ <table class="print-table" border="1" style="border-top:none;">
|
838
|
868
|
<!-- <td>
|
839
|
869
|
<table class="table-box" style="table-layout:fixed">
|
840
|
870
|
<tr>
|
|
@@ -1042,28 +1072,30 @@
|
1042
|
1072
|
医生签名
|
1043
|
1073
|
<span style="display: inline-block;width:100px;text-align: left;">
|
1044
|
1074
|
|
1045
|
|
- <span v-if="doctorForm.url === ''">{{ doctorForm.doctor }}</span>
|
1046
|
|
- <span v-if="doctorForm.url !== ''">
|
1047
|
|
- <img class="es-img" :src="doctorForm.url" />
|
1048
|
|
- </span>
|
|
1075
|
+ <span v-if="setAdminUserES(prescription==null?0:(prescription.prescription_doctor?prescription.prescription_doctor:'')) == ''"> {{ getAdminUser(prescription==null?0:(prescription.prescription_doctor?prescription.prescription_doctor:'')) }} </span>
|
|
1076
|
+ <img style="height:30px;" :src="setAdminUserES(prescription==null?0:(prescription.prescription_doctor?prescription.prescription_doctor:''))" alt="" srcset="" v-else />
|
1049
|
1077
|
</span>
|
1050
|
|
- 核对护士
|
|
1078
|
+ 护士签名
|
1051
|
1079
|
<span style="display: inline-block;width:100px;text-align: left;">
|
1052
|
1080
|
|
1053
|
|
- <span v-if="setAdminUserES(check == null ? 0 : check.modifier) == ''">
|
1054
|
|
- {{ getAdminUser(check == null ? 0 : check.modifier) }}
|
1055
|
|
- </span>
|
1056
|
|
- <img style="height:20px;" :src="setAdminUserES(check == null ? 0 : check.modifier)" alt srcset v-else />
|
|
1081
|
+ <span v-if="setAdminUserES(dialysisOrder==null?0:dialysisOrder.start_nurse) == ''">{{getAdminUser(dialysisOrder==null?0:dialysisOrder.start_nurse)}}</span>
|
|
1082
|
+ <img class="es-img" style="height:30px" :src="setAdminUserES(dialysisOrder==null?0:dialysisOrder.start_nurse)" alt="" srcset="" v-else>
|
1057
|
1083
|
</span>
|
1058
|
|
- 护士签名
|
|
1084
|
+ 核对护士
|
1059
|
1085
|
<span style="display: inline-block;width:100px;text-align: left;">
|
1060
|
1086
|
|
1061
|
|
- <p v-if="doctor_advices.length > 0">
|
1062
|
|
- <span v-if="setAdminUserES(doctor_advices[0].execution_staff) == ''">
|
1063
|
|
- {{ getAdminUser(doctor_advices[0].execution_staff) }}
|
|
1087
|
+ <span v-if="(dialysisOrder==null?0:dialysisOrder.start_nurse) != check.modifier">
|
|
1088
|
+ <span v-if="setAdminUserES(check == null ? 0 : check.modifier) == ''">
|
|
1089
|
+ {{ getAdminUser(check == null ? 0 : check.modifier) }}
|
1064
|
1090
|
</span>
|
1065
|
|
- <img class="es-img" :src="setAdminUserES(doctor_advices[0].execution_staff)" alt srcset v-else />
|
1066
|
|
- </p>
|
|
1091
|
+ <img style="height:30px;" :src="setAdminUserES(check == null ? 0 : check.modifier)" alt srcset v-else />
|
|
1092
|
+ </span>
|
|
1093
|
+ <span v-else>
|
|
1094
|
+ <span v-if="setAdminUserES(check == null ? 0 : check.creater) == ''">
|
|
1095
|
+ {{ getAdminUser(check == null ? 0 : check.creater) }}
|
|
1096
|
+ </span>
|
|
1097
|
+ <img style="height:30px;" :src="setAdminUserES(check == null ? 0 : check.creater)" alt srcset v-else />
|
|
1098
|
+ </span>
|
1067
|
1099
|
</span>
|
1068
|
1100
|
</td>
|
1069
|
1101
|
</tr>
|