|
@@ -98,34 +98,34 @@
|
98
|
98
|
</td>
|
99
|
99
|
</tr>
|
100
|
100
|
<tr>
|
101
|
|
- <td style="text-align:left;" colspan="2">
|
|
101
|
+ <td style="text-align:left;" colspan="1">
|
102
|
102
|
<span style="display:inline-block;margin-left:15px;">干体重:
|
103
|
103
|
{{
|
104
|
104
|
predialysis.dry_weight ? predialysis.dry_weight : "/"
|
105
|
105
|
}}kg</span>
|
106
|
106
|
</td>
|
107
|
|
- <td style="text-align:left;" colspan="2">
|
108
|
|
- <span style="display:inline-block;margin-left:15px;">电导率:{{prescription.conductivity?prescription.conductivity:"0"}}(mS/cm)</span>
|
|
107
|
+ <td style="text-align:left;" colspan="1">
|
|
108
|
+ <span style="display:inline-block;margin-left:15px;">电导率:{{prescription.conductivity?prescription.conductivity:"/"}} (mS/cm)</span>
|
109
|
109
|
</td>
|
110
|
110
|
<td style="text-align:left;" colspan="2">
|
111
|
111
|
<span style="display:inline-block;margin-left:15px;">钙:
|
112
|
|
- {{ prescription.calcium ? prescription.calcium : "0" }}mmol/L</span>
|
|
112
|
+ {{ prescription.calcium ? prescription.calcium : "/" }} mmol/L</span>
|
113
|
113
|
</td>
|
114
|
|
- <td style="text-align:left;" colspan="2">
|
|
114
|
+ <td style="text-align:left;" colspan="4">
|
115
|
115
|
<span style="display:inline-block;margin-left:15px;"
|
116
|
|
- >透析液温度:{{prescription.dialysate_temperature?prescription.dialysate_temperature:"0"}}℃</span
|
|
116
|
+ >透析液温度:{{prescription.dialysate_temperature?prescription.dialysate_temperature:"/"}} ℃</span
|
117
|
117
|
>
|
118
|
118
|
</td>
|
119
|
119
|
</tr>
|
120
|
120
|
<tr>
|
121
|
121
|
<td style="text-align:left;" colspan="1">
|
122
|
122
|
<span style="display:inline-block;margin-left:15px;"
|
123
|
|
- >透前体重:{{weight_before}}kg</span
|
|
123
|
+ >透前体重:{{predialysis.weight_before?predialysis.weight_before:"/"}}kg</span
|
124
|
124
|
>
|
125
|
125
|
</td>
|
126
|
126
|
<td style="text-align:left;" colspan="1">
|
127
|
127
|
<span style="display:inline-block;margin-left:15px;"
|
128
|
|
- >目标超滤量:{{prescription.target_ultrafiltration?prescription.target_ultrafiltration:"0"}}L</span
|
|
128
|
+ >设定脱水量:{{prescription.target_ultrafiltration?prescription.target_ultrafiltration:"/"}}L</span
|
129
|
129
|
>
|
130
|
130
|
</td>
|
131
|
131
|
<td style="text-align:left;" colspan="2">
|
|
@@ -142,7 +142,7 @@
|
142
|
142
|
{{
|
143
|
143
|
prescription.anticoagulant_shouji
|
144
|
144
|
? prescription.anticoagulant_shouji
|
145
|
|
- : "0"
|
|
145
|
+ : "/"
|
146
|
146
|
}}</span>
|
147
|
147
|
<span v-if="prescription.anticoagulant == 4">mg</span>
|
148
|
148
|
<span v-if="prescription.anticoagulant == 3">iu</span>
|
|
@@ -155,7 +155,7 @@
|
155
|
155
|
{{
|
156
|
156
|
prescription.anticoagulant_weichi
|
157
|
157
|
? prescription.anticoagulant_weichi
|
158
|
|
- : "0"
|
|
158
|
+ : "/"
|
159
|
159
|
}}
|
160
|
160
|
</span>
|
161
|
161
|
<span v-if="prescription.anticoagulant == 5">ml/h</span>
|
|
@@ -169,7 +169,7 @@
|
169
|
169
|
{{
|
170
|
170
|
prescription.anticoagulant_zongliang
|
171
|
171
|
? prescription.anticoagulant_zongliang
|
172
|
|
- : "0"
|
|
172
|
+ : "/"
|
173
|
173
|
}}
|
174
|
174
|
</span>
|
175
|
175
|
<span v-if="prescription.anticoagulant == 4">mg</span>
|
|
@@ -179,7 +179,7 @@
|
179
|
179
|
</td>
|
180
|
180
|
</tr>
|
181
|
181
|
<tr>
|
182
|
|
- <td style="text-align:left;" colspan="2">
|
|
182
|
+ <td style="text-align:left;" colspan="1">
|
183
|
183
|
<span style="display:inline-block;margin-left:15px;"
|
184
|
184
|
>透后体重:
|
185
|
185
|
{{
|
|
@@ -188,11 +188,11 @@
|
188
|
188
|
afterdialysis.weight_after -
|
189
|
189
|
afterdialysis.additional_weight
|
190
|
190
|
).toFixed(1)
|
191
|
|
- : "0"}}kg</span>
|
|
191
|
+ : "/"}}kg</span>
|
192
|
192
|
</td>
|
193
|
|
- <td style="text-align:left;" colspan="5">
|
|
193
|
+ <td style="text-align:left;" colspan="6">
|
194
|
194
|
<span style="display:inline-block;margin-left:15px;"
|
195
|
|
- >实际超滤量:{{afterdialysis.actual_ultrafiltration?afterdialysis.actual_ultrafiltration:"0"}}L</span
|
|
195
|
+ >实际脱水量:{{afterdialysis.actual_ultrafiltration?afterdialysis.actual_ultrafiltration:"/"}}L</span
|
196
|
196
|
>
|
197
|
197
|
</td>
|
198
|
198
|
</tr>
|
|
@@ -340,8 +340,7 @@
|
340
|
340
|
</tr>
|
341
|
341
|
<tr>
|
342
|
342
|
<td colspan="8" style="text-align:left;" >
|
343
|
|
- <span
|
344
|
|
- >血管通路:
|
|
343
|
+ <span style="display:inline-block;margin-left:15px;">血管通路:
|
345
|
344
|
<check-box text="正常" :checked="predialysis.blood_access_internal_fistula.indexOf('正常')>-1?true:false"></check-box>
|
346
|
345
|
<check-box text="震颤" :checked="predialysis.blood_access_internal_fistula.indexOf('震颤')>-1?true:false"></check-box>
|
347
|
346
|
<check-box text="堵塞" :checked="predialysis.blood_access_internal_fistula.indexOf('堵塞')>-1?true:false"></check-box>
|
|
@@ -355,7 +354,7 @@
|
355
|
354
|
</tr>
|
356
|
355
|
<tr>
|
357
|
356
|
<td colspan="8" style="text-align:left;" >
|
358
|
|
- 中心静脉导管:
|
|
357
|
+ <span style="display:inline-block;margin-left:15px;">中心静脉导管:</span>
|
359
|
358
|
<check-box text="正常" :checked="predialysis.ductus_arantii.indexOf('正常')>-1?true:false"></check-box>
|
360
|
359
|
<check-box text="不畅" :checked="predialysis.ductus_arantii.indexOf('不畅')>-1?true:false"></check-box>
|
361
|
360
|
<check-box text="血流不足" :checked="predialysis.ductus_arantii.indexOf('血流不足')>-1?true:false"></check-box>
|
|
@@ -370,7 +369,7 @@
|
370
|
369
|
</tr>
|
371
|
370
|
<tr>
|
372
|
371
|
<td style="text-align:left;" colspan="8" >
|
373
|
|
- <span>血管通路皮肤:
|
|
372
|
+ <span style="display:inline-block;margin-left:15px;">血管通路皮肤:
|
374
|
373
|
<label-box :isChecked="predialysis.internal_fistula_skin.indexOf('正常')>-1?true:false"
|
375
|
374
|
showValue='正常'></label-box>
|
376
|
375
|
|
|
@@ -388,7 +387,7 @@
|
388
|
387
|
</tr>
|
389
|
388
|
<tr>
|
390
|
389
|
<td style="text-align:left;" colspan="8">
|
391
|
|
- <span>皮肤:</span>
|
|
390
|
+ <span style="display:inline-block;margin-left:15px;">皮肤:</span>
|
392
|
391
|
<check-box text="完整" :checked="predialysis.skin==1?true:false"></check-box>
|
393
|
392
|
<check-box text="干燥" :checked="predialysis.skin==2?true:false"></check-box>
|
394
|
393
|
<check-box text="瘙痒" :checked="predialysis.skin==3?true:false"></check-box>
|
|
@@ -402,7 +401,7 @@
|
402
|
401
|
</tr>
|
403
|
402
|
<tr>
|
404
|
403
|
<td style="text-align:left;" colspan="8">
|
405
|
|
- 出血影响因素:
|
|
404
|
+ <span style="display:inline-block;margin-left:15px;">出血影响因素:</span>
|
406
|
405
|
<check-box text="无" :checked="predialysis.is_hemorrhage==2?true:false"></check-box>
|
407
|
406
|
<check-box text="异常" :checked="predialysis.is_hemorrhage==1?true:false"></check-box>
|
408
|
407
|
|
|
@@ -415,7 +414,7 @@
|
415
|
414
|
</tr>
|
416
|
415
|
<tr>
|
417
|
416
|
<td style="text-align:left;" colspan="8">
|
418
|
|
- 使用特殊药物性:
|
|
417
|
+ <span style="display:inline-block;margin-left:15px;">使用特殊药物性:</span>
|
419
|
418
|
</label-box>
|
420
|
419
|
</label-box>
|
421
|
420
|
<label-box
|
|
@@ -441,7 +440,7 @@
|
441
|
440
|
</tr>
|
442
|
441
|
<tr>
|
443
|
442
|
<td style="text-align:left;" colspan="8">
|
444
|
|
- 跌倒风险:
|
|
443
|
+ <span style="display:inline-block;margin-left:15px;">跌倒风险:</span>
|
445
|
444
|
<check-box text="无" :checked="receiverTreatmentAccess.danger_level == 1?true:false"></check-box>
|
446
|
445
|
<check-box text="低风险" :checked="receiverTreatmentAccess.danger_level == 2?true:false"></check-box>
|
447
|
446
|
<check-box text="中度风险" :checked="receiverTreatmentAccess.danger_level == 3?true:false"></check-box>
|
|
@@ -456,18 +455,18 @@
|
456
|
455
|
</table>
|
457
|
456
|
<table class="print-table" border="1">
|
458
|
457
|
<tr>
|
459
|
|
- <th><p style="height:20px;line-height:20px">时间</p><p style="height:20px;line-height:20px"></p></th>
|
460
|
|
- <th><p style="height:20px;line-height:20px">血压</p><p style="height:20px;line-height:20px">(mmHg)</p></th>
|
461
|
|
- <th><p style="height:20px;line-height:20px">心率</p><p style="height:20px;line-height:20px">次/分</p></th>
|
462
|
|
- <th><p style="height:20px;line-height:20px">血流量</p><p style="height:20px;line-height:20px">ml/min</p></th>
|
463
|
|
- <th><p style="height:20px;line-height:20px">动脉压</p><p style="height:20px;line-height:20px">(mmHg)</p></th>
|
464
|
|
- <th><p style="height:20px;line-height:20px">静脉压</p><p style="height:20px;line-height:20px">(mmHg)</p></th>
|
465
|
|
- <th><p style="height:20px;line-height:20px">跨膜压</p><p style="height:20px;line-height:20px">(mmHg)</p></th>
|
466
|
|
- <th><p style="height:20px;line-height:20px">超滤率</p><p style="height:20px;line-height:20px">L/h</p></th>
|
467
|
|
- <th><p style="height:20px;line-height:20px">超滤量</p><p style="height:20px;line-height:20px">L</p></th>
|
468
|
|
- <th><p style="height:20px;line-height:20px">NA⁺</p><p style="height:20px;line-height:20px"></p></th>
|
469
|
|
- <th><p style="height:20px;line-height:20px">病情变化及处理</p></th>
|
470
|
|
- <th><p style="height:20px;line-height:20px">护士签名核对者</p></th>
|
|
458
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">时间</p><p style="height:20px;line-height:20px"></p></th>
|
|
459
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">血压</p><p style="height:20px;line-height:20px">(mmHg)</p></th>
|
|
460
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">心率</p><p style="height:20px;line-height:20px">次/分</p></th>
|
|
461
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">血流量</p><p style="height:20px;line-height:20px">ml/min</p></th>
|
|
462
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">动脉压</p><p style="height:20px;line-height:20px">(mmHg)</p></th>
|
|
463
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">静脉压</p><p style="height:20px;line-height:20px">(mmHg)</p></th>
|
|
464
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">跨膜压</p><p style="height:20px;line-height:20px">(mmHg)</p></th>
|
|
465
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">超滤率</p><p style="height:20px;line-height:20px">L/h</p></th>
|
|
466
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">超滤量</p><p style="height:20px;line-height:20px">L</p></th>
|
|
467
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">NA⁺</p><p style="height:20px;line-height:20px"></p></th>
|
|
468
|
+ <th style="min-width:60px"><p style="height:20px;line-height:20px">病情变化及处理</p></th>
|
|
469
|
+ <th style="min-width:110px"><p style="height:20px;line-height:20px">护士签名核对者</p></th>
|
471
|
470
|
</tr>
|
472
|
471
|
<tr v-for="(monitor, monindex) in monitors" :key="monindex">
|
473
|
472
|
<td>{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
|
|
@@ -503,12 +502,12 @@
|
503
|
502
|
</tr>
|
504
|
503
|
<tr>
|
505
|
504
|
<td style="text-align:left;" colspan="12">
|
506
|
|
- 透析护理记录:
|
|
505
|
+ <span style="display:inline-block;margin-left:15px;">透析护理记录:</span>
|
507
|
506
|
</td>
|
508
|
507
|
</tr>
|
509
|
508
|
<tr>
|
510
|
509
|
<td style="text-align:left;" colspan="12">
|
511
|
|
- <span>透后评估:
|
|
510
|
+ <span style="display:inline-block;margin-left:15px;">透后评估:
|
512
|
511
|
透析过程:
|
513
|
512
|
<check-box text="完成" :checked="afterdialysis.dialysis_process==1?true:false"></check-box>
|
514
|
513
|
<check-box text="提前" :checked="afterdialysis.dialysis_process==2?true:false"></check-box>
|
|
@@ -540,7 +539,7 @@
|
540
|
539
|
</tr>
|
541
|
540
|
<tr>
|
542
|
541
|
<td style="text-align:left;" colspan="12">
|
543
|
|
- <span>内瘘搏动及震颤音:
|
|
542
|
+ <span style="display:inline-block;margin-left:15px;">内瘘搏动及震颤音:
|
544
|
543
|
<check-box text="存在" :checked="afterdialysis.tremor_noise==1?true:false"></check-box>
|
545
|
544
|
<check-box text="减弱" :checked="afterdialysis.tremor_noise==2?true:false"></check-box>
|
546
|
545
|
<check-box text="不存在" :checked="afterdialysis.tremor_noise==3?true:false"></check-box>
|
|
@@ -555,7 +554,7 @@
|
555
|
554
|
</tr>
|
556
|
555
|
<tr>
|
557
|
556
|
<td style="text-align:left;" colspan="11">
|
558
|
|
- <span>
|
|
557
|
+ <span style="display:inline-block;margin-left:15px;">
|
559
|
558
|
透析中进食:
|
560
|
559
|
<check-box text="无" :checked="afterdialysis.dialysis_intakes == 0?true:false"></check-box>
|
561
|
560
|
<check-box text="有" :checked="afterdialysis.dialysis_intakes > 0 ?true:false"></check-box>
|
|
@@ -629,23 +628,23 @@
|
629
|
628
|
</tr>
|
630
|
629
|
<tr>
|
631
|
630
|
<td style="text-align:left;" colspan="6">
|
632
|
|
- <span>特殊记录:{{mission}}{{dialysis_summary}}}</span>
|
|
631
|
+ <span style="display:inline-block;margin-left:15px;">特殊记录:{{mission}}{{dialysis_summary}}}</span>
|
633
|
632
|
</td>
|
634
|
633
|
</tr>
|
635
|
634
|
<tr>
|
636
|
635
|
<td style="text-align:left;" colspan="6">
|
637
|
|
- <span v-if="doctorForm.url === ''">
|
|
636
|
+ <span v-if="doctorForm.url === ''" style="display:inline-block;margin-left:15px;">
|
638
|
637
|
医生签名:{{doctorForm.doctor}}
|
639
|
638
|
</span>
|
640
|
|
- <span v-if="doctorForm.url!==''">
|
|
639
|
+ <span v-if="doctorForm.url!==''" style="display:inline-block;margin-left:15px;">
|
641
|
640
|
医生签名:
|
642
|
641
|
<img style="height:20px" :src="doctorForm.url">
|
643
|
642
|
</span>
|
644
|
643
|
</td>
|
645
|
644
|
</tr>
|
646
|
645
|
</table>
|
647
|
|
- <div>
|
648
|
|
- <span style="margin-left:280px">肝素浓度:每毫升肝素生理盐水含肝素钠2.5毫克</span>
|
|
646
|
+ <div style="margin-top:20px">
|
|
647
|
+ <span style="margin-left:280px;">肝素浓度:每毫升肝素生理盐水含肝素钠2.5毫克</span>
|
649
|
648
|
</div>
|
650
|
649
|
</div>
|
651
|
650
|
</div>
|
|
@@ -975,7 +974,7 @@ export default {
|
975
|
974
|
var predialysName = response.data.data.predialysName
|
976
|
975
|
this.blood_access_part_opera_id = predialysName.name
|
977
|
976
|
// console.log('血管', predialysName)
|
978
|
|
- this.weight_before = predialysis.weight_before
|
|
977
|
+ // this.weight_before = predialysis.weight_before
|
979
|
978
|
this.dry_weight = predialysis.dry_weight
|
980
|
979
|
this.weight_gain = predialysis.weight_gain
|
981
|
980
|
this.blood_access_internal_fistula =
|
|
@@ -1468,17 +1467,10 @@ export default {
|
1468
|
1467
|
return ''
|
1469
|
1468
|
},
|
1470
|
1469
|
getAge: function(val) {
|
1471
|
|
- if (
|
1472
|
|
- this.org_template_info.template_id == 2 ||
|
1473
|
|
- this.org_template_info.template_id == 0
|
1474
|
|
- ) {
|
1475
|
|
- if (val.age == 0) {
|
1476
|
|
- return jsGetAge(val.birth, '-')
|
1477
|
|
- } else {
|
1478
|
|
- return val.age
|
1479
|
|
- }
|
1480
|
|
- } else {
|
|
1470
|
+ if (val.birthday != 0) {
|
1481
|
1471
|
return jsGetAge(val.birth, '-')
|
|
1472
|
+ } else {
|
|
1473
|
+ return ''
|
1482
|
1474
|
}
|
1483
|
1475
|
},
|
1484
|
1476
|
newAdviceGroupObject: function() {
|