Pārlūkot izejas kodu

朝阳医院添加字段

张保健 5 gadus atpakaļ
vecāks
revīzija
1ee319a209

+ 32 - 32
src/api/dialysis.js Parādīt failu

@@ -1,6 +1,6 @@
1 1
 import request from '@/utils/request'
2 2
 
3
-export function getDialysisScheduals(params) {
3
+export function getDialysisScheduals (params) {
4 4
   return request({
5 5
     url: '/m/api/scheduals',
6 6
     method: 'get',
@@ -8,7 +8,7 @@ export function getDialysisScheduals(params) {
8 8
   })
9 9
 }
10 10
 
11
-export function getWaitingScheduals(params) {
11
+export function getWaitingScheduals (params) {
12 12
   return request({
13 13
     url: '/m/api/waiting_scheduals',
14 14
     method: 'get',
@@ -16,7 +16,7 @@ export function getWaitingScheduals(params) {
16 16
   })
17 17
 }
18 18
 
19
-export function getDialysisRecord(params) {
19
+export function getDialysisRecord (params) {
20 20
   return request({
21 21
     url: '/m/api/dialysis/record',
22 22
     method: 'get',
@@ -24,14 +24,14 @@ export function getDialysisRecord(params) {
24 24
   })
25 25
 }
26 26
 
27
-export function dialysisGlobalConfig() {
27
+export function dialysisGlobalConfig () {
28 28
   return request({
29 29
     url: '/m/api/dialysisglobalconfig',
30 30
     method: 'get'
31 31
   })
32 32
 }
33 33
 
34
-export function commitTreatmentSummary(params) {
34
+export function commitTreatmentSummary (params) {
35 35
   return request({
36 36
     url: '/m/api/dialysis/treatmentSummary',
37 37
     method: 'post',
@@ -43,7 +43,7 @@ export function commitTreatmentSummary(params) {
43 43
   })
44 44
 }
45 45
 
46
-export function commitDoubleCheck(params) {
46
+export function commitDoubleCheck (params) {
47 47
   return request({
48 48
     url: '/m/api/dialysis/doublecheck',
49 49
     method: 'post',
@@ -54,7 +54,7 @@ export function commitDoubleCheck(params) {
54 54
   })
55 55
 }
56 56
 
57
-export function commitAcceptsAssessment(params) {
57
+export function commitAcceptsAssessment (params) {
58 58
   return request({
59 59
     url: '/m/api/dialysis/acceptsAssessment',
60 60
     method: 'post',
@@ -66,7 +66,7 @@ export function commitAcceptsAssessment(params) {
66 66
   })
67 67
 }
68 68
 
69
-export function finish(params) {
69
+export function finish (params) {
70 70
   return request({
71 71
     url: '/m/api/dialysis/finish',
72 72
     method: 'post',
@@ -78,7 +78,7 @@ export function finish(params) {
78 78
   })
79 79
 }
80 80
 
81
-export function commitDialysisPrescription(params) {
81
+export function commitDialysisPrescription (params) {
82 82
   console.log('params', params)
83 83
   return request({
84 84
     url: '/m/api/dialysis/dialysisPrescription',
@@ -91,7 +91,7 @@ export function commitDialysisPrescription(params) {
91 91
   })
92 92
 }
93 93
 
94
-export function commitAssessmentAfterDislysis(params) {
94
+export function commitAssessmentAfterDislysis (params) {
95 95
   return request({
96 96
     url: '/m/api/dialysis/assessmentAfterDislysis',
97 97
     method: 'post',
@@ -103,7 +103,7 @@ export function commitAssessmentAfterDislysis(params) {
103 103
   })
104 104
 }
105 105
 
106
-export function addMonitorRecord(params) {
106
+export function addMonitorRecord (params) {
107 107
   return request({
108 108
     url: '/m/api/monitor/add',
109 109
     method: 'post',
@@ -115,7 +115,7 @@ export function addMonitorRecord(params) {
115 115
   })
116 116
 }
117 117
 
118
-export function editMonitorRecord(params) {
118
+export function editMonitorRecord (params) {
119 119
   console.log('params', params)
120 120
   return request({
121 121
     url: '/m/api/monitor/edit',
@@ -128,7 +128,7 @@ export function editMonitorRecord(params) {
128 128
   })
129 129
 }
130 130
 
131
-export function deleteMonitorRecord(params) {
131
+export function deleteMonitorRecord (params) {
132 132
   return request({
133 133
     url: '/m/api/monitor/delete',
134 134
     method: 'post',
@@ -140,7 +140,7 @@ export function deleteMonitorRecord(params) {
140 140
   })
141 141
 }
142 142
 
143
-export function GetAllZone(params) {
143
+export function GetAllZone (params) {
144 144
   return request({
145 145
     url: '/m/api/dialysis/allzone',
146 146
     method: 'get',
@@ -148,7 +148,7 @@ export function GetAllZone(params) {
148 148
   })
149 149
 }
150 150
 
151
-export function getSchedualPatient(params) {
151
+export function getSchedualPatient (params) {
152 152
   return request({
153 153
     url: '/m/api/dialysis/patients',
154 154
     method: 'get',
@@ -156,7 +156,7 @@ export function getSchedualPatient(params) {
156 156
   })
157 157
 }
158 158
 
159
-export function postSolution(params) {
159
+export function postSolution (params) {
160 160
   return request({
161 161
     url: '/m/api/solution',
162 162
     method: 'post',
@@ -168,7 +168,7 @@ export function postSolution(params) {
168 168
   })
169 169
 }
170 170
 
171
-export function startDialysis(params) {
171
+export function startDialysis (params) {
172 172
   return request({
173 173
     url: '/m/api/dialysis/start',
174 174
     method: 'post',
@@ -180,7 +180,7 @@ export function startDialysis(params) {
180 180
   })
181 181
 }
182 182
 
183
-export function getLastAccepts(params) {
183
+export function getLastAccepts (params) {
184 184
   return request({
185 185
     url: '/m/api/accepts/get',
186 186
     method: 'get',
@@ -188,7 +188,7 @@ export function getLastAccepts(params) {
188 188
   })
189 189
 }
190 190
 
191
-export function getPrintDialysisRecord(params) {
191
+export function getPrintDialysisRecord (params) {
192 192
   console.log('params------', params)
193 193
   return request({
194 194
     url: '/m/api/print/dialysisorder',
@@ -197,7 +197,7 @@ export function getPrintDialysisRecord(params) {
197 197
   })
198 198
 }
199 199
 
200
-export function getUrgentScheduleInitData(params) {
200
+export function getUrgentScheduleInitData (params) {
201 201
   return request({
202 202
     url: '/m/api/schedule/urgentinit',
203 203
     method: 'Get',
@@ -205,7 +205,7 @@ export function getUrgentScheduleInitData(params) {
205 205
   })
206 206
 }
207 207
 
208
-export function postUrgentSchedule(params) {
208
+export function postUrgentSchedule (params) {
209 209
   return request({
210 210
     url: '/m/api/schedule/urgentadd',
211 211
     method: 'post',
@@ -213,7 +213,7 @@ export function postUrgentSchedule(params) {
213 213
   })
214 214
 }
215 215
 
216
-export function postSign(params) {
216
+export function postSign (params) {
217 217
   return request({
218 218
     url: '/m/api/dialysis/sign',
219 219
     method: 'Post',
@@ -222,7 +222,7 @@ export function postSign(params) {
222 222
   })
223 223
 }
224 224
 
225
-export function GetMonitor(params) {
225
+export function GetMonitor (params) {
226 226
   return request({
227 227
     url: '/m/api/monitor/get',
228 228
     method: 'get',
@@ -230,7 +230,7 @@ export function GetMonitor(params) {
230 230
   })
231 231
 }
232 232
 
233
-export function GetMonitorToday(params) {
233
+export function GetMonitorToday (params) {
234 234
   return request({
235 235
     url: '/m/api/monitor/gettodaylast',
236 236
     method: 'get',
@@ -238,7 +238,7 @@ export function GetMonitorToday(params) {
238 238
   })
239 239
 }
240 240
 
241
-export function PostSearch(keyword) {
241
+export function PostSearch (keyword) {
242 242
   return request({
243 243
     url: '/m/api/patients/search?keyword=' + keyword,
244 244
     method: 'post'
@@ -246,7 +246,7 @@ export function PostSearch(keyword) {
246 246
   })
247 247
 }
248 248
 
249
-export function PostModifyStartDialysis(params) {
249
+export function PostModifyStartDialysis (params) {
250 250
   return request({
251 251
     url: '/m/api/startOrder/edit',
252 252
     method: 'post',
@@ -258,7 +258,7 @@ export function PostModifyStartDialysis(params) {
258 258
   })
259 259
 }
260 260
 
261
-export function PostModifyEndDialysis(params) {
261
+export function PostModifyEndDialysis (params) {
262 262
   return request({
263 263
     url: '/m/api/finishOrder/edit',
264 264
     method: 'post',
@@ -270,7 +270,7 @@ export function PostModifyEndDialysis(params) {
270 270
   })
271 271
 }
272 272
 
273
-export function CreateGroupAdvice(id, groupno, advices) {
273
+export function CreateGroupAdvice (id, groupno, advices) {
274 274
   return request({
275 275
     url: '/m/api/advice_remind/create?id=' + id + '&groupno=' + groupno,
276 276
     method: 'post',
@@ -278,7 +278,7 @@ export function CreateGroupAdvice(id, groupno, advices) {
278 278
   })
279 279
 }
280 280
 
281
-export function CreateDryWeight(params) {
281
+export function CreateDryWeight (params) {
282 282
   return request({
283 283
     url: '/m/api/dryweight/commit',
284 284
     method: 'post',
@@ -290,7 +290,7 @@ export function CreateDryWeight(params) {
290 290
   })
291 291
 }
292 292
 
293
-export function GetSolution(params) {
293
+export function GetSolution (params) {
294 294
   return request({
295 295
     url: '/m/api/solution/get',
296 296
     method: 'get',
@@ -298,7 +298,7 @@ export function GetSolution(params) {
298 298
   })
299 299
 }
300 300
 
301
-export function GetSchedualNumber(params) {
301
+export function GetSchedualNumber (params) {
302 302
   return request({
303 303
     url: '/m/api/schedule/get',
304 304
     method: 'get',
@@ -306,7 +306,7 @@ export function GetSchedualNumber(params) {
306 306
   })
307 307
 }
308 308
 
309
-export function getPatientId(id, params) {
309
+export function getPatientId (id, params) {
310 310
   return request({
311 311
     url: '/m/api/getPatientid?id=' + id,
312 312
     method: 'get',

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 567 - 693
src/pages/main/dialog/MonitDialog.vue


+ 19 - 37
src/pages/main/today/TodayTab.vue Parādīt failu

@@ -503,12 +503,12 @@ export default {
503 503
       this.$refs.monitoring.setRecords(this.monitor_records)
504 504
     },
505 505
     '$route': function (to, from) {
506
-      if(to.query.active1 == "2" && to.active2 == undefined){
506
+      if (to.query.active1 == '2' && to.active2 == undefined) {
507 507
         this.date = this.$route.query.date
508 508
         this.requestLongAdvice()
509 509
         this.requestDialysisRecord()
510 510
       }
511
-  }
511
+    }
512 512
 
513 513
     // $route: 'requestDialysisRecord'
514 514
   },
@@ -559,52 +559,34 @@ export default {
559 559
         }
560 560
       }
561 561
 
562
-      console.log(monitor)
563
-      console.log(this.monitor_records[monitor_index])
564
-
565
-      this.monitor_records[monitor_index].arterial_pressure =
566
-        monitor.arterial_pressure
567
-      this.monitor_records[monitor_index].blood_flow_volume =
568
-        monitor.blood_flow_volume
569
-      this.monitor_records[monitor_index].breathing_rate =
570
-        monitor.breathing_rate
571
-      this.monitor_records[monitor_index].dialysate_temperature =
572
-        monitor.dialysate_temperature
562
+      this.monitor_records[monitor_index].arterial_pressure = monitor.arterial_pressure
563
+      this.monitor_records[monitor_index].blood_flow_volume = monitor.blood_flow_volume
564
+      this.monitor_records[monitor_index].breathing_rate = monitor.breathing_rate
565
+      this.monitor_records[monitor_index].dialysate_temperature = monitor.dialysate_temperature
573 566
       this.monitor_records[monitor_index].temperature = monitor.temperature
574 567
       this.monitor_records[monitor_index].diastolic_bp = monitor.diastolic_bp
575
-      this.monitor_records[monitor_index].displacement_quantity =
576
-        monitor.displacement_quantity
568
+      this.monitor_records[monitor_index].displacement_quantity = monitor.displacement_quantity
577 569
       this.monitor_records[monitor_index].dispose = monitor.dispose
578 570
       this.monitor_records[monitor_index].ktv = monitor.ktv
579 571
       this.monitor_records[monitor_index].monitor_date = monitor.monitor_date
580
-      this.monitor_records[monitor_index].monitoring_nurse =
581
-        monitor.monitoring_nurse
572
+      this.monitor_records[monitor_index].monitoring_nurse = monitor.monitoring_nurse
582 573
       this.monitor_records[monitor_index].operate_time = monitor.operate_time
583
-      this.monitor_records[monitor_index].pulse_frequency =
584
-        monitor.pulse_frequency
585
-      this.monitor_records[monitor_index].replacement_rate =
586
-        monitor.replacement_rate
574
+      this.monitor_records[monitor_index].pulse_frequency = monitor.pulse_frequency
575
+      this.monitor_records[monitor_index].replacement_rate = monitor.replacement_rate
587 576
       this.monitor_records[monitor_index].result = monitor.result
588
-      this.monitor_records[monitor_index].sodium_concentration =
589
-        monitor.sodium_concentration
577
+      this.monitor_records[monitor_index].sodium_concentration = monitor.sodium_concentration
590 578
       this.monitor_records[monitor_index].symptom = monitor.symptom
591 579
       this.monitor_records[monitor_index].systolic_bp = monitor.systolic_bp
592
-      this.monitor_records[monitor_index].transmembrane_pressure =
593
-        monitor.transmembrane_pressure
594
-      this.monitor_records[monitor_index].ultrafiltration_rate =
595
-        monitor.ultrafiltration_rate
596
-      this.monitor_records[monitor_index].ultrafiltration_volume =
597
-        monitor.ultrafiltration_volume
598
-      this.monitor_records[monitor_index].venous_pressure =
599
-        monitor.venous_pressure
600
-      this.monitor_records[monitor_index].diastolic_blood_pressure =
601
-        monitor.diastolic_blood_pressure
602
-      this.monitor_records[monitor_index].systolic_blood_pressure =
603
-        monitor.systolic_blood_pressure
580
+      this.monitor_records[monitor_index].transmembrane_pressure = monitor.transmembrane_pressure
581
+      this.monitor_records[monitor_index].ultrafiltration_rate = monitor.ultrafiltration_rate
582
+      this.monitor_records[monitor_index].ultrafiltration_volume = monitor.ultrafiltration_volume
583
+      this.monitor_records[monitor_index].venous_pressure = monitor.venous_pressure
584
+      this.monitor_records[monitor_index].diastolic_blood_pressure = monitor.diastolic_blood_pressure
585
+      this.monitor_records[monitor_index].systolic_blood_pressure = monitor.systolic_blood_pressure
604 586
       this.monitor_records[monitor_index].conductivity = monitor.conductivity
605
-      this.monitor_records[monitor_index].displacement_flow_quantity =
606
-        monitor.displacement_flow_quantity
587
+      this.monitor_records[monitor_index].displacement_flow_quantity = monitor.displacement_flow_quantity
607 588
       this.monitor_records[monitor_index].heparin = monitor.heparin
589
+      this.monitor_records[monitor_index].dialysate_flow = monitor.dialysate_flow
608 590
       this.monitor_records.sort((a, b) => a.operate_time - b.operate_time)
609 591
 
610 592
       // if (monitor_index >= 0) {

+ 48 - 152
src/pages/main/today/dialysisMonitoring.vue Parādīt failu

@@ -9,99 +9,25 @@
9 9
       <table class="table dialsisTable" style>
10 10
         <tr>
11 11
           <th v-if="isShow('监测时间')" width="60px">时间</th>
12
-          <th v-if="isShow('体温')" width="40px">
13
-            体温
14
-            <br />(℃)
15
-          </th>
16
-          <th v-if="isShow('血压')" width="60px">
17
-            血压
18
-            <br />(mmHg)
19
-          </th>
20
-          <th v-if="isShow('脉搏')" width="50px">
21
-            脉搏
22
-            <br />(次/分)
23
-          </th>
24
-          <th v-if="isShow('呼吸频率')" width="70px">
25
-            呼吸频率
26
-            <br />(次/分)
27
-          </th>
28
-          <th width="76px">
29
-            静脉压/动脉压
30
-            <br />(mmHg)
31
-          </th>
32
-          <th v-if="isShow('血流量')" width="60px">
33
-            血流量
34
-            <br />(ml/min)
35
-          </th>
36
-          <th v-if="isShow('跨膜压')" width="60px">
37
-            跨膜压
38
-            <br />(mmHg)
39
-          </th>
40
-          <th
41
-            v-if="isShow('超滤量') && (template_id == 6 ||template_id == 10 || template_id == 11 || template_id == 13 )"
42
-            width="60px"
43
-          >
44
-            超滤量
45
-            <br />(ml)
46
-          </th>
47
-          <th
48
-            v-if="isShow('超滤量') && template_id != 6 && template_id != 10 &&template_id != 11 && template_id != 13"
49
-            width="60px"
50
-          >
51
-            超滤量
52
-            <br />(L)
53
-          </th>
54
-          <th v-if="isShow('钠浓度')" width="60px">
55
-            钠浓度
56
-            <br />(mmol/L)
57
-          </th>
58
-          <th v-if="isShow('透析液温度')" width="70px">
59
-            透析液温度
60
-            <br />(℃)
61
-          </th>
62
-          <th
63
-            v-if="isShow('置换率')&& (template_id == 6 ||template_id == 10 || template_id == 11)"
64
-            width="60px"
65
-          >
66
-            置换率
67
-            <br />(ml/min)
68
-          </th>
69
-          <th
70
-            v-if="isShow('置换率')&& template_id != 6 && template_id != 10 && template_id != 11"
71
-            width="60px"
72
-          >
73
-            置换率
74
-            <br />(L/h)
75
-          </th>
76
-          <th
77
-            v-if="isShow('置换量')&& (template_id == 6 || template_id == 10 || template_id == 11)"
78
-            width="50px"
79
-          >
80
-            置换量
81
-            <br />(ml)
82
-          </th>
83
-          <th
84
-            v-if="isShow('置换量')&& template_id != 6 && template_id != 10 && template_id != 11"
85
-            width="50px"
86
-          >
87
-            置换量
88
-            <br />(L)
89
-          </th>
90
-
91
-          <th v-if="isShow('电导度')" width="60px">
92
-            电导度
93
-            <br />(mS/cm)
94
-          </th>
95
-          <th v-if="isShow('置换液流量')" width="70px">
96
-            置换液流量
97
-            <br />(ml/h)
98
-          </th>
99
-
100
-          <th v-if="isShow('肝素用量余量')" width="70px">
101
-            肝素用量余量
102
-            <br />(ml)
103
-          </th>
104
-
12
+          <th v-if="isShow('体温')" width="40px"> 体温 <br />(℃) </th>
13
+          <th v-if="isShow('血压')" width="60px"> 血压 <br />(mmHg) </th>
14
+          <th v-if="isShow('脉搏')" width="50px"> 脉搏 <br />(次/分) </th>
15
+          <th v-if="isShow('呼吸频率')" width="70px"> 呼吸频率 <br />(次/分) </th>
16
+          <th width="76px"> 静脉压/动脉压 <br />(mmHg) </th>
17
+          <th v-if="isShow('血流量')" width="60px"> 血流量 <br />(ml/min) </th>
18
+          <th v-if="isShow('跨膜压')" width="60px">  跨膜压 <br />(mmHg) </th>
19
+          <th v-if="isShow('超滤量') && (template_id == 6 ||template_id == 10 || template_id == 11 || template_id == 13 )" width="60px" > 超滤量 <br />(ml) </th>
20
+          <th v-if="isShow('超滤量') && template_id != 6 && template_id != 10 &&template_id != 11 && template_id != 13" width="60px" > 超滤量 <br />(L) </th>
21
+          <th v-if="isShow('钠浓度')" width="60px"> 钠浓度 <br />(mmol/L) </th>
22
+          <th v-if="isShow('透析液温度')" width="70px"> 透析液温度 <br />(℃) </th>
23
+          <th v-if="isShow('置换率')&& (template_id == 6 ||template_id == 10 || template_id == 11)" width="60px" > 置换率 <br />(ml/min) </th>
24
+          <th v-if="isShow('置换率')&& template_id != 6 && template_id != 10 && template_id != 11" width="60px" > 置换率 <br />(L/h) </th>
25
+          <th v-if="isShow('置换量')&& (template_id == 6 || template_id == 10 || template_id == 11)" width="50px" > 置换量 <br />(ml) </th>
26
+          <th v-if="isShow('置换量')&& template_id != 6 && template_id != 10 && template_id != 11" width="50px" > 置换量 <br />(L) </th>
27
+          <th v-if="isShow('电导度')" width="60px"> 电导度 <br />(mS/cm) </th>
28
+          <th v-if="isShow('置换液流量')" width="70px"> 置换液流量 <br />(ml/h)  </th>
29
+          <th v-if="isShow('透析液流量')" width="70px"> 透析液流量 <br />(ml/h)  </th>
30
+          <th v-if="isShow('肝素用量余量')" width="70px"> 肝素用量余量 <br />(ml) </th>
105 31
           <th v-if="isShow('病情变化')" width="92px">病情变化</th>
106 32
           <th v-if="isShow('处理')" width="92px">处理</th>
107 33
           <th v-if="isShow('结果')" width="92px">结果</th>
@@ -109,51 +35,21 @@
109 35
         <tr v-for="(item, index) in tableDate" :key="index" :value="item.value">
110 36
           <td v-if="isShow('监测时间')">{{ parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}") }}</td>
111 37
           <td v-if="isShow('体温')">{{ item.temperature ? item.temperature : "" }}</td>
112
-          <td v-if="isShow('血压')">
113
-            {{
114
-            item.systolic_blood_pressure ? item.systolic_blood_pressure : ""
115
-            }}/{{
116
-            item.diastolic_blood_pressure ? item.diastolic_blood_pressure : ""
117
-            }}
118
-          </td>
38
+          <td v-if="isShow('血压')"> {{ item.systolic_blood_pressure ? item.systolic_blood_pressure : "" }}/{{ item.diastolic_blood_pressure ? item.diastolic_blood_pressure : "" }} </td>
119 39
           <td v-if="isShow('脉搏')">{{ item.pulse_frequency ? item.pulse_frequency : "" }}</td>
120
-
121 40
           <td v-if="isShow('呼吸频率')">{{ item.breathing_rate ? item.breathing_rate : "" }}</td>
122
-          <td>
123
-            {{ item.venous_pressure ? item.venous_pressure : "" }}/{{
124
-            item.arterial_pressure ? item.arterial_pressure : ""
125
-            }}
126
-          </td>
41
+          <td> {{ item.venous_pressure ? item.venous_pressure : "" }}/{{ item.arterial_pressure ? item.arterial_pressure : "" }} </td>
127 42
           <td v-if="isShow('血流量')">{{ item.blood_flow_volume ? item.blood_flow_volume : "" }}</td>
128
-          <td
129
-            v-if="isShow('跨膜压')"
130
-          >{{ item.transmembrane_pressure ? item.transmembrane_pressure : "" }}</td>
131
-          <td
132
-            v-if="isShow('超滤量')"
133
-          >{{ item.ultrafiltration_volume ? item.ultrafiltration_volume : "" }}</td>
43
+          <td v-if="isShow('跨膜压')" >{{ item.transmembrane_pressure ? item.transmembrane_pressure : "" }}</td>
44
+          <td v-if="isShow('超滤量')" >{{ item.ultrafiltration_volume ? item.ultrafiltration_volume : "" }}</td>
134 45
           <td v-if="isShow('钠浓度')">{{ item.sodium_concentration ? item.sodium_concentration : "" }}</td>
135
-          <td
136
-            v-if="isShow('透析液温度')"
137
-          >{{ item.dialysate_temperature ? item.dialysate_temperature : "" }}</td>
46
+          <td v-if="isShow('透析液温度')"  >{{ item.dialysate_temperature ? item.dialysate_temperature : "" }}</td>
138 47
           <td v-if="isShow('置换率')">{{ item.replacement_rate ? item.replacement_rate : "" }}</td>
139
-          <td
140
-            v-if="isShow('置换量')"
141
-          >{{ item.displacement_quantity ? item.displacement_quantity : "" }}</td>
48
+          <td v-if="isShow('置换量')" >{{ item.displacement_quantity ? item.displacement_quantity : "" }}</td>
142 49
           <th v-if="isShow('电导度')">{{ item.conductivity ? item.conductivity : "" }}</th>
143
-          <th v-if="isShow('置换液流量')">
144
-            {{
145
-            item.displacement_flow_quantity
146
-            ? item.displacement_flow_quantity
147
-            : ""
148
-            }}
149
-          </th>
150
-          <th v-if="isShow('肝素用量余量')">
151
-            {{
152
-            item.heparin
153
-            ? item.heparin
154
-            : ""
155
-            }}
156
-          </th>
50
+          <th v-if="isShow('置换液流量')"> {{ item.displacement_flow_quantity ? item.displacement_flow_quantity : "" }} </th>
51
+          <th v-if="isShow('透析液流量')"> {{ item.dialysate_flow ? item.dialysate_flow : "" }} </th>
52
+          <th v-if="isShow('肝素用量余量')"> {{ item.heparin ? item.heparin : "" }} </th>
157 53
           <td v-if="isShow('病情变化')">{{ item.symptom }}</td>
158 54
           <td v-if="isShow('处理')">{{ item.dispose }}</td>
159 55
           <td v-if="isShow('结果')">{{ item.result }}</td>
@@ -285,23 +181,23 @@
285 181
 </template>
286 182
 
287 183
 <script>
288
-import { parseTime } from "@/utils";
184
+import { parseTime } from '@/utils'
289 185
 
290 186
 export default {
291
-  name: "statOrder",
292
-  data() {
187
+  name: 'statOrder',
188
+  data () {
293 189
     return {
294
-      title: "透析监测 ",
190
+      title: '透析监测 ',
295 191
       template_id: 0,
296 192
       tableDate: []
297
-    };
193
+    }
298 194
   },
299
-  created() {
300
-    this.template_id = this.$store.getters.user.template_info.template_id;
195
+  created () {
196
+    this.template_id = this.$store.getters.user.template_info.template_id
301 197
   },
302 198
   methods: {
303
-    isShow(name) {
304
-      var filedList = this.$store.getters.user.fileds;
199
+    isShow (name) {
200
+      var filedList = this.$store.getters.user.fileds
305 201
 
306 202
       for (let i = 0; i < filedList.length; i++) {
307 203
         if (
@@ -309,26 +205,26 @@ export default {
309 205
           filedList[i].filed_name_cn == name &&
310 206
           filedList[i].is_show == 1
311 207
         ) {
312
-          return true;
208
+          return true
313 209
         }
314 210
       }
315
-      return false;
211
+      return false
316 212
     },
317
-    setRecords(records) {
213
+    setRecords (records) {
318 214
       if (records == null) {
319
-        records = [];
215
+        records = []
320 216
       }
321
-      this.tableDate.splice(0, this.tableDate.length);
322
-      this.tableDate.push(...records);
217
+      this.tableDate.splice(0, this.tableDate.length)
218
+      this.tableDate.push(...records)
323 219
     },
324
-    parseTime(time, layout) {
325
-      return parseTime(time, layout);
220
+    parseTime (time, layout) {
221
+      return parseTime(time, layout)
326 222
     },
327
-    addRecords(records) {
328
-      this.tableDate.push(...records);
223
+    addRecords (records) {
224
+      this.tableDate.push(...records)
329 225
     }
330 226
   }
331
-};
227
+}
332 228
 </script>
333 229
 
334 230
 <style rel="stylesheet/scss" lang="scss" scoped>