|
@@ -47,7 +47,7 @@
|
47
|
47
|
<div class="inline_block">
|
48
|
48
|
透析号:
|
49
|
49
|
<div class="under_line" style="width: 70px;text-align: center;">
|
50
|
|
- {{'/'}}
|
|
50
|
+ {{record.patient.dialysis_no}}
|
51
|
51
|
</div>
|
52
|
52
|
</div>
|
53
|
53
|
<div class="inline_block" style="margin-left: 5px;">
|
|
@@ -59,7 +59,7 @@
|
59
|
59
|
{{'/'}}
|
60
|
60
|
</div>
|
61
|
61
|
</div>
|
62
|
|
-
|
|
62
|
+
|
63
|
63
|
</div>
|
64
|
64
|
<div class="row" >
|
65
|
65
|
<div class="inline_block" >
|
|
@@ -76,7 +76,7 @@
|
76
|
76
|
</div>
|
77
|
77
|
</div>
|
78
|
78
|
|
79
|
|
- <div class="row" :class="record.totallength> 14? 'margin-bottom-300':''">
|
|
79
|
+ <div class="row" :class="record.totallength> 14? 'margin-bottom-300':''">
|
80
|
80
|
<table class="proj_table">
|
81
|
81
|
<tbody>
|
82
|
82
|
<tr><td colspan="2" style="letter-spacing:5px;text-align:center;font-weight:520;font-size:16px;padding: 6px 8px;line-height: 30px;">透析前情况</td></tr>
|
|
@@ -160,11 +160,11 @@
|
160
|
160
|
<div class="inline_block" style="margin-left:10px;flex:1;">
|
161
|
161
|
穿刺方式:
|
162
|
162
|
<div class="under_line" style="width: 100px;text-align: center" v-if="!record.assessment_before_dislysis">
|
163
|
|
-
|
|
163
|
+
|
164
|
164
|
</div>
|
165
|
165
|
<div v-if="record.assessment_before_dislysis" style="display: inline-block;">
|
166
|
166
|
<div class="under_line" style="width: 100px;text-align: center" v-if="record.assessment_before_dislysis.puncture_way == 0">
|
167
|
|
-
|
|
167
|
+
|
168
|
168
|
</div>
|
169
|
169
|
<div class="under_line" style="width: 100px;text-align: center" v-if="record.assessment_before_dislysis.puncture_way == 1">
|
170
|
170
|
绳梯
|
|
@@ -188,11 +188,11 @@
|
188
|
188
|
<div class="inline_block" style="flex:1;">
|
189
|
189
|
透析方式:
|
190
|
190
|
<div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="!record.prescription">
|
191
|
|
-
|
|
191
|
+
|
192
|
192
|
</div>
|
193
|
193
|
<div v-if="record.prescription" style="display: inline-block;">
|
194
|
194
|
<div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="!record.prescription.mode_id">
|
195
|
|
-
|
|
195
|
+
|
196
|
196
|
</div>
|
197
|
197
|
<div class="under_line" style="width: 100px;text-align: center;font-weight:600;" v-if="record.prescription.mode_id==1">
|
198
|
198
|
HD
|
|
@@ -376,7 +376,7 @@
|
376
|
376
|
<td width="60">透析液温度(°C)</td>
|
377
|
377
|
<td width="50">电导度<br/>(ms/cm)</td>
|
378
|
378
|
<td width="50">超滤量<br/>(ml)</td>
|
379
|
|
- <td width="200">病情变化及处理</td>
|
|
379
|
+ <td width="200">病情变化及处理</td>
|
380
|
380
|
</tr>
|
381
|
381
|
<tr v-for="(monitor_record,index) in record.monitor_records" :key="index">
|
382
|
382
|
<td>{{getTime(monitor_record.operate_time,'{h}:{i}')}}</td>
|
|
@@ -389,16 +389,16 @@
|
389
|
389
|
<td>{{monitor_record.dialysate_temperature?monitor_record.dialysate_temperature:''}}</td>
|
390
|
390
|
<td>{{monitor_record.sodium_concentration?monitor_record.sodium_concentration:''}}</td>
|
391
|
391
|
<td>{{monitor_record.ultrafiltration_volume?monitor_record.ultrafiltration_volume:0}}</td>
|
392
|
|
-
|
|
392
|
+
|
393
|
393
|
<td style="line-height:16px;padding:0px;">
|
394
|
394
|
<div style="height:40px;line-height:20px; overflow:hidden;">
|
395
|
395
|
<span style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">
|
396
|
396
|
<template v-if="index == 0">【开始透析】</template>
|
397
|
397
|
<template v-if="(index == monitor_record.length - 1) && index > 1">【结束透析】</template>
|
398
|
|
- {{monitor_record.symptom}} {{monitor_record.dispose}} {{monitor_record.result}}
|
399
|
|
- </span>
|
|
398
|
+ {{monitor_record.symptom}} {{monitor_record.dispose}} {{monitor_record.result}}
|
|
399
|
+ </span>
|
400
|
400
|
</div>
|
401
|
|
- </td>
|
|
401
|
+ </td>
|
402
|
402
|
</tr>
|
403
|
403
|
<tr v-for="(monitor_record,index) in record.monitor_records2" :key="index">
|
404
|
404
|
<td> </td>
|
|
@@ -414,10 +414,10 @@
|
414
|
414
|
<td style="line-height:16px;padding:0px;">
|
415
|
415
|
<div style="height:40px;line-height:20px; overflow:hidden;">
|
416
|
416
|
<span style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">
|
417
|
|
-
|
418
|
|
- </span>
|
|
417
|
+
|
|
418
|
+ </span>
|
419
|
419
|
</div>
|
420
|
|
- </td>
|
|
420
|
+ </td>
|
421
|
421
|
</tr>
|
422
|
422
|
</tbody>
|
423
|
423
|
</table>
|
|
@@ -530,7 +530,7 @@
|
530
|
530
|
<div class="inline_block">
|
531
|
531
|
透析号:
|
532
|
532
|
<div class="under_line" style="width: 70px;text-align: center;">
|
533
|
|
- {{'/'}}
|
|
533
|
+ {{record.patient.dialysis_no}}
|
534
|
534
|
</div>
|
535
|
535
|
</div>
|
536
|
536
|
<div class="inline_block" style="margin-left: 5px;">
|
|
@@ -542,7 +542,7 @@
|
542
|
542
|
{{'/'}}
|
543
|
543
|
</div>
|
544
|
544
|
</div>
|
545
|
|
-
|
|
545
|
+
|
546
|
546
|
</div>
|
547
|
547
|
<div class="row" >
|
548
|
548
|
<div class="inline_block" >
|
|
@@ -691,7 +691,7 @@
|
691
|
691
|
</div>
|
692
|
692
|
</div>
|
693
|
693
|
<div class="under_line" style="width: 80px;text-align: left" v-if="!record.check">
|
694
|
|
-
|
|
694
|
+
|
695
|
695
|
</div>
|
696
|
696
|
</div>
|
697
|
697
|
<div class="inline_block" style="flex:1;">
|
|
@@ -715,8 +715,8 @@
|
715
|
715
|
</tr>
|
716
|
716
|
</tbody>
|
717
|
717
|
</table>
|
718
|
|
-
|
719
|
|
-
|
|
718
|
+
|
|
719
|
+
|
720
|
720
|
</div>
|
721
|
721
|
</div>
|
722
|
722
|
</div>
|
|
@@ -846,7 +846,7 @@
|
846
|
846
|
if(recordIndex == (this.records.length - 1)){
|
847
|
847
|
this.records[recordIndex].classname = ' '
|
848
|
848
|
}
|
849
|
|
-
|
|
849
|
+
|
850
|
850
|
|
851
|
851
|
this.records[recordIndex].monitor_records2 = []
|
852
|
852
|
if (this.records[recordIndex].monitor_records && this.records[recordIndex].monitor_records.length < 7) {
|
|
@@ -912,7 +912,7 @@
|
912
|
912
|
this.doctor_advices[index]['isShow'] = 2
|
913
|
913
|
}
|
914
|
914
|
|
915
|
|
-
|
|
915
|
+
|
916
|
916
|
|
917
|
917
|
// if (this.doctor_advices.length > 0) {
|
918
|
918
|
// var group = this.newAdviceGroupObject()
|
|
@@ -1051,11 +1051,11 @@
|
1051
|
1051
|
// }
|
1052
|
1052
|
// }
|
1053
|
1053
|
// }
|
1054
|
|
-
|
|
1054
|
+
|
1055
|
1055
|
if (this.doctor_advices.length <= 6) {
|
1056
|
1056
|
var nl = 6
|
1057
|
1057
|
this.print_length = 6
|
1058
|
|
-
|
|
1058
|
+
|
1059
|
1059
|
for (let index = 0; index < nl; index++) {
|
1060
|
1060
|
if (this.doctor_advices[index] == undefined || this.doctor_advices[index].length <= 0) {
|
1061
|
1061
|
this.doctor_advices.push([])
|
|
@@ -1071,7 +1071,7 @@
|
1071
|
1071
|
|
1072
|
1072
|
this.records[recordIndex].totallength= this.doctor_advices.length + this.monitor_records.length
|
1073
|
1073
|
}
|
1074
|
|
-
|
|
1074
|
+
|
1075
|
1075
|
|
1076
|
1076
|
this.operators = resp.data.medical_staffs
|
1077
|
1077
|
if (this.operators.length > 0) {
|