|
|
|
|
165
|
<div class="inline_block" style="margin-left:90px;">
|
165
|
<div class="inline_block" style="margin-left:90px;">
|
166
|
体重增加:
|
166
|
体重增加:
|
167
|
<div class="under_line" style="width: 50px;text-align: center">
|
167
|
<div class="under_line" style="width: 50px;text-align: center">
|
168
|
- {{ predialysis.dry_weight ? predialysis.dry_weight : "/" }}
|
|
|
|
|
168
|
+ {{ predialysis.weight_before > 0 && lastafterdialysis.weight_after > 0 ? parseFloat(predialysis.weight_before - lastafterdialysis.weight_after).toFixed(2): "/" }}
|
169
|
</div>
|
169
|
</div>
|
170
|
kg
|
170
|
kg
|
171
|
</div>
|
171
|
</div>
|
|
|
|
|
574
|
<tbody>
|
574
|
<tbody>
|
575
|
<tr>
|
575
|
<tr>
|
576
|
<td colspan="9" style="letter-spacing:5px;text-align:center;font-weight:520;font-size:16px;padding: 6px 8px;line-height: 30px;">
|
576
|
<td colspan="9" style="letter-spacing:5px;text-align:center;font-weight:520;font-size:16px;padding: 6px 8px;line-height: 30px;">
|
577
|
- 检测记录
|
|
|
|
|
577
|
+ 监测记录
|
578
|
</td>
|
578
|
</td>
|
579
|
</tr>
|
579
|
</tr>
|
580
|
<tr>
|
580
|
<tr>
|
|
|
|
|
611
|
<td style="line-height:16px;padding:0px;">
|
611
|
<td style="line-height:16px;padding:0px;">
|
612
|
<div style="min-height:35px;line-height:35px; overflow:hidden;">
|
612
|
<div style="min-height:35px;line-height:35px; overflow:hidden;">
|
613
|
<span v-if="getTime(monitor.operate_time, '{h}:{i}')" style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">
|
613
|
<span v-if="getTime(monitor.operate_time, '{h}:{i}')" style="word-break: break-all;margin:0;line-height:16px;-webkit-line-clamp:3;overflow:visible;display:inline-block;vertical-align:middle;height:auto;">
|
614
|
- <template v-if="(dialysisOrder && monitor.operate_time == dialysisOrder.start_time)">【开始透析】</template>
|
|
|
|
|
614
|
+ <template v-if="(dialysisOrder && monitor.operate_time == dialysisOrder.start_time)">【开始透析】引血100ml/min</template>
|
615
|
{{ monitor.end }} {{ monitor.symptom }} {{ monitor.dispose }} {{ monitor.result }}
|
615
|
{{ monitor.end }} {{ monitor.symptom }} {{ monitor.dispose }} {{ monitor.result }}
|
616
|
</span>
|
616
|
</span>
|
617
|
</div>
|
617
|
</div>
|
618
|
</td>
|
618
|
</td>
|
619
|
</tr>
|
619
|
</tr>
|
|
|
620
|
+ <tr>
|
|
|
621
|
+ <td colspan="9" style="line-height:25px;text-align:left;">
|
|
|
622
|
+ 医师记录:{{ summary.special_record ? summary.special_record : '' }}
|
|
|
623
|
+ </td>
|
|
|
624
|
+ </tr>
|
620
|
</tbody>
|
625
|
</tbody>
|
621
|
</table>
|
626
|
</table>
|
622
|
</td>
|
627
|
</td>
|
|
|
|
|
1191
|
this.monitors[index].end = ''
|
1196
|
this.monitors[index].end = ''
|
1192
|
if (Object.keys(monitor).length > 0 && index > 1) {
|
1197
|
if (Object.keys(monitor).length > 0 && index > 1) {
|
1193
|
if (this.dialysisOrder && monitor.operate_time == this.dialysisOrder.end_time) {
|
1198
|
if (this.dialysisOrder && monitor.operate_time == this.dialysisOrder.end_time) {
|
1194
|
- this.monitors[index].end = '【结束透析】'
|
|
|
|
|
1199
|
+ this.monitors[index].end = '【结束透析】回血100ml/min'
|
1195
|
tempmonitorflag = false
|
1200
|
tempmonitorflag = false
|
1196
|
}
|
1201
|
}
|
1197
|
if (tempmonitorflag && index == this.monitors.length - 1) {
|
1202
|
if (tempmonitorflag && index == this.monitors.length - 1) {
|
1198
|
- this.monitors[index].end = '【结束透析】'
|
|
|
|
|
1203
|
+ this.monitors[index].end = '【结束透析】回血100ml/min'
|
1199
|
}
|
1204
|
}
|
1200
|
}
|
1205
|
}
|
1201
|
}
|
1206
|
}
|