|
@@ -13,11 +13,11 @@
|
13
|
13
|
</div>
|
14
|
14
|
<div class="app-container">
|
15
|
15
|
<div id="print_content">
|
16
|
|
- <div v-for="(record, index) in records" :key="index" class="print_page_main_content">
|
|
16
|
+ <div v-for="(record, index) in records" :key="record.id" class="print_page_main_content">
|
17
|
17
|
<div id="dialysis-print-box">
|
18
|
18
|
<div class="dialysis-print-order">
|
19
|
19
|
<div class="order-yy-name"></div>
|
20
|
|
- <div class="order-title">{{ orgname }}血液透析(滤过)记录表单</div>
|
|
20
|
+ <div class="order-title">{{ orgname }} 血液透析(滤过)记录表单</div>
|
21
|
21
|
|
22
|
22
|
|
23
|
23
|
<table class="print-table" style="margin-top: 10px;" border="1">
|
|
@@ -29,25 +29,35 @@
|
29
|
29
|
<tr>
|
30
|
30
|
<td>
|
31
|
31
|
<div style="display:flex;">
|
32
|
|
- <span style="flex:1;text-align:left;margin-left:15px;">
|
33
|
|
- 姓名: {{ record.patient.name }}</span>
|
|
32
|
+ <span style="flex:1;text-align:left;margin-left:15px;"> 姓名: {{ record.patient.name }}</span>
|
34
|
33
|
<span style="flex:1;margin-left:15px;">
|
35
|
|
- 年龄:{{ getAge(record.patient) }}</span>
|
|
34
|
+ 年龄:{{ getAge(record.patient) }}
|
|
35
|
+ </span>
|
36
|
36
|
<span style="flex:1;margin-left:15px;">
|
37
|
|
- 性别:{{ record.patient.gender == 1 ? '男' : '女' }}</span>
|
|
37
|
+ 性别:{{ record.patient.gender == 1 ? '男' : '女' }}
|
|
38
|
+ </span>
|
38
|
39
|
<span style="flex:1;margin-left:15px;">
|
39
|
|
- 透析机号:{{ record.patient.dialysis_no }}</span>
|
|
40
|
+ 透析机号: {{
|
|
41
|
+ record.dialysis_order &&
|
|
42
|
+ record.dialysis_order.device_number &&
|
|
43
|
+ record.dialysis_order.device_number.number.length >
|
|
44
|
+ 0
|
|
45
|
+ ? record.dialysis_order.device_number.number
|
|
46
|
+ : record.device_number.number
|
|
47
|
+ }}
|
|
48
|
+ </span>
|
40
|
49
|
<span style="flex:1;margin-left:15px;">第({{
|
41
|
50
|
record.patient.total_dialysis
|
42
|
|
- ? record.patient.total_dialysis
|
|
51
|
+ ? record.patient.total_dialysis + 1
|
43
|
52
|
: "/"
|
44
|
|
- }})次透析</span>
|
|
53
|
+ }})次透析
|
|
54
|
+ </span>
|
45
|
55
|
</div>
|
46
|
56
|
</td>
|
47
|
57
|
</tr>
|
48
|
58
|
<tr>
|
49
|
59
|
<td style="text-align:left;">
|
50
|
|
- <span style="display:inline-block;margin-left:15px;">上机前病情:</span>
|
|
60
|
+ <span style="display:inline-block;margin-left:15px;"> 上机前病情:</span>
|
51
|
61
|
<div style="display:inline-block;">
|
52
|
62
|
<label-box
|
53
|
63
|
:isChecked="record.receive_assessment.consciousness == 1 ? true : false"
|
|
@@ -76,7 +86,7 @@
|
76
|
86
|
<table class="print-table" border="1">
|
77
|
87
|
<tr>
|
78
|
88
|
<td style="text-align:left;">
|
79
|
|
- <span style="display:inline-block;margin-left:15px;">治疗方式:</span>
|
|
89
|
+ <span style="display:inline-block;margin-left:15px;"> 治疗方式:</span>
|
80
|
90
|
<label-box
|
81
|
91
|
:isChecked="record.prescription.mode_id == 1 ? true : false"
|
82
|
92
|
showValue="HD"
|
|
@@ -162,37 +172,74 @@
|
162
|
172
|
<table class="print-table" border="1">
|
163
|
173
|
<tr>
|
164
|
174
|
<td style="text-align:left;">
|
165
|
|
- <span style="display:inline-block;margin-left:15px;">处方脱水量:{{record.prescription.target_ultrafiltration}}ml</span>
|
166
|
|
- <span style="display:inline-block;margin-left:15px;">透析液流量:{{record.prescription.dialysate_flow}}ml/h</span>
|
167
|
|
- <span style="display:inline-block;margin-left:15px;">血流量:{{record.prescription.blood_flow_volume}}ml/min</span>
|
|
175
|
+ <span style="display:inline-block;margin-left:15px;"> 处方脱水量:{{record.prescription.target_ultrafiltration}}ml</span>
|
|
176
|
+ <span style="display:inline-block;margin-left:15px;"> 透析液流量:{{record.prescription.dialysate_flow}}ml/h</span>
|
168
|
177
|
</td>
|
169
|
178
|
<td>
|
170
|
|
- <span>医生签名:{{getName(record.prescription.creater)}}</span>
|
|
179
|
+ <span>医生签名:</span>
|
|
180
|
+ <span
|
|
181
|
+ v-if="
|
|
182
|
+ !record.advices ||
|
|
183
|
+ typeof record.advices[0] == 'undefined' ||
|
|
184
|
+ typeof record.advices[0][0] == 'undefined'
|
|
185
|
+ "
|
|
186
|
+ ></span>
|
|
187
|
+ <span
|
|
188
|
+ v-else-if="
|
|
189
|
+ setAdminUserES(
|
|
190
|
+ record.advices[0][0],
|
|
191
|
+ 'advice_doctor'
|
|
192
|
+ ) == ''
|
|
193
|
+ "
|
|
194
|
+ >{{
|
|
195
|
+ getAdminUser(
|
|
196
|
+ record.advices[0][0],
|
|
197
|
+ "advice_doctor"
|
|
198
|
+ )
|
|
199
|
+ }}</span
|
|
200
|
+ >
|
|
201
|
+ <img
|
|
202
|
+ class="es-img"
|
|
203
|
+ :src="
|
|
204
|
+ setAdminUserES(
|
|
205
|
+ record.advices[0][0],
|
|
206
|
+ 'advice_doctor'
|
|
207
|
+ )
|
|
208
|
+ "
|
|
209
|
+ alt=""
|
|
210
|
+ srcset=""
|
|
211
|
+ v-else
|
|
212
|
+ style="height: 20px;"
|
|
213
|
+ />
|
171
|
214
|
</td>
|
172
|
215
|
</tr>
|
173
|
216
|
</table>
|
174
|
217
|
<table class="print-table" border="1">
|
175
|
218
|
<tr>
|
176
|
|
- <td style="text-align:left;"><span style="display:inline-block;margin-left:15px;"
|
177
|
|
- >透析机:{{record.device_number.number}}</span</td>
|
178
|
|
- <td style="text-align:left;"><span style="display:inline-block;margin-left:15px;"
|
179
|
|
- >透析(滤)器:{{record.prescription.dialyzer_perfusion_apparatus}}</span</td>
|
|
219
|
+ <td style="text-align:left;">
|
|
220
|
+ <span style="display:inline-block;margin-left:15px;"
|
|
221
|
+ >透析机:{{record.device_number.number}}
|
|
222
|
+ </span>
|
180
|
223
|
</td>
|
181
|
224
|
<td style="text-align:left;">
|
182
|
|
- <span style="display:inline-block;margin-left:15px;">透析液(mmol/L):</span>
|
|
225
|
+ <span style="display:inline-block;margin-left:15px;">透析(滤)器:{{record.prescription.dialyzer_perfusion_apparatus}}</span></td>
|
|
226
|
+ </td>
|
|
227
|
+ <td style="text-align:left;">
|
|
228
|
+ <span style="display:inline-block;margin-left:15px;"> 透析液(mmol/L):</span>
|
183
|
229
|
<span v-if="record.prescription.dialysate_formulation == 1">
|
184
|
|
- 常规低钙(钾:{{record.prescription.kalium}} ,钙:{{record.prescription.calcium}} ,钠:{{record.prescription.sodium}};)
|
185
|
|
- </span>
|
|
230
|
+ 常规低钙(钾:{{record.prescription.kalium}} ,钙:{{record.prescription.calcium}} ,钠:{{record.prescription.sodium}};)
|
|
231
|
+ </span>
|
|
232
|
+
|
186
|
233
|
<span v-if="record.prescription.dialysate_formulation == 2">低钙(钾:{{record.prescription.kalium}} ,钙:{{record.prescription.calcium}} ,钠:{{record.prescription.sodium}};)
|
187
|
|
- </span>
|
|
234
|
+ </span>
|
188
|
235
|
<span v-if="record.prescription.dialysate_formulation == 3">
|
189
|
|
- 高钙(钾:{{record.prescription.kalium}} ,钙:{{record.prescription.calcium}} ,钠:{{record.prescription.sodium}};)
|
|
236
|
+ 高钙(钾:{{record.prescription.kalium}} ,钙:{{record.prescription.calcium}} ,钠:{{record.prescription.sodium}};)
|
190
|
237
|
</span>
|
191
|
238
|
<span v-if="record.prescription.dialysate_formulation == 4">
|
192
|
|
- 低钠(钾:{{record.prescription.kalium}} ,钙:{{record.prescription.calcium}} ,钠:{{record.prescription.sodium}};)
|
193
|
|
- </span>
|
|
239
|
+ 低钠(钾:{{record.prescription.kalium}} ,钙:{{record.prescription.calcium}} ,钠:{{record.prescription.sodium}};)
|
|
240
|
+ </span>
|
194
|
241
|
<span v-if="record.prescription.dialysate_formulation == 5">
|
195
|
|
- 高钠(钾:{{record.prescription.kalium}} ,钙:{{record.prescription.calcium}} ,钠:{{record.prescription.sodium}};)
|
|
242
|
+ 高钠(钾:{{record.prescription.kalium}} ,钙:{{record.prescription.calcium}} ,钠:{{record.prescription.sodium}};)
|
196
|
243
|
</span>
|
197
|
244
|
</td>
|
198
|
245
|
</tr>
|
|
@@ -200,9 +247,7 @@
|
200
|
247
|
<table class="print-table" border="1">
|
201
|
248
|
<tr>
|
202
|
249
|
<td style="text-align:left;">
|
203
|
|
- <span style="display:inline-block;margin-left:15px;"
|
204
|
|
- >血管通路:</span
|
205
|
|
- >
|
|
250
|
+ <span style="display:inline-block;margin-left:15px;">血管通路:</span>
|
206
|
251
|
|
207
|
252
|
<label-box
|
208
|
253
|
:isChecked="record.assessment_before_dislysis.blood_access_part_opera_name == '内瘘' ? true : false"
|
|
@@ -226,8 +271,34 @@
|
226
|
271
|
></label-box>
|
227
|
272
|
|
228
|
273
|
<label-box
|
229
|
|
- :isChecked="record.assessment_before_dislysis.blood_access_part_opera_name !='内瘘' && record.assessment_before_dislysis.blood_access_part_opera_name !='临时颈静脉导管' && record.assessment_before_dislysis.blood_access_part_opera_name !='内瘘' && record.assessment_before_dislysis.blood_access_part_opera_name !='内瘘' && record.assessment_before_dislysis.blood_access_part_opera_name !='临时股静脉导管' ? true : false" showValue="其它"></label-box>
|
230
|
|
- <span>穿刺者:{{getName(record.dialysis_order.puncture_nurse)}}</span>
|
|
274
|
+ :isChecked="record.assessment_before_dislysis.blood_access_part_opera_name !='内瘘' && record.assessment_before_dislysis.blood_access_part_opera_name !='临时颈静脉导管' && record.assessment_before_dislysis.blood_access_part_opera_name !='长期静脉导管' && record.assessment_before_dislysis.blood_access_part_opera_name !='临时股静脉导管' ? true : false" showValue="其它"></label-box>
|
|
275
|
+
|
|
276
|
+ <span>穿刺者:</span>
|
|
277
|
+ <span
|
|
278
|
+ v-if="
|
|
279
|
+ setAdminUserES(
|
|
280
|
+ record.dialysis_order,
|
|
281
|
+ 'puncture_nurse'
|
|
282
|
+ ) == ''
|
|
283
|
+ "
|
|
284
|
+ >{{
|
|
285
|
+ getAdminUser(record.dialysis_order, "puncture_nurse")
|
|
286
|
+ }}</span
|
|
287
|
+ >
|
|
288
|
+ <img
|
|
289
|
+ class="es-img"
|
|
290
|
+ :src="
|
|
291
|
+ setAdminUserES(
|
|
292
|
+ record.dialysis_order,
|
|
293
|
+ 'puncture_nurse'
|
|
294
|
+ )
|
|
295
|
+ "
|
|
296
|
+ alt=""
|
|
297
|
+ srcset=""
|
|
298
|
+ v-else
|
|
299
|
+ style="height: 20px;"
|
|
300
|
+ />
|
|
301
|
+
|
231
|
302
|
</td>
|
232
|
303
|
</tr>
|
233
|
304
|
<tr>
|
|
@@ -239,23 +310,22 @@
|
239
|
310
|
<th rowspan="2" width="40">时间</th>
|
240
|
311
|
<th colspan="3">透析参数</th>
|
241
|
312
|
<th colspan="6">生命体征</th>
|
242
|
|
- <th>病情变化及处理</th>
|
|
313
|
+ <th>治疗中病情变化</th>
|
243
|
314
|
</tr>
|
244
|
315
|
<tr>
|
245
|
|
- <td width="60">TMP<br/>(mmHg)</td>
|
246
|
|
- <td width="60">静脉压<br/>(mmHg)</td>
|
247
|
|
- <td width="60">血流量<br/>(ml/min)</td>
|
248
|
|
- <td width="60">脱水量<br/>(ml)</td>
|
249
|
|
- <td width="50">T<br/>(℃)</td>
|
250
|
|
- <td width="50">HR<br/>(bpm)</td>
|
251
|
|
- <td width="50">R<br/>(bpm)</td>
|
252
|
|
- <td width="50">BP<br/>(mmHg)</td>
|
253
|
|
- <td width="60">SpO₂<br/>(%)</td>
|
|
316
|
+ <td width="60"><p style="height:20px;line-height:20px">TMP</p><p style="height:20px;line-height:20px">(mmHg)</p></td>
|
|
317
|
+ <td width="60"><p style="height:20px;line-height:20px">静脉压</p><p style="height:20px;line-height:20px">(mmHg)</p></td>
|
|
318
|
+ <td width="60"><p style="height:20px;line-height:20px">血流量</p><p style="height:20px;line-height:20px">(ml/min)</p></td>
|
|
319
|
+ <td width="60"><p style="height:20px;line-height:20px">脱水量</p><p style="height:20px;line-height:20px">(ml)</p></td>
|
|
320
|
+ <td width="50"><p style="height:20px;line-height:20px">T</p><p style="height:20px;line-height:20px">(℃)</p></td>
|
|
321
|
+ <td width="50"><p style="height:20px;line-height:20px">HR</p><p style="height:20px;line-height:20px">(bpm)</p></td>
|
|
322
|
+ <td width="50"><p style="height:20px;line-height:20px">R</p><p style="height:20px;line-height:20px">(bpm)</p></td>
|
|
323
|
+ <td width="60"><p style="height:20px;line-height:20px">BP</p><p style="height:20px;line-height:20px">(mmHg)</p></td>
|
|
324
|
+ <td width="60"><p style="height:20px;line-height:20px">SpO₂</p><p style="height:20px;line-height:20px">(%)</p></td>
|
254
|
325
|
<td>记录</td>
|
255
|
326
|
</tr>
|
256
|
|
- <tr v-for="(monitor,
|
257
|
|
- index) in record.monitor_records"
|
258
|
|
- :key="index">
|
|
327
|
+ <tr v-for="(monitor,monitor_index) in record.monitor_records"
|
|
328
|
+ :key="monitor.id" style="height:30px">
|
259
|
329
|
<td>{{ getTime(monitor.operate_time, '{h}:{i}') }}</td>
|
260
|
330
|
<td>{{monitor.transmembrane_pressure?monitor.transmembrane_pressure:''}}</td>
|
261
|
331
|
<td>{{monitor.venous_pressure?monitor.venous_pressure:''}}</td>
|
|
@@ -281,10 +351,36 @@
|
281
|
351
|
</td>
|
282
|
352
|
<td>{{monitor.blood_oxygen_saturation?monitor.blood_oxygen_saturation:""}}</td>
|
283
|
353
|
<td style="line-height:16px;padding:0px;">
|
284
|
|
- {{ monitor.end }}
|
285
|
|
- {{ monitor.symptom }} {{monitor.dispose}} {{ monitor.result }}
|
|
354
|
+
|
|
355
|
+ {{ monitor.symptom }} {{ monitor.result }}
|
286
|
356
|
</td>
|
287
|
357
|
</tr>
|
|
358
|
+ <tr
|
|
359
|
+ v-for="(monitor_record,
|
|
360
|
+ indexTwo) in record.monitor_records2"
|
|
361
|
+ :key="monitor_record.id"
|
|
362
|
+ >
|
|
363
|
+ <td></td>
|
|
364
|
+ <td></td>
|
|
365
|
+ <td></td>
|
|
366
|
+ <td></td>
|
|
367
|
+ <td></td>
|
|
368
|
+ <td></td>
|
|
369
|
+ <td></td>
|
|
370
|
+ <td></td>
|
|
371
|
+ <td></td>
|
|
372
|
+ <td></td>
|
|
373
|
+ <td style="line-height:16px;padding:0px;">
|
|
374
|
+ <div
|
|
375
|
+ style="height:40px;line-height:20px; overflow:hidden;"
|
|
376
|
+ >
|
|
377
|
+ <span
|
|
378
|
+ style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;"
|
|
379
|
+ >
|
|
380
|
+ </span>
|
|
381
|
+ </div>
|
|
382
|
+ </td>
|
|
383
|
+ </tr>
|
288
|
384
|
</table>
|
289
|
385
|
<table class="print-table" border="1">
|
290
|
386
|
<tr>
|
|
@@ -293,72 +389,93 @@
|
293
|
389
|
<td>执行</td>
|
294
|
390
|
<td>核对</td>
|
295
|
391
|
<td>上次透后体重</td>
|
296
|
|
- <td> {{
|
297
|
|
- record.assessment_before_dislysis &&
|
298
|
|
- record.assessment_before_dislysis
|
299
|
|
- .weight_after_last_transparency
|
300
|
|
- ? parseFloat(
|
301
|
|
- record.assessment_before_dislysis
|
302
|
|
- .weight_after_last_transparency -
|
303
|
|
- record.assessment_before_dislysis
|
304
|
|
- .additional_weight
|
|
392
|
+ <td>
|
|
393
|
+ {{
|
|
394
|
+ record.lastafterweight.weight_after
|
|
395
|
+ ? parseFloat(
|
|
396
|
+ record.lastafterweight.weight_after
|
305
|
397
|
).toFixed(1)
|
306
|
398
|
: "未称重"
|
307
|
|
- }}kg</td>
|
|
399
|
+ }}kg
|
|
400
|
+ </td>
|
308
|
401
|
</tr>
|
309
|
|
- <tr v-for="(advice, advice_index) in record.advices"
|
310
|
|
- :key="advice_index">
|
311
|
|
- <td>{{getTime(advice.start_time,'{y}-{m}-{d} {h}:{i}')}}</td>
|
312
|
|
- <td>
|
313
|
|
- <span v-if="advice.parent_id > 0">---></span>
|
314
|
|
- <span>{{ advice.advice_name }}</span>
|
315
|
|
- <span v-if="advice && advice.advice_desc"
|
316
|
|
- >({{ advice.advice_desc }}{{ advice.drug_spec_unit }})</span>
|
317
|
|
- <span v-if="advice.prescribing_number">
|
318
|
|
- {{ advice.prescribing_number}}{{ advice.prescribing_number_unit }}</span>
|
319
|
|
- <span v-if="advice.single_dose != 0">
|
320
|
|
- {{ advice.single_dose}}{{ advice.single_dose_unit }}</span>
|
321
|
|
- <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
|
322
|
|
- <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
|
323
|
|
- <span v-if="advice.parent_id == 0 && advice.remark.length > 0">({{ advice.remark }})</span></td>
|
324
|
|
- <td>
|
325
|
|
-
|
326
|
|
-
|
327
|
|
-
|
328
|
402
|
|
|
403
|
+
|
329
|
404
|
|
|
405
|
+ <tr v-for="(advice, advice_index) in record.advices"
|
|
406
|
+ :key="advices.id">
|
|
407
|
+ <td> {{ getTime(advice[0].start_time, "{h}:{i}") }}</td>
|
|
408
|
+
|
|
409
|
+ <td>
|
|
410
|
+ <span v-if="advice[0].parent_id > 0">└</span>
|
|
411
|
+ <span>{{ advice[0].advice_name }}</span>
|
|
412
|
+ <span
|
|
413
|
+ >{{ advice[0].advice_desc
|
|
414
|
+ }}{{ advice[0].drug_spec_unit }}</span
|
|
415
|
+ >
|
|
416
|
+ <span v-if="advice[0].prescribing_number"
|
|
417
|
+ >* {{ advice[0].prescribing_number
|
|
418
|
+ }}{{ advice[0].prescribing_number_unit }}</span
|
|
419
|
+ >
|
|
420
|
+ <span v-if="advice[0].single_dose != 0"
|
|
421
|
+ >{{ advice[0].single_dose
|
|
422
|
+ }}{{ advice[0].single_dose_unit }}</span
|
|
423
|
+ >
|
|
424
|
+ <span>{{ advice[0].delivery_way }}</span>
|
|
425
|
+ <span>{{ advice[0].execution_frequency }}</span>
|
|
426
|
+ </td>
|
330
|
427
|
|
|
428
|
+ <td>
|
|
429
|
+ <span
|
|
430
|
+ v-if="
|
|
431
|
+ setAdminUserES(advice[0], 'execution_staff') ==
|
|
432
|
+ ''
|
|
433
|
+ "
|
|
434
|
+ >{{
|
|
435
|
+ getAdminUser(advice[0], "execution_staff")
|
|
436
|
+ }}</span
|
|
437
|
+ >
|
|
438
|
+ <img
|
|
439
|
+ class="es-img"
|
|
440
|
+ :src="
|
|
441
|
+ setAdminUserES(advice[0], 'execution_staff')
|
|
442
|
+ "
|
|
443
|
+ alt=""
|
|
444
|
+ srcset=""
|
|
445
|
+ v-else
|
|
446
|
+ style="height: 20px;"
|
|
447
|
+ />
|
|
448
|
+ </td>
|
331
|
449
|
|
332
|
|
- <span v-if="setAdminUserES(advice.advice_doctor) == ''">{{ getName(advice.advice_doctor) }}</span>
|
333
|
|
- <img
|
334
|
|
- style="height:20px;"
|
335
|
|
- :src="setAdminUserES(advice.advice_doctor)"
|
336
|
|
- alt=""
|
337
|
|
- srcset=""
|
338
|
|
- v-else
|
339
|
|
- />
|
340
|
|
- </td>
|
341
|
450
|
<td>
|
342
|
|
- <span
|
343
|
|
- v-if="setAdminUserES(advice.execution_staff) == ''">{{ getName(advice.execution_staff) }}</span>
|
344
|
|
- <img
|
345
|
|
- style="height:20px;"
|
346
|
|
- :src="setAdminUserES(advice.execution_staff)"
|
347
|
|
- alt=""
|
348
|
|
- srcset=""
|
349
|
|
- v-else
|
350
|
|
- />
|
|
451
|
+ <span>
|
|
452
|
+ <span
|
|
453
|
+ v-if="setAdminUserES(advice[0], 'checker') == ''"
|
|
454
|
+ >{{ getAdminUser(advice[0], "checker") }}</span
|
|
455
|
+ >
|
|
456
|
+ <img
|
|
457
|
+ class="es-img"
|
|
458
|
+ :src="setAdminUserES(advice[0], 'checker')"
|
|
459
|
+ alt=""
|
|
460
|
+ srcset=""
|
|
461
|
+ v-else
|
|
462
|
+ style="height: 20px;"
|
|
463
|
+ /></span>
|
351
|
464
|
</td>
|
352
|
465
|
<td v-if="advice_index==0">透前体重</td>
|
353
|
466
|
<td v-if="advice_index==0">{{record.assessment_before_dislysis.weight_before}}kg</td>
|
354
|
467
|
<td v-if="advice_index==1">体重增加量</td>
|
355
|
|
- <td v-if="advice_index==1">{{record.assessment_before_dislysis.weight_gain}}kg</td>
|
|
468
|
+ <td v-if="advice_index==1">
|
|
469
|
+ <span>{{(record.assessment_before_dislysis.weight_before - record.lastafterweight.weight_after).toFixed(1)}}kg</span>
|
|
470
|
+
|
|
471
|
+ </td>
|
356
|
472
|
<td v-if="advice_index==2">干体重(DW)</td>
|
357
|
473
|
<td v-if="advice_index==2">{{record.assessment_before_dislysis.dry_weight}}kg</td>
|
358
|
474
|
<td v-if="advice_index==3">较干体重增加量</td>
|
359
|
|
- <td v-if="advice_index==3">{{(record.assessment_before_dislysis.weight_before - record.assessment_before_dislysis.dry_weight - record.assessment_before_dislysis.additional_weight).toFixed(1)}}kg</td>
|
|
475
|
+ <td v-if="advice_index==3">
|
|
476
|
+ <span>{{(record.assessment_before_dislysis.weight_before - record.assessment_before_dislysis.dry_weight - record.assessment_before_dislysis.additional_weight).toFixed(2)}}</span>kg</td>
|
360
|
477
|
<td v-if="advice_index==4">净脱水量</td>
|
361
|
|
- <td v-if="advice_index==4">{{record.assessment_after_dislysis.actual_ultrafiltration}}ml</td>
|
|
478
|
+ <td v-if="advice_index==4">{{record.assessment_after_dislysis.actual_ultrafiltration}}L</td>
|
362
|
479
|
<td v-if="advice_index==5">透后体重</td>
|
363
|
480
|
<td v-if="advice_index==5">{{record.assessment_after_dislysis.weight_after}}kg</td>
|
364
|
481
|
<td v-if="advice_index==6">本次透析体重下降量</td>
|
|
@@ -371,66 +488,66 @@
|
371
|
488
|
</tr>
|
372
|
489
|
<tr>
|
373
|
490
|
<td colspan="6" style="text-align:left;">
|
374
|
|
- 医生签名:<template
|
|
491
|
+ 医生签名: <span
|
375
|
492
|
v-if="
|
376
|
|
- record.prescription &&
|
377
|
|
- record.prescription.prescription_doctor
|
|
493
|
+ !record.advices ||
|
|
494
|
+ typeof record.advices[0] == 'undefined' ||
|
|
495
|
+ typeof record.advices[0][0] == 'undefined'
|
378
|
496
|
"
|
|
497
|
+ ></span>
|
|
498
|
+ <span
|
|
499
|
+ v-else-if="
|
|
500
|
+ setAdminUserES(
|
|
501
|
+ record.advices[0][0],
|
|
502
|
+ 'advice_doctor'
|
|
503
|
+ ) == ''
|
|
504
|
+ "
|
|
505
|
+ >{{
|
|
506
|
+ getAdminUser(
|
|
507
|
+ record.advices[0][0],
|
|
508
|
+ "advice_doctor"
|
|
509
|
+ )
|
|
510
|
+ }}</span
|
379
|
511
|
>
|
380
|
|
- <span
|
381
|
|
- v-if="
|
382
|
|
- setAdminUserES(
|
383
|
|
- record.prescription.prescription_doctor
|
384
|
|
- ) == ''
|
385
|
|
- "
|
386
|
|
- >{{
|
387
|
|
- getName(
|
388
|
|
- record.prescription.prescription_doctor
|
389
|
|
- )
|
390
|
|
- }}</span
|
391
|
|
- >
|
392
|
|
- <img
|
393
|
|
- style="height:20px;"
|
394
|
|
- :src="
|
395
|
|
- setAdminUserES(
|
396
|
|
- record.prescription.prescription_doctor
|
397
|
|
- )
|
398
|
|
- "
|
399
|
|
- alt=""
|
400
|
|
- srcset=""
|
401
|
|
- v-else
|
402
|
|
- />
|
403
|
|
- </template>
|
|
512
|
+ <img
|
|
513
|
+ class="es-img"
|
|
514
|
+ :src="
|
|
515
|
+ setAdminUserES(
|
|
516
|
+ record.advices[0][0],
|
|
517
|
+ 'advice_doctor'
|
|
518
|
+ )
|
|
519
|
+ "
|
|
520
|
+ alt=""
|
|
521
|
+ srcset=""
|
|
522
|
+ v-else
|
|
523
|
+ style="height: 20px;"
|
|
524
|
+ />
|
404
|
525
|
护士签名:
|
405
|
526
|
<span
|
406
|
|
- v-if="
|
|
527
|
+ v-if="
|
407
|
528
|
setAdminUserES(
|
408
|
|
- record.dialysis_order == null
|
409
|
|
- ? 0
|
410
|
|
- : record.dialysis_order.puncture_nurse
|
|
529
|
+ record.dialysis_order,
|
|
530
|
+ 'start_nurse'
|
411
|
531
|
) == ''
|
412
|
532
|
"
|
413
|
533
|
>{{
|
414
|
|
- getName(
|
415
|
|
- record.dialysis_order == null
|
416
|
|
- ? 0
|
417
|
|
- : record.dialysis_order.puncture_nurse
|
418
|
|
- )
|
|
534
|
+ getAdminUser(record.dialysis_order, "start_nurse")
|
419
|
535
|
}}</span
|
420
|
536
|
>
|
421
|
537
|
<img
|
422
|
|
- style="height:20px;"
|
|
538
|
+ class="es-img"
|
423
|
539
|
:src="
|
424
|
540
|
setAdminUserES(
|
425
|
|
- record.dialysis_order == null
|
426
|
|
- ? 0
|
427
|
|
- : record.dialysis_order.puncture_nurse
|
|
541
|
+ record.dialysis_order,
|
|
542
|
+ 'start_nurse'
|
428
|
543
|
)
|
429
|
544
|
"
|
430
|
545
|
alt=""
|
431
|
546
|
srcset=""
|
432
|
547
|
v-else
|
|
548
|
+ style="height: 20px;"
|
433
|
549
|
/>
|
|
550
|
+
|
434
|
551
|
</td>
|
435
|
552
|
</tr>
|
436
|
553
|
</table>
|
|
@@ -445,13 +562,13 @@
|
445
|
562
|
<script>
|
446
|
563
|
import CheckBox from './option_check_box'
|
447
|
564
|
import LabelBox from '../printItem/LabelBox'
|
448
|
|
- import { GetBatchPrintDialysisData } from '@/api/print_data'
|
|
565
|
+ import { GetBatchPrintDialysisData, getLastAfterWeight } from '@/api/print_data'
|
449
|
566
|
import { jsGetAge, uParseTime } from '@/utils/tools'
|
450
|
567
|
import { getDataConfig } from '@/utils/data'
|
451
|
568
|
import BreadCrumb from '@/xt_pages/components/bread-crumb'
|
452
|
569
|
import print from 'print-js'
|
453
|
570
|
export default {
|
454
|
|
- name: 'BatchPrintOrderSix',
|
|
571
|
+ name: 'BatchPrintOrderSeven',
|
455
|
572
|
components: {
|
456
|
573
|
CheckBox,
|
457
|
574
|
BreadCrumb,
|
|
@@ -504,12 +621,39 @@ export default {
|
504
|
621
|
'腹痛'
|
505
|
622
|
],
|
506
|
623
|
allName: [],
|
507
|
|
- NameStatus: 0
|
|
624
|
+ NameStatus: 0,
|
|
625
|
+ advices: [],
|
|
626
|
+ docotorId: '',
|
|
627
|
+ doctorNameForm: {
|
|
628
|
+ user_name: '',
|
|
629
|
+ url: ''
|
|
630
|
+ },
|
|
631
|
+ doctorNameFormTwo: {
|
|
632
|
+ user_name: '',
|
|
633
|
+ url: ''
|
|
634
|
+ },
|
|
635
|
+ doctorNameFormThree: {
|
|
636
|
+ user_name: '',
|
|
637
|
+ url: ''
|
|
638
|
+ },
|
|
639
|
+ doctorNameFormFour: {
|
|
640
|
+ user_name: '',
|
|
641
|
+ url: ''
|
|
642
|
+ },
|
|
643
|
+ doctorNameFormFive: {
|
|
644
|
+ user_name: '',
|
|
645
|
+ url: ''
|
|
646
|
+ },
|
|
647
|
+ doctorNameFormSix: {
|
|
648
|
+ user_name: '',
|
|
649
|
+ url: ''
|
|
650
|
+ },
|
|
651
|
+ lastAfterWeight: ''
|
508
|
652
|
}
|
509
|
653
|
},
|
510
|
654
|
created() {
|
511
|
655
|
var xtuser = this.$store.getters.xt_user
|
512
|
|
- console.log('xtuser', xtuser)
|
|
656
|
+ // console.log('xtuser', xtuser)
|
513
|
657
|
this.orgname = xtuser.org.org_name
|
514
|
658
|
// this.orgname = "遂溪方济医院";
|
515
|
659
|
this.modeOptions = this.$store.getters.treatment_mode
|
|
@@ -559,132 +703,55 @@ export default {
|
559
|
703
|
.then(rs => {
|
560
|
704
|
var resp = rs.data
|
561
|
705
|
if (resp.state == 1) {
|
562
|
|
- console.log('数据', resp.data.schedules)
|
|
706
|
+ this.org_template_info = resp.data.templateInfo
|
|
707
|
+
|
563
|
708
|
this.records = this.records.concat(resp.data.schedules)
|
564
|
|
- console.log('this', this.records)
|
565
|
|
- for (const recordIndex in this.records) {
|
566
|
|
- this.advice_groups = []
|
567
|
|
- this.advice_groups_2 = []
|
568
|
|
- var dlegh = 0
|
569
|
|
- if (
|
570
|
|
- (this.records[recordIndex].assessment_before_dislysis &&
|
571
|
|
- this.records[recordIndex].assessment_before_dislysis
|
572
|
|
- .systolic_blood_pressure != 0 &&
|
573
|
|
- this.records[recordIndex].assessment_before_dislysis
|
574
|
|
- .diastolic_blood_pressure != 0) ||
|
575
|
|
- (this.records[recordIndex].assessment_before_dislysis &&
|
576
|
|
- this.records[recordIndex].assessment_before_dislysis.remark
|
577
|
|
- .length > 0) ||
|
578
|
|
- (this.records[recordIndex].assessment_before_dislysis &&
|
579
|
|
- this.records[recordIndex].assessment_before_dislysis
|
580
|
|
- .pulse_frequency != 0) ||
|
581
|
|
- (this.records[recordIndex].assessment_before_dislysis &&
|
582
|
|
- this.records[recordIndex].assessment_before_dislysis
|
583
|
|
- .breathing_rate != 0) ||
|
584
|
|
- (this.records[recordIndex].assessment_before_dislysis &&
|
585
|
|
- this.records[recordIndex].assessment_before_dislysis
|
586
|
|
- .temperature != 0)
|
587
|
|
- ) {
|
588
|
|
- var nl = 6
|
589
|
|
- this.records[recordIndex].print_length = 8
|
590
|
|
- if (this.records[recordIndex].length > 8) {
|
591
|
|
- this.records[recordIndex].classname = 'margin-bottom-900'
|
592
|
|
- } else {
|
593
|
|
- this.records[recordIndex].classname = 'margin-bottom-300'
|
594
|
|
- }
|
595
|
|
- } else {
|
596
|
|
- var nl = 6
|
597
|
|
- this.records[recordIndex].print_length = 9
|
598
|
|
- if (this.records[recordIndex].length > 9) {
|
599
|
|
- this.records[recordIndex].classname = 'margin-bottom-900'
|
600
|
|
- } else {
|
601
|
|
- this.records[recordIndex].classname = 'margin-bottom-300'
|
602
|
|
- }
|
603
|
|
- }
|
604
|
|
- if (
|
605
|
|
- this.records[recordIndex].assessment_before_dislysis &&
|
606
|
|
- this.records[recordIndex].assessment_before_dislysis
|
607
|
|
- .blood_access_part_opera_id
|
608
|
|
- ) {
|
609
|
|
- this.records[
|
610
|
|
- recordIndex
|
611
|
|
- ].assessment_before_dislysis.blood_access_part_opera_name = this.bloodAccessParOperaName(
|
612
|
|
- this.records[recordIndex].assessment_before_dislysis
|
613
|
|
- .blood_access_part_opera_id
|
614
|
|
- )
|
615
|
|
- }
|
616
|
709
|
|
617
|
|
- if (recordIndex == this.records.length - 1) {
|
618
|
|
- this.records[recordIndex].classname = ' '
|
619
|
|
- }
|
|
710
|
+ console.log('记录', this.records)
|
620
|
711
|
|
621
|
|
- this.records[recordIndex].monitor_records2 = []
|
|
712
|
+ for (const recordIndex in this.records) {
|
|
713
|
+ var dlegh = 0
|
622
|
714
|
if (
|
623
|
715
|
this.records[recordIndex].monitor_records &&
|
624
|
|
- this.records[recordIndex].monitor_records.length < 7
|
|
716
|
+ this.records[recordIndex].monitor_records.length < 8
|
625
|
717
|
) {
|
626
|
|
- dlegh = nl - this.records[recordIndex].monitor_records.length
|
627
|
|
- }
|
628
|
|
- if (this.records[recordIndex].monitor_records.length <= 0) {
|
629
|
|
- dlegh = nl
|
|
718
|
+ dlegh = 8 - this.records[recordIndex].monitor_records.length
|
|
719
|
+ } else {
|
|
720
|
+ dlegh = 0
|
630
|
721
|
}
|
631
|
722
|
if (dlegh > 0) {
|
632
|
723
|
if (
|
633
|
724
|
typeof this.records[recordIndex].monitor_records ===
|
634
|
725
|
'undefined' ||
|
635
|
|
- this.records[recordIndex].monitor_records == null
|
|
726
|
+ this.records[recordIndex].monitor_records == null
|
636
|
727
|
) {
|
637
|
728
|
this.records[recordIndex].monitor_records = []
|
638
|
729
|
}
|
639
|
730
|
for (let index = 0; index < dlegh; index++) {
|
640
|
|
- this.records[recordIndex].monitor_records2.push([])
|
|
731
|
+ this.records[recordIndex].monitor_records.push([])
|
641
|
732
|
}
|
642
|
733
|
}
|
643
|
734
|
|
644
|
|
- var tempmonitorflag = true
|
645
|
|
- for (
|
646
|
|
- let index = 0;
|
647
|
|
- index < this.records[recordIndex].monitor_records.length;
|
648
|
|
- index++
|
649
|
|
- ) {
|
650
|
|
- const monitor = this.records[recordIndex].monitor_records[index]
|
651
|
|
- this.records[recordIndex].monitor_records[index].end = ''
|
652
|
|
- if (Object.keys(monitor).length > 0 && index > 1) {
|
653
|
|
- if (
|
654
|
|
- monitor.operate_time ==
|
655
|
|
- this.records[recordIndex].dialysis_order.end_time
|
656
|
|
- ) {
|
657
|
|
- this.records[recordIndex].monitor_records[index].end =
|
658
|
|
- '【结束透析】'
|
659
|
|
- tempmonitorflag = false
|
660
|
|
- }
|
661
|
|
- if (
|
662
|
|
- tempmonitorflag &&
|
663
|
|
- index == this.records[recordIndex].monitor_records.length - 1
|
664
|
|
- ) {
|
665
|
|
- this.records[recordIndex].monitor_records[index].end =
|
666
|
|
- '【结束透析】'
|
667
|
|
- }
|
668
|
|
- }
|
|
735
|
+ this.records[recordIndex].isShowZero = false
|
|
736
|
+ if (this.records[recordIndex].patient.user_org_id == 9535) {
|
|
737
|
+ this.records[recordIndex].isShowZero = true
|
669
|
738
|
}
|
670
|
739
|
|
671
|
|
- this.monitor_records = this.records[recordIndex].monitor_records
|
672
|
|
-
|
673
|
|
- // this.records[recordIndex].monitor_records2 = []
|
674
|
|
- // if (this.records[recordIndex].monitor_records.length > 13){
|
675
|
|
- // const tempMonitors = []
|
676
|
|
- // const tempMonitors2 = []
|
677
|
|
-
|
678
|
|
- // for (let index = 0; index < this.records[recordIndex].monitor_records.length; index++) {
|
679
|
|
- // if (index < 13) {
|
680
|
|
- // tempMonitors.push(this.records[recordIndex].monitor_records[index])
|
681
|
|
- // } else {
|
682
|
|
- // tempMonitors2.push(this.records[recordIndex].monitor_records[index])
|
683
|
|
- // }
|
684
|
|
- // }
|
685
|
|
- // this.records[recordIndex].monitor_records = tempMonitors
|
686
|
|
- // this.records[recordIndex].monitor_records2 = tempMonitors2
|
687
|
|
- // }
|
|
740
|
+ var delghTwo = 0
|
|
741
|
+ if (this.records[recordIndex].advices && this.records[recordIndex].advices.length < 14) {
|
|
742
|
+ delghTwo = 14 - this.records[recordIndex].advices.length
|
|
743
|
+ } else {
|
|
744
|
+ delghTwo = 0
|
|
745
|
+ }
|
|
746
|
+
|
|
747
|
+ if (delghTwo > 0) {
|
|
748
|
+ if (typeof this.records[recordIndex].advices === 'undefined' || this.records[recordIndex].advices == null) {
|
|
749
|
+ this.records[recordIndex].advices = []
|
|
750
|
+ }
|
|
751
|
+ for (let index = 0; index < delghTwo; index++) {
|
|
752
|
+ this.records[recordIndex].advices.push([])
|
|
753
|
+ }
|
|
754
|
+ }
|
688
|
755
|
|
689
|
756
|
var childMap = {}
|
690
|
757
|
for (const index in this.records[recordIndex].advices) {
|
|
@@ -719,38 +786,39 @@ export default {
|
719
|
786
|
advices.push(item)
|
720
|
787
|
}
|
721
|
788
|
|
722
|
|
- this.doctor_advices =
|
723
|
|
- this.records[recordIndex].advices == null
|
724
|
|
- ? []
|
725
|
|
- : this.records[recordIndex].advices
|
726
|
|
- for (let index = 0; index < this.doctor_advices.length; index++) {
|
727
|
|
- this.doctor_advices[index]['isShow'] = 2
|
728
|
|
- }
|
729
|
|
-
|
730
|
|
- if (this.doctor_advices.length <= 7) {
|
731
|
|
- var nl = 7
|
732
|
|
- this.print_length = 7
|
|
789
|
+ var leftAdvice = []
|
|
790
|
+ var rightAdvice = []
|
|
791
|
+ var adlen = advices.length
|
733
|
792
|
|
|
793
|
+ var halfLen = adlen % 2 == 0 ? adlen / 2 : (adlen + 1) / 2
|
|
794
|
+ for (var i = 0; i < halfLen; i++) {
|
|
795
|
+ leftAdvice.push(advices[i])
|
|
796
|
+ var rightIndex = i + halfLen
|
|
797
|
+ rightAdvice.push(
|
|
798
|
+ rightIndex in advices ? advices[i + halfLen] : []
|
|
799
|
+ )
|
|
800
|
+ }
|
|
801
|
+ if (halfLen < 5) {
|
|
802
|
+ var nl = 5 - leftAdvice.length
|
|
803
|
+ for (let index = 0; index < nl; index++) {
|
|
804
|
+ leftAdvice.push([])
|
|
805
|
+ }
|
|
806
|
+ var nl = 5 - rightAdvice.length
|
734
|
807
|
for (let index = 0; index < nl; index++) {
|
735
|
|
- if (
|
736
|
|
- this.doctor_advices[index] == undefined ||
|
737
|
|
- this.doctor_advices[index].length <= 0
|
738
|
|
- ) {
|
739
|
|
- this.doctor_advices.push([{ advice_doctor: 0 }])
|
740
|
|
- } else {
|
741
|
|
- continue
|
742
|
|
- }
|
|
808
|
+ rightAdvice.push([])
|
743
|
809
|
}
|
744
|
810
|
}
|
745
|
|
- this.records[recordIndex].advices = []
|
746
|
|
- this.records[recordIndex].advices2 = []
|
747
|
|
- this.records[recordIndex].advices = this.doctor_advices
|
748
|
|
- this.records[recordIndex].advices2 = this.advice_groups_2
|
749
|
811
|
|
750
|
|
- this.records[recordIndex].totallength =
|
751
|
|
- this.doctor_advices.length + this.monitor_records.length
|
|
812
|
+ this.records[recordIndex].advices = []
|
|
813
|
+ for (var i = 0; i < halfLen; i++) {
|
|
814
|
+ var item = []
|
|
815
|
+ item.push(leftAdvice[i])
|
|
816
|
+ item.push(rightAdvice[i])
|
|
817
|
+ this.records[recordIndex].advices.push(item)
|
|
818
|
+ }
|
752
|
819
|
}
|
753
|
820
|
|
|
821
|
+ console.log(' this.records[recordIndex].advices', this.records)
|
754
|
822
|
this.operators = resp.data.medical_staffs
|
755
|
823
|
if (this.operators.length > 0) {
|
756
|
824
|
var operatorsLen = this.operators.length
|
|
@@ -764,10 +832,6 @@ export default {
|
764
|
832
|
}
|
765
|
833
|
|
766
|
834
|
this.adminUser = resp.data.users
|
767
|
|
- console.log('使用者', this.adminUser)
|
768
|
|
- var name = resp.data.name
|
769
|
|
- console.log('姓名', name)
|
770
|
|
- this.allName = name
|
771
|
835
|
this.loading = false
|
772
|
836
|
} else {
|
773
|
837
|
this.loading = false
|
|
@@ -777,7 +841,7 @@ export default {
|
777
|
841
|
.catch(err => {
|
778
|
842
|
this.$message.error(err)
|
779
|
843
|
})
|
780
|
|
- },
|
|
844
|
+ },
|
781
|
845
|
methods: {
|
782
|
846
|
getUnit: function(val) {
|
783
|
847
|
if (val.assessment_after_dislysis == null) {
|
|
@@ -922,29 +986,29 @@ export default {
|
922
|
986
|
}
|
923
|
987
|
},
|
924
|
988
|
getAdminUser(key, id) {
|
925
|
|
- if (
|
926
|
|
- typeof key === 'undefined' ||
|
927
|
|
- key == null ||
|
928
|
|
- typeof key[id] === 'undefined'
|
929
|
|
- ) {
|
|
989
|
+ // console.log('key', key)
|
|
990
|
+ // console.log('id', id)
|
|
991
|
+ if (typeof (key) === 'undefined' || key == null || typeof (key[id]) === 'undefined') {
|
930
|
992
|
return ''
|
931
|
993
|
}
|
932
|
|
- if (key[id] == 0) {
|
|
994
|
+ if (key[id] === 0) {
|
933
|
995
|
return ''
|
934
|
996
|
}
|
935
|
|
- if (key[id] == undefined) {
|
|
997
|
+ if (key[id] === undefined) {
|
936
|
998
|
return ''
|
937
|
999
|
}
|
938
|
1000
|
for (let i = 0; i < this.adminUser.length; i++) {
|
939
|
|
- if (this.adminUser[i].id == key[id]) {
|
|
1001
|
+ if (this.adminUser[i].id === key[id]) {
|
940
|
1002
|
return this.adminUser[i].name
|
941
|
1003
|
}
|
942
|
1004
|
}
|
943
|
1005
|
},
|
|
1006
|
+
|
944
|
1007
|
getName(id) {
|
945
|
|
- for (let i = 0; i < this.allName.length; i++) {
|
946
|
|
- if (this.allName[i].id === id) {
|
947
|
|
- return this.allName[i].name
|
|
1008
|
+ // console.log('签名', this.operatorMaps)
|
|
1009
|
+ for (let i = 0; i < this.adminUser.length; i++) {
|
|
1010
|
+ if (this.adminUser[i].id === id) {
|
|
1011
|
+ return this.adminUser[i].name
|
948
|
1012
|
}
|
949
|
1013
|
}
|
950
|
1014
|
},
|
|
@@ -990,6 +1054,16 @@ export default {
|
990
|
1054
|
},
|
991
|
1055
|
getNumber: function(record) {
|
992
|
1056
|
console.log(record)
|
|
1057
|
+ },
|
|
1058
|
+ getLastAfterWeight(id, assessmentDate) {
|
|
1059
|
+ getLastAfterWeight(id, assessmentDate).then(response => {
|
|
1060
|
+ if (response.data.state === 1) {
|
|
1061
|
+ var weight = response.data.data.weight
|
|
1062
|
+
|
|
1063
|
+ this.lastAfterWeight = weight.weight_after.toFixed(1)
|
|
1064
|
+ console.log('weight', weight)
|
|
1065
|
+ }
|
|
1066
|
+ })
|
993
|
1067
|
}
|
994
|
1068
|
}
|
995
|
1069
|
}
|