|
@@ -276,7 +276,7 @@
|
276
|
276
|
</tr>
|
277
|
277
|
<tr>
|
278
|
278
|
<td width="60">时间</td>
|
279
|
|
- <td width="60" style="height:20px;line-height:20px">血流量<br />ml/min</td>
|
|
279
|
+ <td width="80" style="height:20px;line-height:20px">血压<br />(肢)</td>
|
280
|
280
|
<td width="60" style="height:20px;line-height:20px">动脉压<br />mmHg</td>
|
281
|
281
|
<td width="60" style="height:20px;line-height:20px">静脉压<br />mmHg</td>
|
282
|
282
|
<td width="60" style="height:20px;line-height:20px">跨膜压<br />mmHg</td>
|
|
@@ -284,14 +284,18 @@
|
284
|
284
|
<td width="60" style="height:20px;line-height:20px">超滤量<br />ml</td>
|
285
|
285
|
<td width="60" style="height:20px;line-height:20px">透析液温度</td>
|
286
|
286
|
<td width="60" style="height:20px;line-height:20px">电导度<br />ms/cm</td>
|
287
|
|
- <td width="80" style="height:20px;line-height:20px">血压<br />(肢)</td>
|
288
|
287
|
<td width="">病情变化及处理</td>
|
289
|
288
|
<td width="60" style="height:20px;line-height:20px">签名</td>
|
290
|
289
|
</tr>
|
291
|
290
|
|
292
|
291
|
<tr v-for="monitor in monitors" :key="monitor.id">
|
293
|
292
|
<td style="height:32px;line-height:32px;"> {{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
|
294
|
|
- <td> {{ monitor.blood_flow_volume ? monitor.blood_flow_volume : "" }}</td>
|
|
293
|
+ <td>
|
|
294
|
+ <span v-if="monitor.systolic_blood_pressure || monitor.diastolic_blood_pressure">
|
|
295
|
+ {{ monitor.systolic_blood_pressure ? monitor.systolic_blood_pressure : "" }}/
|
|
296
|
+ {{ monitor.diastolic_blood_pressure ? monitor.diastolic_blood_pressure : "" }}
|
|
297
|
+ </span>
|
|
298
|
+ </td>
|
295
|
299
|
<td> {{ monitor.arterial_pressure ? monitor.arterial_pressure : "" }}</td>
|
296
|
300
|
<td> {{ monitor.venous_pressure ? monitor.venous_pressure : "" }}</td>
|
297
|
301
|
<td> {{ monitor.transmembrane_pressure ? monitor.transmembrane_pressure : "" }}</td>
|
|
@@ -299,12 +303,6 @@
|
299
|
303
|
<td> {{ monitor.ultrafiltration_volume ? monitor.ultrafiltration_volume : "" }}</td>
|
300
|
304
|
<td> {{monitor.dialysate_temperature ? monitor.dialysate_temperature : ''}}</td>
|
301
|
305
|
<td> {{ monitor.conductivity ? monitor.conductivity : "" }}</td>
|
302
|
|
- <td>
|
303
|
|
- <span v-if="monitor.systolic_blood_pressure || monitor.diastolic_blood_pressure">
|
304
|
|
- {{ monitor.systolic_blood_pressure ? monitor.systolic_blood_pressure : "" }}/
|
305
|
|
- {{ monitor.diastolic_blood_pressure ? monitor.diastolic_blood_pressure : "" }}
|
306
|
|
- </span>
|
307
|
|
- </td>
|
308
|
306
|
<td style="text-align:left;padding-left:10px;">
|
309
|
307
|
<div style="line-height:20px;text-align: left;display: inline-block;">
|
310
|
308
|
{{ monitor.symptom }}{{ monitor.dispose }}{{ monitor.result }}
|