Browse Source

修改动脉压和静脉压位置

csx 5 years ago
parent
commit
82eb2ea89c

+ 2 - 2
src/pages/main/dialog/MonitDialog.vue View File

@@ -23,7 +23,7 @@
23 23
                 <th width="80px">心率(次/分)</th>
24 24
                 <th width="110px">呼吸(次/分)</th>
25 25
                 <th width="92px">血流量(ml/min)</th>
26
-                <th width="76px">静脉压(mmHg)</th>
26
+                <th width="76px">静脉压/动脉压(mmHg)</th>
27 27
                 <th width="76px">跨膜压(mmHg)</th>
28 28
                 <th width="76px">超滤量(L)</th>
29 29
                 <th width="92px">钠浓度(mmol/L)</th>
@@ -40,7 +40,7 @@
40 40
                 <td>{{item.pulse_frequency?item.pulse_frequency:""}}</td>
41 41
                 <td>{{item.breathing_rate?item.breathing_rate:""}}</td>
42 42
                 <td>{{item.blood_flow_volume?item.blood_flow_volume:""}}</td>
43
-                <td>{{item.venous_pressure?item.venous_pressure:""}}</td>
43
+                <td>{{item.venous_pressure?item.venous_pressure:""}}/{{item.arterial_pressure?item.item:""}}</td>
44 44
                 <td>{{item.transmembrane_pressure?item.transmembrane_pressure:""}}</td>
45 45
                 <td>{{item.ultrafiltration_volume?item.ultrafiltration_volume:""}}</td>
46 46
                 <td>{{item.sodium_concentration?item.sodium_concentration:""}}</td>

+ 7 - 7
src/pages/main/today/dialysisMonitoring.vue View File

@@ -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