Bläddra i källkod

朝阳医院添加字段

张保健 5 år sedan
förälder
incheckning
1ee319a209

+ 32 - 32
src/api/dialysis.js Visa fil

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

Filskillnaden har hållits tillbaka eftersom den är för stor
+ 567 - 693
src/pages/main/dialog/MonitDialog.vue


+ 19 - 37
src/pages/main/today/TodayTab.vue Visa fil

503
       this.$refs.monitoring.setRecords(this.monitor_records)
503
       this.$refs.monitoring.setRecords(this.monitor_records)
504
     },
504
     },
505
     '$route': function (to, from) {
505
     '$route': function (to, from) {
506
-      if(to.query.active1 == "2" && to.active2 == undefined){
506
+      if (to.query.active1 == '2' && to.active2 == undefined) {
507
         this.date = this.$route.query.date
507
         this.date = this.$route.query.date
508
         this.requestLongAdvice()
508
         this.requestLongAdvice()
509
         this.requestDialysisRecord()
509
         this.requestDialysisRecord()
510
       }
510
       }
511
-  }
511
+    }
512
 
512
 
513
     // $route: 'requestDialysisRecord'
513
     // $route: 'requestDialysisRecord'
514
   },
514
   },
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
       this.monitor_records[monitor_index].temperature = monitor.temperature
566
       this.monitor_records[monitor_index].temperature = monitor.temperature
574
       this.monitor_records[monitor_index].diastolic_bp = monitor.diastolic_bp
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
       this.monitor_records[monitor_index].dispose = monitor.dispose
569
       this.monitor_records[monitor_index].dispose = monitor.dispose
578
       this.monitor_records[monitor_index].ktv = monitor.ktv
570
       this.monitor_records[monitor_index].ktv = monitor.ktv
579
       this.monitor_records[monitor_index].monitor_date = monitor.monitor_date
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
       this.monitor_records[monitor_index].operate_time = monitor.operate_time
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
       this.monitor_records[monitor_index].result = monitor.result
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
       this.monitor_records[monitor_index].symptom = monitor.symptom
578
       this.monitor_records[monitor_index].symptom = monitor.symptom
591
       this.monitor_records[monitor_index].systolic_bp = monitor.systolic_bp
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
       this.monitor_records[monitor_index].conductivity = monitor.conductivity
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
       this.monitor_records[monitor_index].heparin = monitor.heparin
588
       this.monitor_records[monitor_index].heparin = monitor.heparin
589
+      this.monitor_records[monitor_index].dialysate_flow = monitor.dialysate_flow
608
       this.monitor_records.sort((a, b) => a.operate_time - b.operate_time)
590
       this.monitor_records.sort((a, b) => a.operate_time - b.operate_time)
609
 
591
 
610
       // if (monitor_index >= 0) {
592
       // if (monitor_index >= 0) {

+ 48 - 152
src/pages/main/today/dialysisMonitoring.vue Visa fil

9
       <table class="table dialsisTable" style>
9
       <table class="table dialsisTable" style>
10
         <tr>
10
         <tr>
11
           <th v-if="isShow('监测时间')" width="60px">时间</th>
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
           <th v-if="isShow('病情变化')" width="92px">病情变化</th>
31
           <th v-if="isShow('病情变化')" width="92px">病情变化</th>
106
           <th v-if="isShow('处理')" width="92px">处理</th>
32
           <th v-if="isShow('处理')" width="92px">处理</th>
107
           <th v-if="isShow('结果')" width="92px">结果</th>
33
           <th v-if="isShow('结果')" width="92px">结果</th>
109
         <tr v-for="(item, index) in tableDate" :key="index" :value="item.value">
35
         <tr v-for="(item, index) in tableDate" :key="index" :value="item.value">
110
           <td v-if="isShow('监测时间')">{{ parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}") }}</td>
36
           <td v-if="isShow('监测时间')">{{ parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}") }}</td>
111
           <td v-if="isShow('体温')">{{ item.temperature ? item.temperature : "" }}</td>
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
           <td v-if="isShow('脉搏')">{{ item.pulse_frequency ? item.pulse_frequency : "" }}</td>
39
           <td v-if="isShow('脉搏')">{{ item.pulse_frequency ? item.pulse_frequency : "" }}</td>
120
-
121
           <td v-if="isShow('呼吸频率')">{{ item.breathing_rate ? item.breathing_rate : "" }}</td>
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
           <td v-if="isShow('血流量')">{{ item.blood_flow_volume ? item.blood_flow_volume : "" }}</td>
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
           <td v-if="isShow('钠浓度')">{{ item.sodium_concentration ? item.sodium_concentration : "" }}</td>
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
           <td v-if="isShow('置换率')">{{ item.replacement_rate ? item.replacement_rate : "" }}</td>
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
           <th v-if="isShow('电导度')">{{ item.conductivity ? item.conductivity : "" }}</th>
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
           <td v-if="isShow('病情变化')">{{ item.symptom }}</td>
53
           <td v-if="isShow('病情变化')">{{ item.symptom }}</td>
158
           <td v-if="isShow('处理')">{{ item.dispose }}</td>
54
           <td v-if="isShow('处理')">{{ item.dispose }}</td>
159
           <td v-if="isShow('结果')">{{ item.result }}</td>
55
           <td v-if="isShow('结果')">{{ item.result }}</td>
285
 </template>
181
 </template>
286
 
182
 
287
 <script>
183
 <script>
288
-import { parseTime } from "@/utils";
184
+import { parseTime } from '@/utils'
289
 
185
 
290
 export default {
186
 export default {
291
-  name: "statOrder",
292
-  data() {
187
+  name: 'statOrder',
188
+  data () {
293
     return {
189
     return {
294
-      title: "透析监测 ",
190
+      title: '透析监测 ',
295
       template_id: 0,
191
       template_id: 0,
296
       tableDate: []
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
   methods: {
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
       for (let i = 0; i < filedList.length; i++) {
202
       for (let i = 0; i < filedList.length; i++) {
307
         if (
203
         if (
309
           filedList[i].filed_name_cn == name &&
205
           filedList[i].filed_name_cn == name &&
310
           filedList[i].is_show == 1
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
       if (records == null) {
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
 </script>
228
 </script>
333
 
229
 
334
 <style rel="stylesheet/scss" lang="scss" scoped>
230
 <style rel="stylesheet/scss" lang="scss" scoped>