|
@@ -1,6 +1,6 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div class="plate-box" >
|
3
|
|
- <h2 class="title border"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
|
|
3
|
+ <h2 class="title border"><span class="line"></span><p>{{title}}</p><span class="line"></span> </h2>
|
4
|
4
|
<div class="dm" style="width:100%;overflow:hildden;overflow-x:auto;">
|
5
|
5
|
<table class="table" style="">
|
6
|
6
|
<tr>
|
|
@@ -8,14 +8,14 @@
|
8
|
8
|
<th width="72px">血压(mmHg)</th>
|
9
|
9
|
<th width="80px">心率(次/分)</th>
|
10
|
10
|
<th width="110px">呼吸(次/分)</th>
|
11
|
|
- <th width="92px">血流量(ml/min)</th>
|
12
|
|
- <th width="76px">静脉压(mmHg)</th>
|
|
11
|
+ <th width="92px">血流量(ml/min)</th>
|
|
12
|
+ <th width="76px">静脉压/动脉压(mmHg)</th>
|
13
|
13
|
<th width="76px">跨膜压(mmHg)</th>
|
14
|
14
|
<th width="76px">超滤量(L)</th>
|
15
|
15
|
<th width="92px">钠浓度(mmol/L)</th>
|
16
|
16
|
<th width="92px">透析液温度(℃)</th>
|
17
|
17
|
<th width="92px">置换率(L/h)</th>
|
18
|
|
- <th width="92px">置换量(L)</th>
|
|
18
|
+ <th width="92px">置换量(L)</th>
|
19
|
19
|
<th width="92px">病情变化</th>
|
20
|
20
|
<th width="92px">处理</th>
|
21
|
21
|
<th width="92px">结果</th>
|
|
@@ -28,7 +28,7 @@
|
28
|
28
|
<td>{{item.pulse_frequency?item.pulse_frequency:''}}</td>
|
29
|
29
|
<td>{{item.breathing_rate?item.breathing_rate:''}}</td>
|
30
|
30
|
<td>{{item.blood_flow_volume?item.blood_flow_volume:''}}</td>
|
31
|
|
- <td>{{item.venous_pressure?item.venous_pressure:''}}</td>
|
|
31
|
+ <td>{{item.venous_pressure?item.venous_pressure:''}}/{{item.arterial_pressure?item.arterial_pressure:''}}</td>
|
32
|
32
|
<td>{{item.transmembrane_pressure?item.transmembrane_pressure:''}}</td>
|
33
|
33
|
<td>{{item.ultrafiltration_volume?item.ultrafiltration_volume:''}}</td>
|
34
|
34
|
<td>{{item.sodium_concentration?item.sodium_concentration:''}}</td>
|
|
@@ -43,7 +43,7 @@
|
43
|
43
|
<div class="NoData" v-show="tableDate.length == 0"><img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt=""></div>
|
44
|
44
|
|
45
|
45
|
</div>
|
46
|
|
- </div>
|
|
46
|
+ </div>
|
47
|
47
|
</template>
|
48
|
48
|
|
49
|
49
|
<script>
|
|
@@ -113,7 +113,7 @@ export default {
|
113
|
113
|
&::-webkit-scrollbar-corner {
|
114
|
114
|
background-color: #eee;
|
115
|
115
|
}
|
116
|
|
-
|
|
116
|
+
|
117
|
117
|
}
|
118
|
118
|
</style>
|
119
|
119
|
|