|
@@ -6,14 +6,18 @@
|
6
|
6
|
<table class="print-table" border="1" style="margin-top: 10px;">
|
7
|
7
|
<tbody>
|
8
|
8
|
<tr style="text-align:center">
|
9
|
|
- <td
|
10
|
|
- colspan="11"
|
11
|
|
- style="margin-left:15px"
|
12
|
|
- >治疗日期:{{ queryParams.xtdate ? queryParams.xtdate : "/" }}</td>
|
|
9
|
+ <td colspan="11" style="margin-left:15px">
|
|
10
|
+ 治疗日期:{{ queryParams.xtdate ? queryParams.xtdate : "/" }}
|
|
11
|
+ </td>
|
13
|
12
|
</tr>
|
14
|
13
|
<tr>
|
15
|
|
- <td width="120" style="padding-left:5px;border:none;text-align: left;">
|
16
|
|
- <div>姓 名: {{ patientInfo.name ? patientInfo.name : "/" }}</div>
|
|
14
|
+ <td
|
|
15
|
+ width="120"
|
|
16
|
+ style="padding-left:5px;border:none;text-align: left;"
|
|
17
|
+ >
|
|
18
|
+ <div>
|
|
19
|
+ 姓 名: {{ patientInfo.name ? patientInfo.name : "/" }}
|
|
20
|
+ </div>
|
17
|
21
|
</td>
|
18
|
22
|
|
19
|
23
|
<td width="120" style="border:none;text-align: left;">
|
|
@@ -28,7 +32,7 @@
|
28
|
32
|
<td width="80" style="border:none;text-align: left;">
|
29
|
33
|
<span>
|
30
|
34
|
{{
|
31
|
|
- patientInfo.height ? patientInfo.height : ""
|
|
35
|
+ patientInfo.height ? patientInfo.height : ""
|
32
|
36
|
}}
|
33
|
37
|
</span>
|
34
|
38
|
cm
|
|
@@ -55,11 +59,11 @@
|
55
|
59
|
<td width="80" style="border:none;text-align: left;">
|
56
|
60
|
<div>
|
57
|
61
|
{{
|
58
|
|
- dialysisOrder &&
|
59
|
|
- dialysisOrder.DeviceNumber &&
|
60
|
|
- dialysisOrder.DeviceNumber.number.length > 0
|
61
|
|
- ? dialysisOrder.DeviceNumber.number
|
62
|
|
- : patientInfo.DialysisSchedule.device_number.number
|
|
62
|
+ dialysisOrder &&
|
|
63
|
+ dialysisOrder.DeviceNumber &&
|
|
64
|
+ dialysisOrder.DeviceNumber.number.length > 0
|
|
65
|
+ ? dialysisOrder.DeviceNumber.number
|
|
66
|
+ : patientInfo.DialysisSchedule.device_number.number
|
63
|
67
|
}}
|
64
|
68
|
</div>
|
65
|
69
|
</td>
|
|
@@ -72,17 +76,25 @@
|
72
|
76
|
<tr style="text-align:left">
|
73
|
77
|
<td colspan="11" style="padding-left:5px">
|
74
|
78
|
上机前病情:{{
|
75
|
|
- predialysis.symptom_before_dialysis
|
76
|
|
- ? predialysis.symptom_before_dialysis
|
77
|
|
- : ""
|
|
79
|
+ predialysis.symptom_before_dialysis
|
|
80
|
+ ? predialysis.symptom_before_dialysis
|
|
81
|
+ : ""
|
78
|
82
|
}}
|
79
|
83
|
</td>
|
80
|
84
|
</tr>
|
81
|
85
|
<tr style="text-align:left">
|
82
|
86
|
<td colspan="8" style="padding-left:5px">
|
83
|
87
|
治疗方式:
|
84
|
|
- <label-box :isChecked="prescription.mode_id == 1 ? true : false" showValue="HD"></label-box>
|
85
|
|
- <label-box :isChecked="prescription.mode_id == 2 ? true : false" showValue="HDF"></label-box> (
|
|
88
|
+ <label-box
|
|
89
|
+ :isChecked="prescription.mode_id == 1 ? true : false"
|
|
90
|
+ showValue="HD"
|
|
91
|
+ ></label-box
|
|
92
|
+ >
|
|
93
|
+ <label-box
|
|
94
|
+ :isChecked="prescription.mode_id == 2 ? true : false"
|
|
95
|
+ showValue="HDF"
|
|
96
|
+ ></label-box
|
|
97
|
+ > (
|
86
|
98
|
<label-box
|
87
|
99
|
:isChecked="
|
88
|
100
|
prescription.displace_liqui_part == 1 ? true : false
|
|
@@ -99,43 +111,66 @@
|
99
|
111
|
,置换量
|
100
|
112
|
<span style="width:50px;display: inline-block;">
|
101
|
113
|
{{
|
102
|
|
- prescription.displace_liqui_value
|
103
|
|
- ? prescription.displace_liqui_value
|
104
|
|
- : "/"
|
|
114
|
+ prescription.displace_liqui_value
|
|
115
|
+ ? prescription.displace_liqui_value
|
|
116
|
+ : "/"
|
105
|
117
|
}}
|
106
|
118
|
</span>
|
107
|
119
|
L
|
108
|
120
|
</span>
|
109
|
121
|
)
|
110
|
|
- <label-box :isChecked="prescription.mode_id > 2 ? true : false" showValue="其他:"></label-box>
|
111
|
|
- <span v-if="prescription.mode_id == 3">{{ prescription.mode_id == 3 ? "HD+HP" : "" }}</span>
|
112
|
|
- <span v-if="prescription.mode_id == 4">{{ prescription.mode_id == 4 ? "HP" : "" }}</span>
|
113
|
|
- <span v-if="prescription.mode_id == 5">{{ prescription.mode_id == 5 ? "HF" : "" }}</span>
|
114
|
|
- <span v-if="prescription.mode_id == 6">{{ prescription.mode_id == 6 ? "SCUF" : "" }}</span>
|
115
|
|
- <span v-if="prescription.mode_id == 7">{{ prescription.mode_id == 7 ? "IUF" : "" }}</span>
|
116
|
|
- <span v-if="prescription.mode_id == 8">{{ prescription.mode_id == 8 ? "HFHD" : "" }}</span>
|
117
|
|
- <span
|
118
|
|
- v-if="prescription.mode_id == 9"
|
119
|
|
- >{{ prescription.mode_id == 9 ? "HFHD+HP" : "" }}</span>
|
120
|
|
- <span v-if="prescription.mode_id == 10">{{ prescription.mode_id == 10 ? "PHF" : "" }}</span>
|
121
|
|
- <span v-if="prescription.mode_id == 11">{{ prescription.mode_id == 11 ? "HFR" : "" }}</span>
|
122
|
|
- <span
|
123
|
|
- v-if="prescription.mode_id == 12"
|
124
|
|
- >{{ prescription.mode_id == 12 ? "HDF+HP" : "" }}</span>
|
125
|
|
- <span v-if="prescription.mode_id == 13">{{ prescription.mode_id == 13 ? "CRRT" : "" }}</span>
|
126
|
|
- <span v-if="prescription.mode_id == 14">{{ prescription.mode_id == 14 ? "腹水回输" : "" }}</span>
|
|
122
|
+ <label-box
|
|
123
|
+ :isChecked="prescription.mode_id > 2 ? true : false"
|
|
124
|
+ showValue="其他:"
|
|
125
|
+ ></label-box>
|
|
126
|
+ <span v-if="prescription.mode_id == 3">{{
|
|
127
|
+ prescription.mode_id == 3 ? "HD+HP" : ""
|
|
128
|
+ }}</span>
|
|
129
|
+ <span v-if="prescription.mode_id == 4">{{
|
|
130
|
+ prescription.mode_id == 4 ? "HP" : ""
|
|
131
|
+ }}</span>
|
|
132
|
+ <span v-if="prescription.mode_id == 5">{{
|
|
133
|
+ prescription.mode_id == 5 ? "HF" : ""
|
|
134
|
+ }}</span>
|
|
135
|
+ <span v-if="prescription.mode_id == 6">{{
|
|
136
|
+ prescription.mode_id == 6 ? "SCUF" : ""
|
|
137
|
+ }}</span>
|
|
138
|
+ <span v-if="prescription.mode_id == 7">{{
|
|
139
|
+ prescription.mode_id == 7 ? "IUF" : ""
|
|
140
|
+ }}</span>
|
|
141
|
+ <span v-if="prescription.mode_id == 8">{{
|
|
142
|
+ prescription.mode_id == 8 ? "HFHD" : ""
|
|
143
|
+ }}</span>
|
|
144
|
+ <span v-if="prescription.mode_id == 9">{{
|
|
145
|
+ prescription.mode_id == 9 ? "HFHD+HP" : ""
|
|
146
|
+ }}</span>
|
|
147
|
+ <span v-if="prescription.mode_id == 10">{{
|
|
148
|
+ prescription.mode_id == 10 ? "PHF" : ""
|
|
149
|
+ }}</span>
|
|
150
|
+ <span v-if="prescription.mode_id == 11">{{
|
|
151
|
+ prescription.mode_id == 11 ? "HFR" : ""
|
|
152
|
+ }}</span>
|
|
153
|
+ <span v-if="prescription.mode_id == 12">{{
|
|
154
|
+ prescription.mode_id == 12 ? "HDF+HP" : ""
|
|
155
|
+ }}</span>
|
|
156
|
+ <span v-if="prescription.mode_id == 13">{{
|
|
157
|
+ prescription.mode_id == 13 ? "CRRT" : ""
|
|
158
|
+ }}</span>
|
|
159
|
+ <span v-if="prescription.mode_id == 14">{{
|
|
160
|
+ prescription.mode_id == 14 ? "腹水回输" : ""
|
|
161
|
+ }}</span>
|
127
|
162
|
</td>
|
128
|
163
|
<td colspan="3" style="border-left:1px solid #000;padding-left:5px">
|
129
|
164
|
治疗时间:
|
130
|
165
|
<span>
|
131
|
166
|
{{
|
132
|
|
- prescription.dialysis_duration_hour
|
133
|
|
- ? prescription.dialysis_duration_hour
|
134
|
|
- : "0"
|
|
167
|
+ prescription.dialysis_duration_hour
|
|
168
|
+ ? prescription.dialysis_duration_hour
|
|
169
|
+ : "0"
|
135
|
170
|
}}小时{{
|
136
|
|
- prescription.dialysis_duration_minute
|
137
|
|
- ? prescription.dialysis_duration_minute
|
138
|
|
- : "0"
|
|
171
|
+ prescription.dialysis_duration_minute
|
|
172
|
+ ? prescription.dialysis_duration_minute
|
|
173
|
+ : "0"
|
139
|
174
|
}}分钟
|
140
|
175
|
</span>
|
141
|
176
|
</td>
|
|
@@ -155,27 +190,28 @@
|
155
|
190
|
></label-box>
|
156
|
191
|
<span style="width:50px;display: inline-block;">
|
157
|
192
|
{{
|
158
|
|
- prescription.anticoagulant_zongliang &&
|
159
|
|
- (prescription.anticoagulant == "低分子肝素钙" ||
|
160
|
|
- prescription.anticoagulant == "低分子肝素钠")
|
161
|
|
- ? prescription.anticoagulant_zongliang
|
162
|
|
- : ""
|
163
|
|
- }}
|
164
|
|
- </span>iu
|
|
193
|
+ prescription.anticoagulant_zongliang &&
|
|
194
|
+ (prescription.anticoagulant == "低分子肝素钙" ||
|
|
195
|
+ prescription.anticoagulant == "低分子肝素钠")
|
|
196
|
+ ? prescription.anticoagulant_zongliang
|
|
197
|
+ : ""
|
|
198
|
+ }} </span
|
|
199
|
+ >iu
|
165
|
200
|
<label-box
|
166
|
201
|
:isChecked="
|
167
|
202
|
prescription.anticoagulant == '普通肝素' ? true : false
|
168
|
203
|
"
|
169
|
204
|
showValue="普通肝素:"
|
170
|
|
- ></label-box>首剂:
|
|
205
|
+ ></label-box
|
|
206
|
+ >首剂:
|
171
|
207
|
<span style="width:35px;display: inline-block;">
|
172
|
208
|
{{
|
173
|
|
- prescription.anticoagulant_shouji &&
|
174
|
|
- (prescription.anticoagulant != "低分子肝素钙" &&
|
175
|
|
- prescription.anticoagulant != "低分子肝素钠") &&
|
176
|
|
- prescription.anticoagulant == "普通肝素"
|
177
|
|
- ? prescription.anticoagulant_shouji
|
178
|
|
- : ""
|
|
209
|
+ prescription.anticoagulant_shouji &&
|
|
210
|
+ (prescription.anticoagulant != "低分子肝素钙" &&
|
|
211
|
+ prescription.anticoagulant != "低分子肝素钠") &&
|
|
212
|
+ prescription.anticoagulant == "普通肝素"
|
|
213
|
+ ? prescription.anticoagulant_shouji
|
|
214
|
+ : ""
|
179
|
215
|
}}
|
180
|
216
|
</span>
|
181
|
217
|
<span v-if="prescription.anticoagulant == '枸橼酸钠'">mg</span>
|
|
@@ -183,30 +219,39 @@
|
183
|
219
|
<span v-if="prescription.anticoagulant == '低分子肝素'">iu</span>
|
184
|
220
|
<span v-if="prescription.anticoagulant == '普通肝素'">iu</span>
|
185
|
221
|
<span v-if="prescription.anticoagulant == '无肝素'">mg</span>
|
186
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钙'">iu</span>
|
187
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钠'">iu</span> 追加:
|
|
222
|
+ <span v-if="prescription.anticoagulant == '低分子肝素钙'"
|
|
223
|
+ >iu</span
|
|
224
|
+ >
|
|
225
|
+ <span v-if="prescription.anticoagulant == '低分子肝素钠'">iu</span
|
|
226
|
+ > 追加:
|
188
|
227
|
<span style="width:35px;display: inline-block;">
|
189
|
228
|
{{
|
190
|
|
- prescription.anticoagulant_weichi &&
|
191
|
|
- prescription.anticoagulant == "普通肝素"
|
192
|
|
- ? prescription.anticoagulant_weichi
|
193
|
|
- : ""
|
|
229
|
+ prescription.anticoagulant_weichi &&
|
|
230
|
+ prescription.anticoagulant == "普通肝素"
|
|
231
|
+ ? prescription.anticoagulant_weichi
|
|
232
|
+ : ""
|
194
|
233
|
}}
|
195
|
234
|
</span>
|
196
|
235
|
<span v-if="prescription.anticoagulant == '枸橼酸钠'">ml/h</span>
|
197
|
236
|
<span v-if="prescription.anticoagulant == '阿加曲班'">mg/h</span>
|
198
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素'">iu/h</span>
|
|
237
|
+ <span v-if="prescription.anticoagulant == '低分子肝素'"
|
|
238
|
+ >iu/h</span
|
|
239
|
+ >
|
199
|
240
|
<span v-if="prescription.anticoagulant == '普通肝素'">iu/h</span>
|
200
|
241
|
<span v-if="prescription.anticoagulant == '无肝素'">mg/h</span>
|
201
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钙'">iu/h</span>
|
202
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钠'">iu/h</span>
|
|
242
|
+ <span v-if="prescription.anticoagulant == '低分子肝素钙'"
|
|
243
|
+ >iu/h</span
|
|
244
|
+ >
|
|
245
|
+ <span v-if="prescription.anticoagulant == '低分子肝素钠'"
|
|
246
|
+ >iu/h</span
|
|
247
|
+ >
|
203
|
248
|
总量:
|
204
|
249
|
<span style="width:50px;display: inline-block;">
|
205
|
250
|
{{
|
206
|
|
- prescription.anticoagulant_zongliang &&
|
207
|
|
- prescription.anticoagulant == "普通肝素"
|
208
|
|
- ? prescription.anticoagulant_zongliang
|
209
|
|
- : ""
|
|
251
|
+ prescription.anticoagulant_zongliang &&
|
|
252
|
+ prescription.anticoagulant == "普通肝素"
|
|
253
|
+ ? prescription.anticoagulant_zongliang
|
|
254
|
+ : ""
|
210
|
255
|
}}
|
211
|
256
|
</span>
|
212
|
257
|
<span v-if="prescription.anticoagulant == '枸橼酸钠'">mg</span>
|
|
@@ -214,8 +259,12 @@
|
214
|
259
|
<span v-if="prescription.anticoagulant == '低分子肝素'">iu</span>
|
215
|
260
|
<span v-if="prescription.anticoagulant == '普通肝素'">iu</span>
|
216
|
261
|
<span v-if="prescription.anticoagulant == '无肝素'">mg</span>
|
217
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钙'">iu</span>
|
218
|
|
- <span v-if="prescription.anticoagulant == '低分子肝素钠'">iu</span>
|
|
262
|
+ <span v-if="prescription.anticoagulant == '低分子肝素钙'"
|
|
263
|
+ >iu</span
|
|
264
|
+ >
|
|
265
|
+ <span v-if="prescription.anticoagulant == '低分子肝素钠'"
|
|
266
|
+ >iu</span
|
|
267
|
+ >
|
219
|
268
|
|
220
|
269
|
<label-box
|
221
|
270
|
:isChecked="
|
|
@@ -236,55 +285,67 @@
|
236
|
285
|
处方脱水量:
|
237
|
286
|
<span style="width:50px;display: inline-block;">
|
238
|
287
|
{{
|
239
|
|
- prescription.target_ultrafiltration
|
240
|
|
- ? prescription.target_ultrafiltration
|
241
|
|
- : ""
|
242
|
|
- }}
|
243
|
|
- </span>L; 透析液流量:
|
|
288
|
+ prescription.target_ultrafiltration
|
|
289
|
+ ? prescription.target_ultrafiltration
|
|
290
|
+ : ""
|
|
291
|
+ }} </span
|
|
292
|
+ >L; 透析液流量:
|
244
|
293
|
<span style="width:50px;display: inline-block;">
|
245
|
294
|
{{
|
246
|
|
- prescription.dialysate_flow ? prescription.dialysate_flow : ""
|
247
|
|
- }}
|
248
|
|
- </span>ml/min;
|
|
295
|
+ prescription.dialysate_flow ? prescription.dialysate_flow : ""
|
|
296
|
+ }} </span
|
|
297
|
+ >ml/min;
|
249
|
298
|
</td>
|
250
|
|
- <td colspan="4" style="padding-left:5px;border-left:1px solid #000;padding-left:5px">
|
|
299
|
+ <td
|
|
300
|
+ colspan="4"
|
|
301
|
+ style="padding-left:5px;border-left:1px solid #000;padding-left:5px"
|
|
302
|
+ >
|
251
|
303
|
医师签名:
|
252
|
304
|
<span v-if="setAdminUserES(prescription.creater) == ''">
|
253
|
|
- {{
|
254
|
|
- getAdminUser(prescription.creater)
|
255
|
|
- }}
|
|
305
|
+ {{ getAdminUser(prescription.creater) }}
|
256
|
306
|
</span>
|
257
|
|
- <img class="es-img" :src="setAdminUserES(prescription.creater)" alt srcset v-else />
|
|
307
|
+ <img
|
|
308
|
+ class="es-img"
|
|
309
|
+ :src="setAdminUserES(prescription.creater)"
|
|
310
|
+ alt
|
|
311
|
+ srcset
|
|
312
|
+ v-else
|
|
313
|
+ />
|
258
|
314
|
</td>
|
259
|
315
|
</tr>
|
260
|
316
|
<tr style="text-align:left">
|
261
|
317
|
<td colspan="2" style="padding-left:5px">
|
262
|
318
|
透析机:{{
|
263
|
|
- predialysis.machine_type ? predialysis.machine_type : ""
|
|
319
|
+ predialysis.machine_type ? predialysis.machine_type : ""
|
264
|
320
|
}}
|
265
|
321
|
</td>
|
266
|
|
- <td colspan="2" style="padding-left:5px;border-left:1px solid #000;">
|
|
322
|
+ <td
|
|
323
|
+ colspan="2"
|
|
324
|
+ style="padding-left:5px;border-left:1px solid #000;"
|
|
325
|
+ >
|
267
|
326
|
透析(滤)器:{{
|
268
|
|
- prescription.dialyzer_perfusion_apparatus
|
269
|
|
- ? prescription.dialyzer_perfusion_apparatus
|
270
|
|
- : ""
|
|
327
|
+ prescription.dialyzer_perfusion_apparatus
|
|
328
|
+ ? prescription.dialyzer_perfusion_apparatus
|
|
329
|
+ : ""
|
271
|
330
|
}}
|
272
|
331
|
</td>
|
273
|
|
- <td colspan="7" style="padding-left:5px;border-left:1px solid #000;">
|
|
332
|
+ <td
|
|
333
|
+ colspan="7"
|
|
334
|
+ style="padding-left:5px;border-left:1px solid #000;"
|
|
335
|
+ >
|
274
|
336
|
透析液:钾:
|
275
|
337
|
<span style="width:40px;display: inline-block;">
|
276
|
|
- {{
|
277
|
|
- prescription.kalium
|
278
|
|
- }}
|
279
|
|
- </span>mmol/L 钙:
|
280
|
|
- <span
|
281
|
|
- style="width:40px;display: inline-block;"
|
282
|
|
- >{{ prescription.calcium }}</span>mmol/L 碳酸氢根:
|
|
338
|
+ {{ prescription.kalium }} </span
|
|
339
|
+ >mmol/L 钙:
|
|
340
|
+ <span style="width:40px;display: inline-block;">{{
|
|
341
|
+ prescription.calcium
|
|
342
|
+ }}</span
|
|
343
|
+ >mmol/L 碳酸氢根:
|
283
|
344
|
<span style="width:40px;display: inline-block;">
|
284
|
345
|
{{
|
285
|
|
- prescription.bicarbonate ? prescription.bicarbonate : ""
|
286
|
|
- }}
|
287
|
|
- </span>mmol/L
|
|
346
|
+ prescription.bicarbonate ? prescription.bicarbonate : ""
|
|
347
|
+ }} </span
|
|
348
|
+ >mmol/L
|
288
|
349
|
</td>
|
289
|
350
|
</tr>
|
290
|
351
|
<tr style="text-align:left">
|
|
@@ -297,7 +358,8 @@
|
297
|
358
|
: false
|
298
|
359
|
"
|
299
|
360
|
showValue="内瘘"
|
300
|
|
- ></label-box>
|
|
361
|
+ ></label-box
|
|
362
|
+ >
|
301
|
363
|
<label-box
|
302
|
364
|
:isChecked="
|
303
|
365
|
predialysis.blood_access_part_opera_name.indexOf(
|
|
@@ -307,7 +369,8 @@
|
307
|
369
|
: false
|
308
|
370
|
"
|
309
|
371
|
showValue="长期静脉导管"
|
310
|
|
- ></label-box>
|
|
372
|
+ ></label-box
|
|
373
|
+ >
|
311
|
374
|
<label-box
|
312
|
375
|
:isChecked="
|
313
|
376
|
predialysis.blood_access_part_opera_name.indexOf('颈内静脉') >
|
|
@@ -316,7 +379,8 @@
|
316
|
379
|
: false
|
317
|
380
|
"
|
318
|
381
|
showValue="临时颈内静脉导管"
|
319
|
|
- ></label-box>
|
|
382
|
+ ></label-box
|
|
383
|
+ >
|
320
|
384
|
<label-box
|
321
|
385
|
:isChecked="
|
322
|
386
|
predialysis.blood_access_part_opera_name.indexOf('股静脉') >
|
|
@@ -325,7 +389,8 @@
|
325
|
389
|
: false
|
326
|
390
|
"
|
327
|
391
|
showValue="临时股静脉导管"
|
328
|
|
- ></label-box>
|
|
392
|
+ ></label-box
|
|
393
|
+ >
|
329
|
394
|
<label-box
|
330
|
395
|
:isChecked="
|
331
|
396
|
predialysis.blood_access_part_opera_name.indexOf('人造血管') >
|
|
@@ -338,7 +403,8 @@
|
338
|
403
|
: false
|
339
|
404
|
"
|
340
|
405
|
showValue="其他"
|
341
|
|
- ></label-box>
|
|
406
|
+ ></label-box
|
|
407
|
+ >
|
342
|
408
|
<span style="width:50px;display: inline-block;"></span>
|
343
|
409
|
穿刺者:
|
344
|
410
|
<span style="width:50px;display: inline-block;">
|
|
@@ -350,9 +416,9 @@
|
350
|
416
|
"
|
351
|
417
|
>
|
352
|
418
|
{{
|
353
|
|
- getAdminUser(
|
354
|
|
- dialysisOrder == null ? 0 : dialysisOrder.puncture_nurse
|
355
|
|
- )
|
|
419
|
+ getAdminUser(
|
|
420
|
+ dialysisOrder == null ? 0 : dialysisOrder.puncture_nurse
|
|
421
|
+ )
|
356
|
422
|
}}
|
357
|
423
|
</span>
|
358
|
424
|
<img
|
|
@@ -709,7 +775,9 @@
|
709
|
775
|
</table>-->
|
710
|
776
|
<table class="print-table" border="1">
|
711
|
777
|
<tr style="text-align:center">
|
712
|
|
- <td colspan="14" style="margin-left:15px;font-size:20px">治 疗 过 程 记 录</td>
|
|
778
|
+ <td colspan="14" style="margin-left:15px;font-size:20px">
|
|
779
|
+ 治 疗 过 程 记 录
|
|
780
|
+ </td>
|
713
|
781
|
</tr>
|
714
|
782
|
<tr>
|
715
|
783
|
<td style="width:60px" rowspan="2">时间</td>
|
|
@@ -759,103 +827,103 @@
|
759
|
827
|
<p style="height:20px;line-height:20px">%</p>
|
760
|
828
|
</th>
|
761
|
829
|
<th style="width:333px">
|
762
|
|
- <p style="height:20px;line-height:20px">记 录</p>
|
|
830
|
+ <p style="height:20px;line-height:20px">
|
|
831
|
+ 记 录
|
|
832
|
+ </p>
|
763
|
833
|
</th>
|
764
|
834
|
<!-- <td style="width:80px">护士签名</td> -->
|
765
|
835
|
</tr>
|
766
|
836
|
|
767
|
837
|
<tr v-for="(monitor, monindex) in monitors" :key="monindex">
|
768
|
|
- <td style="min-width:60px;height:30px">{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
|
|
838
|
+ <td style="min-width:60px;height:30px">
|
|
839
|
+ {{ getTime(monitor.operate_time, "{h}:{i}") }}
|
|
840
|
+ </td>
|
769
|
841
|
<td>
|
770
|
842
|
<span v-if="getTime(monitor.operate_time) != ''">
|
771
|
843
|
{{
|
772
|
|
- monitor.transmembrane_pressure
|
773
|
|
- ? monitor.transmembrane_pressure
|
774
|
|
- : "0"
|
|
844
|
+ monitor.transmembrane_pressure
|
|
845
|
+ ? monitor.transmembrane_pressure
|
|
846
|
+ : "0"
|
775
|
847
|
}}
|
776
|
848
|
</span>
|
777
|
849
|
</td>
|
778
|
850
|
<td>
|
779
|
851
|
<span v-if="getTime(monitor.operate_time) != ''">
|
780
|
|
- {{
|
781
|
|
- monitor.venous_pressure ? monitor.venous_pressure : "0"
|
782
|
|
- }}
|
|
852
|
+ {{ monitor.venous_pressure ? monitor.venous_pressure : "0" }}
|
783
|
853
|
</span>
|
784
|
854
|
</td>
|
785
|
855
|
<td>
|
786
|
856
|
<span v-if="getTime(monitor.operate_time) != ''">
|
787
|
|
- {{
|
788
|
|
- monitor.blood_flow_volume ? monitor.blood_flow_volume : "0"
|
789
|
|
- }}
|
|
857
|
+ {{ monitor.blood_flow_volume ? monitor.blood_flow_volume : "0" }}
|
790
|
858
|
</span>
|
791
|
859
|
</td>
|
792
|
860
|
<td>
|
793
|
861
|
<span v-if="getTime(monitor.operate_time) != ''">
|
794
|
862
|
{{
|
795
|
|
- monitor.ultrafiltration_volume
|
796
|
|
- ? monitor.ultrafiltration_volume * 1000
|
797
|
|
- : "0"
|
|
863
|
+ monitor.ultrafiltration_volume
|
|
864
|
+ ? monitor.ultrafiltration_volume
|
|
865
|
+ : "0"
|
798
|
866
|
}}
|
799
|
867
|
</span>
|
800
|
868
|
</td>
|
801
|
869
|
<td>
|
802
|
|
- <span
|
803
|
|
- v-if="getTime(monitor.operate_time) != ''"
|
804
|
|
- >{{ monitor.temperature ? monitor.temperature : "0" }}</span>
|
|
870
|
+ <span v-if="getTime(monitor.operate_time) != ''">{{
|
|
871
|
+ monitor.temperature ? monitor.temperature : "0"
|
|
872
|
+ }}</span>
|
805
|
873
|
</td>
|
806
|
874
|
<td>
|
807
|
875
|
<span v-if="getTime(monitor.operate_time) != ''">
|
808
|
|
- {{
|
809
|
|
- monitor.pulse_frequency ? monitor.pulse_frequency : "0"
|
810
|
|
- }}
|
|
876
|
+ {{ monitor.pulse_frequency ? monitor.pulse_frequency : "0" }}
|
811
|
877
|
</span>
|
812
|
878
|
</td>
|
813
|
879
|
<td>
|
814
|
880
|
<span v-if="getTime(monitor.operate_time) != ''">
|
815
|
|
- {{
|
816
|
|
- monitor.breathing_rate ? monitor.breathing_rate : "0"
|
817
|
|
- }}
|
|
881
|
+ {{ monitor.breathing_rate ? monitor.breathing_rate : "0" }}
|
818
|
882
|
</span>
|
819
|
883
|
</td>
|
820
|
884
|
<td>
|
821
|
885
|
<span v-if="getTime(monitor.operate_time) != ''">
|
822
|
886
|
{{
|
823
|
|
- monitor.systolic_blood_pressure
|
824
|
|
- ? monitor.systolic_blood_pressure
|
825
|
|
- : ""
|
|
887
|
+ monitor.systolic_blood_pressure
|
|
888
|
+ ? monitor.systolic_blood_pressure
|
|
889
|
+ : ""
|
826
|
890
|
}}
|
827
|
891
|
/
|
828
|
892
|
{{
|
829
|
|
- monitor.diastolic_blood_pressure
|
830
|
|
- ? monitor.diastolic_blood_pressure
|
831
|
|
- : ""
|
|
893
|
+ monitor.diastolic_blood_pressure
|
|
894
|
+ ? monitor.diastolic_blood_pressure
|
|
895
|
+ : ""
|
832
|
896
|
}}
|
833
|
897
|
</span>
|
834
|
898
|
</td>
|
835
|
899
|
<td>
|
836
|
900
|
<span v-if="getTime(monitor.operate_time) != ''">
|
837
|
901
|
{{
|
838
|
|
- monitor.blood_oxygen_saturation
|
839
|
|
- ? monitor.blood_oxygen_saturation
|
840
|
|
- : "0"
|
|
902
|
+ monitor.blood_oxygen_saturation
|
|
903
|
+ ? monitor.blood_oxygen_saturation
|
|
904
|
+ : "0"
|
841
|
905
|
}}
|
842
|
906
|
</span>
|
843
|
907
|
</td>
|
844
|
908
|
<td>
|
845
|
909
|
<span v-if="monitor.symptom || monitor.dispose || monitor.result">
|
846
|
910
|
{{
|
847
|
|
- monitor.symptom + "," + monitor.dispose + "," + monitor.result
|
|
911
|
+ monitor.symptom + "," + monitor.dispose + "," + monitor.result
|
848
|
912
|
}}
|
849
|
913
|
</span>
|
850
|
914
|
</td>
|
851
|
915
|
<td width="0" style="border:none;visibility: hidden;padding:0"></td>
|
852
|
916
|
<td>
|
853
|
917
|
<span v-if="setAdminUserES(monitor.monitoring_nurse) == ''">
|
854
|
|
- {{
|
855
|
|
- getAdminUser(monitor.monitoring_nurse)
|
856
|
|
- }}
|
|
918
|
+ {{ getAdminUser(monitor.monitoring_nurse) }}
|
857
|
919
|
</span>
|
858
|
|
- <img class="es-img" :src="setAdminUserES(monitor.monitoring_nurse)" alt srcset v-else />
|
|
920
|
+ <img
|
|
921
|
+ class="es-img"
|
|
922
|
+ :src="setAdminUserES(monitor.monitoring_nurse)"
|
|
923
|
+ alt
|
|
924
|
+ srcset
|
|
925
|
+ v-else
|
|
926
|
+ />
|
859
|
927
|
</td>
|
860
|
928
|
</tr>
|
861
|
929
|
</table>
|
|
@@ -889,32 +957,26 @@
|
889
|
957
|
<td colspan="5" style="height:30px;">
|
890
|
958
|
<span v-if="advice.parent_id > 0">---></span>
|
891
|
959
|
<span>{{ advice.advice_name }}</span>
|
892
|
|
- <span
|
893
|
|
- v-if="advice && advice.advice_desc"
|
894
|
|
- >({{ advice.advice_desc }}{{ advice.drug_spec_unit }})</span>
|
|
960
|
+ <span v-if="advice && advice.advice_desc"
|
|
961
|
+ >({{ advice.advice_desc }}{{ advice.drug_spec_unit }})</span
|
|
962
|
+ >
|
895
|
963
|
<span v-if="advice.prescribing_number">
|
896
|
964
|
{{ advice.prescribing_number
|
897
|
965
|
}}{{ advice.prescribing_number_unit }}
|
898
|
966
|
</span>
|
899
|
|
- <span
|
900
|
|
- v-if="advice.single_dose != 0"
|
901
|
|
- >{{ advice.single_dose }}{{ advice.single_dose_unit }}</span>
|
|
967
|
+ <span v-if="advice.single_dose != 0"
|
|
968
|
+ >{{ advice.single_dose }}{{ advice.single_dose_unit }}</span
|
|
969
|
+ >
|
902
|
970
|
<span v-if="advice.parent_id == 0">
|
903
|
|
- {{
|
904
|
|
- advice.delivery_way
|
905
|
|
- }}
|
|
971
|
+ {{ advice.delivery_way }}
|
906
|
972
|
</span>
|
907
|
973
|
<span v-if="advice.parent_id == 0">
|
908
|
|
- {{
|
909
|
|
- advice.execution_frequency
|
910
|
|
- }}
|
|
974
|
+ {{ advice.execution_frequency }}
|
911
|
975
|
</span>
|
912
|
976
|
</td>
|
913
|
977
|
<td colspan="2">
|
914
|
978
|
<span v-if="setAdminUserES(advice.advice_doctor) == ''">
|
915
|
|
- {{
|
916
|
|
- getAdminUser(advice.advice_doctor)
|
917
|
|
- }}
|
|
979
|
+ {{ getAdminUser(advice.advice_doctor) }}
|
918
|
980
|
</span>
|
919
|
981
|
<img
|
920
|
982
|
style="height:30px;"
|
|
@@ -926,9 +988,7 @@
|
926
|
988
|
</td>
|
927
|
989
|
<td colspan="2" style="height:40px">
|
928
|
990
|
<span v-if="setAdminUserES(advice.execution_staff) == ''">
|
929
|
|
- {{
|
930
|
|
- getAdminUser(advice.execution_staff)
|
931
|
|
- }}
|
|
991
|
+ {{ getAdminUser(advice.execution_staff) }}
|
932
|
992
|
</span>
|
933
|
993
|
<img
|
934
|
994
|
style="height:30px;"
|
|
@@ -938,10 +998,9 @@
|
938
|
998
|
v-else
|
939
|
999
|
/>
|
940
|
1000
|
</td>
|
941
|
|
- <td
|
942
|
|
- colspan="3"
|
943
|
|
- style="width:130px;"
|
944
|
|
- >{{ getTime(advice.execution_time, "{y}-{m}-{d} {h}:{i}") }}</td>
|
|
1001
|
+ <td colspan="3" style="width:130px;">
|
|
1002
|
+ {{ getTime(advice.execution_time, "{y}-{m}-{d} {h}:{i}") }}
|
|
1003
|
+ </td>
|
945
|
1004
|
|
946
|
1005
|
<!-- <td>
|
947
|
1006
|
<span v-if="setAdminUserES(advice.checker) == ''">{{
|
|
@@ -991,47 +1050,62 @@
|
991
|
1050
|
|
992
|
1051
|
<span style="width:70px;display:inline-block">
|
993
|
1052
|
{{
|
994
|
|
- predialysis.weight_before ? predialysis.weight_before : ""
|
995
|
|
- }}
|
996
|
|
- </span>Kg
|
|
1053
|
+ predialysis.weight_before ? predialysis.weight_before : ""
|
|
1054
|
+ }} </span
|
|
1055
|
+ >Kg
|
997
|
1056
|
</div>
|
998
|
1057
|
</td>
|
999
|
1058
|
<!-- <td width="100" style="border:none;"></td> -->
|
1000
|
1059
|
|
1001
|
|
- <td width="100" style="border:none;border-left:1px solid #000;padding-left:5px;">干体重:</td>
|
|
1060
|
+ <td
|
|
1061
|
+ width="100"
|
|
1062
|
+ style="border:none;border-left:1px solid #000;padding-left:5px;"
|
|
1063
|
+ >
|
|
1064
|
+ 干体重:
|
|
1065
|
+ </td>
|
1002
|
1066
|
<td width="180" style="text-align:left;border:none;">
|
1003
|
1067
|
<div>
|
1004
|
1068
|
<span style="width:70px;display:inline-block;border:none;">
|
1005
|
1069
|
{{
|
1006
|
|
- predialysis.dry_weight ? predialysis.dry_weight : ""
|
1007
|
|
- }}
|
1008
|
|
- </span>Kg
|
|
1070
|
+ predialysis.dry_weight ? predialysis.dry_weight : ""
|
|
1071
|
+ }} </span
|
|
1072
|
+ >Kg
|
1009
|
1073
|
</div>
|
1010
|
1074
|
</td>
|
1011
|
1075
|
<!-- <td width="10" style="border:none;"></td> -->
|
1012
|
1076
|
|
1013
|
|
- <td width="100" style="border:none;border-left:1px solid #000;padding-left:5px;">实际脱水量:</td>
|
|
1077
|
+ <td
|
|
1078
|
+ width="100"
|
|
1079
|
+ style="border:none;border-left:1px solid #000;padding-left:5px;"
|
|
1080
|
+ >
|
|
1081
|
+ 实际脱水量:
|
|
1082
|
+ </td>
|
1014
|
1083
|
<td width="130" style="text-align:left;border:none;">
|
1015
|
1084
|
<div>
|
1016
|
1085
|
<span style="width:70px;display:inline-block">
|
1017
|
1086
|
{{
|
1018
|
|
- afterdialysis.actual_ultrafiltration
|
1019
|
|
- ? afterdialysis.actual_ultrafiltration
|
1020
|
|
- : "/"
|
1021
|
|
- }}
|
1022
|
|
- </span>L
|
|
1087
|
+ afterdialysis.actual_ultrafiltration
|
|
1088
|
+ ? afterdialysis.actual_ultrafiltration
|
|
1089
|
+ : "/"
|
|
1090
|
+ }} </span
|
|
1091
|
+ >L
|
1023
|
1092
|
</div>
|
1024
|
1093
|
</td>
|
1025
|
|
- <td width="100" style="border:none;border-left:1px solid #000;padding-left:5px">透后体重:</td>
|
|
1094
|
+ <td
|
|
1095
|
+ width="100"
|
|
1096
|
+ style="border:none;border-left:1px solid #000;padding-left:5px"
|
|
1097
|
+ >
|
|
1098
|
+ 透后体重:
|
|
1099
|
+ </td>
|
1026
|
1100
|
<td width="180" style="text-align:left;border:none;">
|
1027
|
1101
|
<div>
|
1028
|
1102
|
<span style="width:70px;display:inline-block">
|
1029
|
1103
|
{{
|
1030
|
|
- afterdialysis.weight_after
|
1031
|
|
- ? parseFloat(afterdialysis.weight_after).toFixed(1)
|
1032
|
|
- : ""
|
1033
|
|
- }}
|
1034
|
|
- </span>Kg
|
|
1104
|
+ afterdialysis.weight_after
|
|
1105
|
+ ? parseFloat(afterdialysis.weight_after).toFixed(1)
|
|
1106
|
+ : ""
|
|
1107
|
+ }} </span
|
|
1108
|
+ >Kg
|
1035
|
1109
|
</div>
|
1036
|
1110
|
</td>
|
1037
|
1111
|
</tr>
|
|
@@ -1040,28 +1114,36 @@
|
1040
|
1114
|
<table class="print-table" border="1">
|
1041
|
1115
|
<tbody>
|
1042
|
1116
|
<tr>
|
1043
|
|
- <td width="100" style="padding-left:5px;border:none;border-right:1px solid #000;">透后评估</td>
|
|
1117
|
+ <td
|
|
1118
|
+ width="100"
|
|
1119
|
+ style="padding-left:5px;border:none;border-right:1px solid #000;"
|
|
1120
|
+ >
|
|
1121
|
+ 透后评估
|
|
1122
|
+ </td>
|
1044
|
1123
|
|
1045
|
|
- <td width="100" style="border:none;padding-left:5px;">透析器凝血:</td>
|
|
1124
|
+ <td width="100" style="border:none;padding-left:5px;">
|
|
1125
|
+ 透析器凝血:
|
|
1126
|
+ </td>
|
1046
|
1127
|
<td width="100" style="text-align:left;border:none;">
|
1047
|
1128
|
<div>
|
1048
|
1129
|
<span style="width:100px;display:inline-block;border:none;">
|
1049
|
|
- {{
|
1050
|
|
- afterdialysis.cruor ? afterdialysis.cruor : ""
|
1051
|
|
- }}
|
|
1130
|
+ {{ afterdialysis.cruor ? afterdialysis.cruor : "" }}
|
1052
|
1131
|
</span>
|
1053
|
1132
|
</div>
|
1054
|
1133
|
</td>
|
1055
|
1134
|
<!-- <td width="10" style="border:none;"></td> -->
|
1056
|
1135
|
|
1057
|
1136
|
<td width="70" style="border:none;padding-left:5px;">内瘘:</td>
|
1058
|
|
- <td width="200" style="text-align:left;border:none;line-height: 30px;">
|
|
1137
|
+ <td
|
|
1138
|
+ width="200"
|
|
1139
|
+ style="text-align:left;border:none;line-height: 30px;"
|
|
1140
|
+ >
|
1059
|
1141
|
<div>
|
1060
|
1142
|
<span style="width:200px;display:inline-block">
|
1061
|
1143
|
{{
|
1062
|
|
- afterdialysis.internal_fistula
|
1063
|
|
- ? afterdialysis.internal_fistula
|
1064
|
|
- : ""
|
|
1144
|
+ afterdialysis.internal_fistula
|
|
1145
|
+ ? afterdialysis.internal_fistula
|
|
1146
|
+ : ""
|
1065
|
1147
|
}}
|
1066
|
1148
|
</span>
|
1067
|
1149
|
</div>
|
|
@@ -1070,9 +1152,7 @@
|
1070
|
1152
|
<td width="180" style="text-align:left;border:none;">
|
1071
|
1153
|
<div>
|
1072
|
1154
|
<span style="width:180px;display:inline-block">
|
1073
|
|
- {{
|
1074
|
|
- afterdialysis.catheter ? afterdialysis.catheter : ""
|
1075
|
|
- }}
|
|
1155
|
+ {{ afterdialysis.catheter ? afterdialysis.catheter : "" }}
|
1076
|
1156
|
</span>
|
1077
|
1157
|
</div>
|
1078
|
1158
|
</td>
|
|
@@ -1280,7 +1360,7 @@
|
1280
|
1360
|
<tr style="height:100px;text-align:left;border:none;">
|
1281
|
1361
|
<td style="padding-left:5px;border:none">
|
1282
|
1362
|
治疗小结:{{
|
1283
|
|
- summary.dialysis_summary ? summary.dialysis_summary : ""
|
|
1363
|
+ summary.dialysis_summary ? summary.dialysis_summary : ""
|
1284
|
1364
|
}}
|
1285
|
1365
|
</td>
|
1286
|
1366
|
</tr>
|
|
@@ -1299,7 +1379,8 @@
|
1299
|
1379
|
|
1300
|
1380
|
<span
|
1301
|
1381
|
v-if="setAdminUserES(check == null ? 0 : check.modifier) == ''"
|
1302
|
|
- >{{ getAdminUser(check == null ? 0 : check.modifier) }}</span>
|
|
1382
|
+ >{{ getAdminUser(check == null ? 0 : check.modifier) }}</span
|
|
1383
|
+ >
|
1303
|
1384
|
<img
|
1304
|
1385
|
style="height:20px;"
|
1305
|
1386
|
:src="setAdminUserES(check == null ? 0 : check.modifier)"
|
|
@@ -1314,7 +1395,8 @@
|
1314
|
1395
|
<p v-if="doctor_advices.length > 0">
|
1315
|
1396
|
<span
|
1316
|
1397
|
v-if="setAdminUserES(doctor_advices[0].execution_staff) == ''"
|
1317
|
|
- >{{ getAdminUser(doctor_advices[0].execution_staff) }}</span>
|
|
1398
|
+ >{{ getAdminUser(doctor_advices[0].execution_staff) }}</span
|
|
1399
|
+ >
|
1318
|
1400
|
<img
|
1319
|
1401
|
class="es-img"
|
1320
|
1402
|
:src="setAdminUserES(doctor_advices[0].execution_staff)"
|