|
@@ -50,7 +50,7 @@
|
50
|
50
|
@selection-change="handleSelectionChange">
|
51
|
51
|
<el-table-column align="center" type="selection" width="55">
|
52
|
52
|
</el-table-column>
|
53
|
|
- <el-table-column align="center" label="姓名" width="80">
|
|
53
|
+ <el-table-column align="center" fixed label="姓名" width="80">
|
54
|
54
|
<template slot-scope="scope">
|
55
|
55
|
{{scope.row.patient.name?scope.row.patient.name:""}}
|
56
|
56
|
</template>
|
|
@@ -62,89 +62,91 @@
|
62
|
62
|
</el-table-column>
|
63
|
63
|
<el-table-column align="center" label="上次透后体重(kg)" width="280">
|
64
|
64
|
<template slot-scope="scope">
|
65
|
|
- {{scope.row.assessment_before_dislysis.weight_after_last_transparency?scope.row.assessment_before_dislysis.weight_after_last_transparency:""}}
|
|
65
|
+ {{getLastWeight(scope.row.patient.id)?getLastWeight(scope.row.patient.id):""}}
|
66
|
66
|
</template>
|
67
|
67
|
</el-table-column>
|
68
|
68
|
<el-table-column align="center" label="透前体重(kg)" width="120">
|
69
|
69
|
<template slot-scope="scope">
|
70
|
|
- {{scope.row.assessment_before_dislysis.weighing_before?scope.row.assessment_before_dislysis.weighing_before:""}}
|
|
70
|
+ {{getWeightBefor(scope.row.patient_id)?getWeightBefor(scope.row.patient_id):""}}
|
71
|
71
|
</template>
|
72
|
72
|
</el-table-column>
|
73
|
73
|
<el-table-column align="center" label="干体重(kg)" width="140">
|
74
|
74
|
<template slot-scope="scope">
|
75
|
|
- {{scope.row.assessment_before_dislysis.dry_weight?scope.row.assessment_before_dislysis.dry_weight:""}}
|
|
75
|
+ {{getDryWeight(scope.row.patient_id)?getDryWeight(scope.row.patient_id):""}}
|
76
|
76
|
</template>
|
77
|
77
|
</el-table-column>
|
78
|
78
|
<el-table-column align="center" label="透前血压(mmhg)" width="180">
|
79
|
79
|
<template slot-scope="scope">
|
80
|
|
- {{scope.row.assessment_before_dislysis.systolic_blood_pressure?scope.row.assessment_before_dislysis.systolic_blood_pressure:""}}/{{scope.row.assessment_before_dislysis.diastolic_blood_pressure?scope.row.assessment_before_dislysis.diastolic_blood_pressure:""}}
|
|
80
|
+ {{getSysBloodPressure(scope.row.patient_id)?getSysBloodPressure(scope.row.patient_id):""}}
|
81
|
81
|
</template>
|
82
|
82
|
</el-table-column>
|
83
|
83
|
<el-table-column align="center" label="目标超滤量" width="120">
|
84
|
84
|
<template slot-scope="scope">
|
85
|
|
- {{scope.row.prescription.target_ultrafiltration?scope.row.prescription.target_ultrafiltration:""}}
|
|
85
|
+ {{getTargetUltrafiltration(scope.row.patient_id)?getTargetUltrafiltration(scope.row.patient_id):""}}
|
86
|
86
|
</template>
|
87
|
87
|
</el-table-column>
|
88
|
88
|
<el-table-column align="center" label="血流量(ml/min)" width="180">
|
89
|
|
- <template slot-scope="scope">
|
90
|
|
- {{scope.row.prescription.blood_flow_volume?scope.row.prescription.blood_flow_volume:""}}
|
|
89
|
+ <template slot-scope="scope">
|
|
90
|
+ {{getBloodFlowVolume(scope.row.patient_id)?getBloodFlowVolume(scope.row.patient_id):""}}
|
91
|
91
|
</template>
|
92
|
92
|
</el-table-column>
|
93
|
93
|
<el-table-column align="center" label="抗凝剂(首剂)(维持)(总量)" width="220">
|
94
|
94
|
<template slot-scope="scope">
|
95
|
|
- <span v-if="scope.row.prescription.anticoagulant == 0"></span>
|
96
|
|
- <span v-if="scope.row.prescription.anticoagulant == 1">无肝素</span>
|
97
|
|
- <span v-if="scope.row.prescription.anticoagulant == 2">普通肝素</span>
|
98
|
|
- <span v-if="scope.row.prescription.anticoagulant == 3">低分子肝素</span>
|
99
|
|
- <span v-if="scope.row.prescription.anticoagulant == 4">阿加曲班</span>
|
100
|
|
- <span v-if="scope.row.prescription.anticoagulant == 5">枸橼酸钠</span>
|
101
|
|
- <span v-if="scope.row.prescription.anticoagulant == 6">低分子肝素钙</span>
|
102
|
|
- <span v-if="scope.row.prescription.anticoagulant == 7">低分子肝素钠</span>
|
103
|
|
- <span v-if="scope.row.prescription.anticoagulant == 8">依诺肝素</span>
|
104
|
|
- <span v-if="scope.row.prescription.anticoagulant == 9">达肝素</span>
|
105
|
|
- <span v-if="scope.row.prescription.anticoagulant == 10">体外抗凝</span>
|
|
95
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 0"></span>
|
|
96
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 1">无肝素</span>
|
|
97
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 2">普通肝素</span>
|
|
98
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 3">低分子肝素</span>
|
|
99
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 4">阿加曲班</span>
|
|
100
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 5">枸橼酸钠</span>
|
|
101
|
+ <span v-if="getAnticoagulant(scope.row.patient_id)== 6">低分子肝素钙</span>
|
|
102
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 7">低分子肝素钠</span>
|
|
103
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 8">依诺肝素</span>
|
|
104
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 9">达肝素</span>
|
|
105
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 10">体外抗凝</span>
|
106
|
106
|
<span>
|
107
|
|
- {{scope.row.prescription.anticoagulant_shouji?scope.row.prescription.anticoagulant_shouji:""}}
|
108
|
|
- <span v-if="scope.row.prescription.anticoagulant == 1">mg</span>
|
109
|
|
- <span v-if="scope.row.prescription.anticoagulant == 2">iu/h</span>
|
110
|
|
- <span v-if="scope.row.prescription.anticoagulant == 3">iu</span>
|
111
|
|
- <span v-if="scope.row.prescription.anticoagulant == 4">mg</span>
|
112
|
|
- <span v-if="scope.row.prescription.anticoagulant == 5">mg</span>
|
113
|
|
- <span v-if="scope.row.prescription.anticoagulant == 6">iu</span>
|
114
|
|
- <span v-if="scope.row.prescription.anticoagulant == 7">iu</span>
|
115
|
|
- <span v-if="scope.row.prescription.anticoagulant == 8">iu</span>
|
116
|
|
- <span v-if="scope.row.prescription.anticoagulant == 9">iu</span>
|
117
|
|
- <span v-if="scope.row.prescription.anticoagulant == 10">mg</span>
|
|
107
|
+ {{getAnticoagulantShouji(scope.row.patient_id)?getAnticoagulantShouji(scope.row.patient_id):''}}
|
|
108
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) ==1 && getAnticoagulantShouji(scope.row.patient_id)!=''">mg</span>
|
|
109
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 2 && getAnticoagulantShouji(scope.row.patient_id)!=''">iu/h</span>
|
|
110
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 3 && getAnticoagulantShouji(scope.row.patient_id)!=''">iu</span>
|
|
111
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 4 && getAnticoagulantShouji(scope.row.patient_id)!=''">mg</span>
|
|
112
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 5 && getAnticoagulantShouji(scope.row.patient_id)!=''">mg</span>
|
|
113
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 6 && getAnticoagulantShouji(scope.row.patient_id)!=''">iu</span>
|
|
114
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 7 && getAnticoagulantShouji(scope.row.patient_id)!=''">iu</span>
|
|
115
|
+ <span v-if="getAnticoagulant(scope.row.patient_id)== 8 && getAnticoagulantShouji(scope.row.patient_id)!=''">iu</span>
|
|
116
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 9 && getAnticoagulantShouji(scope.row.patient_id)!=''">iu</span>
|
|
117
|
+ <span v-if="getAnticoagulant(scope.row.patient_id)== 10 && getAnticoagulantShouji(scope.row.patient_id)!=''">mg</span>
|
118
|
118
|
</span>
|
119
|
|
- <span>{{scope.row.prescription.anticoagulant_weichi?scope.row.prescription.anticoagulant_weichi:""}}
|
120
|
|
- <span v-if="scope.row.prescription.anticoagulant == 1">mg/h</span>
|
121
|
|
- <span v-if="scope.row.prescription.anticoagulant == 2">iu/h</span>
|
122
|
|
- <span v-if="scope.row.prescription.anticoagulant == 3">iu/h</span>
|
123
|
|
- <span v-if="scope.row.prescription.anticoagulant == 4">mg/h</span>
|
124
|
|
- <span v-if="scope.row.prescription.anticoagulant == 5">ml/h</span>
|
125
|
|
- <span v-if="scope.row.prescription.anticoagulant == 6">iu/h</span>
|
126
|
|
- <span v-if="scope.row.prescription.anticoagulant == 7">iu/h</span>
|
127
|
|
- <span v-if="scope.row.prescription.anticoagulant == 8">iu/h</span>
|
128
|
|
- <span v-if="scope.row.prescription.anticoagulant == 9">iu/h</span>
|
129
|
|
- <span v-if="scope.row.prescription.anticoagulant == 10">mg</span>
|
|
119
|
+ <span>
|
|
120
|
+ {{getAnticoagulantWeichi(scope.row.patient_id)?getAnticoagulantWeichi(scope.row.patient_id):''}}
|
|
121
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 1 && getAnticoagulantWeichi(scope.row.patient_id)!=''">mg/h</span>
|
|
122
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 2 && getAnticoagulantWeichi(scope.row.patient_id)!=''">iu/h</span>
|
|
123
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 3 && getAnticoagulantWeichi(scope.row.patient_id)!=''">iu/h</span>
|
|
124
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 4 && getAnticoagulantWeichi(scope.row.patient_id)!=''">mg/h</span>
|
|
125
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 5 && getAnticoagulantWeichi(scope.row.patient_id)!=''">ml/h</span>
|
|
126
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 6 && getAnticoagulantWeichi(scope.row.patient_id)!=''">iu/h</span>
|
|
127
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 7 && getAnticoagulantWeichi(scope.row.patient_id)!=''">iu/h</span>
|
|
128
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 8 && getAnticoagulantWeichi(scope.row.patient_id)!=''">iu/h</span>
|
|
129
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 9 && getAnticoagulantWeichi(scope.row.patient_id)!=''">iu/h</span>
|
|
130
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 10 && getAnticoagulantWeichi(scope.row.patient_id)!=''">mg</span>
|
130
|
131
|
</span>
|
131
|
|
- <span>{{scope.row.prescription.anticoagulant_zongliang?scope.row.prescription.anticoagulant_zongliang:""}}
|
132
|
|
- <span v-if="scope.row.prescription.anticoagulant == 1">mg</span>
|
133
|
|
- <span v-if="scope.row.prescription.anticoagulant == 2">iu</span>
|
134
|
|
- <span v-if="scope.row.prescription.anticoagulant == 3">iu</span>
|
135
|
|
- <span v-if="scope.row.prescription.anticoagulant == 4">mg</span>
|
136
|
|
- <span v-if="scope.row.prescription.anticoagulant == 5">mg</span>
|
137
|
|
- <span v-if="scope.row.prescription.anticoagulant == 6">iu/h</span>
|
138
|
|
- <span v-if="scope.row.prescription.anticoagulant == 7">iu</span>
|
139
|
|
- <span v-if="scope.row.prescription.anticoagulant == 8">iu</span>
|
140
|
|
- <span v-if="scope.row.prescription.anticoagulant == 9">iu/h</span>
|
141
|
|
- <span v-if="scope.row.prescription.anticoagulant == 10">mg</span>
|
|
132
|
+ <span>
|
|
133
|
+ {{getAnticoagulantZongliang(scope.row.patient_id)?getAnticoagulantZongliang(scope.row.patient_id):''}}
|
|
134
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 1 && getAnticoagulantZongliang(scope.row.patient_id)!=''">mg</span>
|
|
135
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 2 && getAnticoagulantZongliang(scope.row.patient_id)!=''">iu</span>
|
|
136
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 3 && getAnticoagulantZongliang(scope.row.patient_id)!=''">iu</span>
|
|
137
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 4 && getAnticoagulantZongliang(scope.row.patient_id)!=''">mg</span>
|
|
138
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 5 && getAnticoagulantZongliang(scope.row.patient_id)!=''">mg</span>
|
|
139
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 6 && getAnticoagulantZongliang(scope.row.patient_id)!=''">iu/h</span>
|
|
140
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 7 && getAnticoagulantZongliang(scope.row.patient_id)!=''">iu</span>
|
|
141
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 8 && getAnticoagulantZongliang(scope.row.patient_id)!=''">iu</span>
|
|
142
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 9 && getAnticoagulantZongliang(scope.row.patient_id)!=''">iu/h</span>
|
|
143
|
+ <span v-if="getAnticoagulant(scope.row.patient_id) == 10 && getAnticoagulantZongliang(scope.row.patient_id)!=''">mg</span>
|
142
|
144
|
</span>
|
143
|
145
|
</template>
|
144
|
146
|
</el-table-column>
|
145
|
147
|
<el-table-column align="center" label="透析器/灌流器" width="200">
|
146
|
148
|
<template slot-scope="scope">
|
147
|
|
- {{scope.row.prescription.dialyzer_perfusion_apparatus}}
|
|
149
|
+ {{getDialyzerPerfusionApparatus(scope.row.patient_id)?getDialyzerPerfusionApparatus(scope.row.patient_id):""}}
|
148
|
150
|
</template>
|
149
|
151
|
</el-table-column>
|
150
|
152
|
</el-table>
|
|
@@ -171,6 +173,7 @@ import { GetAllZone } from "@/api/dialysis";
|
171
|
173
|
import consumablesDialog from './consumablesDialog'
|
172
|
174
|
import { parseTime } from "@/utils";
|
173
|
175
|
import { getDialysisParameters } from "@/api/consumable"
|
|
176
|
+const moment = require('moment')
|
174
|
177
|
export default {
|
175
|
178
|
components:{
|
176
|
179
|
consumablesDialog
|
|
@@ -184,7 +187,8 @@ export default {
|
184
|
187
|
{ value: 2, label: "下午" },
|
185
|
188
|
{ value: 3, label: "晚上" }
|
186
|
189
|
],
|
187
|
|
- selected_date:new Date(),
|
|
190
|
+ // selected_date:new Date(),
|
|
191
|
+ selected_date:"",
|
188
|
192
|
partitionArr:[],
|
189
|
193
|
partitionType: 0,
|
190
|
194
|
tableData: [],
|
|
@@ -194,8 +198,9 @@ export default {
|
194
|
198
|
total:0,
|
195
|
199
|
start_time:0,
|
196
|
200
|
selecting_schs: [],
|
197
|
|
- start_time:0
|
198
|
|
-
|
|
201
|
+ start_time:0,
|
|
202
|
+ prescriptionList:[],
|
|
203
|
+ dialysisBefor:[]
|
199
|
204
|
}
|
200
|
205
|
},
|
201
|
206
|
created(){
|
|
@@ -228,14 +233,19 @@ export default {
|
228
|
233
|
this.$refs.consumables.show();
|
229
|
234
|
},
|
230
|
235
|
search(){
|
231
|
|
- this.start_time = parseTime(this.selected_date, '{y}-{m}-{d}')
|
|
236
|
+ if(this.selected_date==""){
|
|
237
|
+ this.start_time = moment(new Date()).add('year',0).format("YYYY-MM-DD")
|
|
238
|
+ }
|
|
239
|
+ if(this.selected_date!=''){
|
|
240
|
+ this.start_time = parseTime(this.selected_date, '{y}-{m}-{d}')
|
|
241
|
+ }
|
232
|
242
|
const params ={
|
233
|
243
|
start_time:this.start_time,
|
234
|
244
|
keyword:this.search_input,
|
235
|
245
|
scheduleType: this.scheduleType,
|
236
|
246
|
partitionType:this.partitionType,
|
237
|
247
|
limit:this.limit,
|
238
|
|
- page:this.page
|
|
248
|
+ page:this.page
|
239
|
249
|
}
|
240
|
250
|
getDialysisParameters(params).then(response=>{
|
241
|
251
|
if(response.data.state == 1){
|
|
@@ -243,7 +253,7 @@ export default {
|
243
|
253
|
console.log("schedule",schedule)
|
244
|
254
|
this.tableData = schedule
|
245
|
255
|
var total = response.data.data.total
|
246
|
|
- console.log("total",total)
|
|
256
|
+
|
247
|
257
|
this.total = total
|
248
|
258
|
}
|
249
|
259
|
})
|
|
@@ -258,25 +268,32 @@ export default {
|
258
|
268
|
return new Date(time).getTime() / 1000;
|
259
|
269
|
},
|
260
|
270
|
getlist(){
|
261
|
|
- var startime = parseTime(this.selected_date, '{y}-{m}-{d}')
|
262
|
|
- this.start_time = startime
|
|
271
|
+ if(this.selected_date==""){
|
|
272
|
+ this.start_time = moment(new Date()).add('year',0).format("YYYY-MM-DD")
|
|
273
|
+ }
|
|
274
|
+ if(this.selected_date!=''){
|
|
275
|
+ this.start_time = parseTime(this.selected_date, '{y}-{m}-{d}')
|
|
276
|
+ }
|
263
|
277
|
const params ={
|
264
|
278
|
start_time:this.start_time,
|
265
|
279
|
keyword:this.search_input,
|
266
|
280
|
scheduleType: this.scheduleType,
|
267
|
281
|
partitionType:this.partitionType,
|
268
|
282
|
limit:this.limit,
|
269
|
|
- page:this.page
|
|
283
|
+ page:this.page
|
270
|
284
|
}
|
271
|
|
-
|
272
|
285
|
getDialysisParameters(params).then(response=>{
|
273
|
286
|
if(response.data.state == 1){
|
274
|
287
|
var schedule = response.data.data.schedule
|
275
|
288
|
console.log("schedule",schedule)
|
276
|
289
|
this.tableData = schedule
|
277
|
290
|
var total = response.data.data.total
|
278
|
|
- console.log("total",total)
|
279
|
291
|
this.total = total
|
|
292
|
+ var prescription = response.data.data.prescription
|
|
293
|
+ this.prescriptionList = prescription
|
|
294
|
+ var dialysbefor = response.data.data.dialysbefor
|
|
295
|
+ this.dialysisBefor = dialysbefor
|
|
296
|
+ console.log("dialysbefor",dialysbefor)
|
280
|
297
|
}
|
281
|
298
|
})
|
282
|
299
|
},
|
|
@@ -303,6 +320,105 @@ export default {
|
303
|
320
|
this.page = val;
|
304
|
321
|
this.getlist()
|
305
|
322
|
},
|
|
323
|
+ getLastWeight(id){
|
|
324
|
+ var lastweight = ""
|
|
325
|
+ for(let i=0;i<this.dialysisBefor.length;i++){
|
|
326
|
+ if(this.dialysisBefor[i].patient_id == id){
|
|
327
|
+ lastweight = this.dialysisBefor[i].weight_after_last_transparency
|
|
328
|
+ }
|
|
329
|
+ }
|
|
330
|
+ return lastweight
|
|
331
|
+ },
|
|
332
|
+ getWeightBefor(id){
|
|
333
|
+ var assessmentBeforWeight = ""
|
|
334
|
+ for(let i=0;i<this.dialysisBefor.length;i++){
|
|
335
|
+ if(this.dialysisBefor[i].patient_id == id){
|
|
336
|
+ assessmentBeforWeight = this.dialysisBefor[i].weight_before
|
|
337
|
+ }
|
|
338
|
+ }
|
|
339
|
+ return assessmentBeforWeight
|
|
340
|
+ },
|
|
341
|
+ getDryWeight(id){
|
|
342
|
+ var dryWeight = ""
|
|
343
|
+ for(let i=0;i<this.dialysisBefor.length;i++){
|
|
344
|
+ if(this.dialysisBefor[i].patient_id == id){
|
|
345
|
+ dryWeight = this.dialysisBefor[i].dry_weight
|
|
346
|
+ }
|
|
347
|
+ }
|
|
348
|
+ return dryWeight
|
|
349
|
+ },
|
|
350
|
+ getSysBloodPressure(id){
|
|
351
|
+ var sysBloodPressure = ""
|
|
352
|
+ for(let i=0;i<this.dialysisBefor.length;i++){
|
|
353
|
+ if(this.dialysisBefor[i].patient_id == id){
|
|
354
|
+ sysBloodPressure = this.dialysisBefor[i].systolic_blood_pressure
|
|
355
|
+ }
|
|
356
|
+ }
|
|
357
|
+ return sysBloodPressure
|
|
358
|
+ },
|
|
359
|
+ getTargetUltrafiltration(id){
|
|
360
|
+ var targetUltrafiltration = ""
|
|
361
|
+ for(let i=0;i<this.prescriptionList.length;i++){
|
|
362
|
+ if(this.prescriptionList[i].patient_id == id){
|
|
363
|
+ targetUltrafiltration = this.prescriptionList[i].target_ultrafiltration
|
|
364
|
+ }
|
|
365
|
+ }
|
|
366
|
+ return targetUltrafiltration
|
|
367
|
+ },
|
|
368
|
+ getBloodFlowVolume(id){
|
|
369
|
+ var bloodFlowVolume = ""
|
|
370
|
+ for(let i=0;i<this.prescriptionList.length;i++){
|
|
371
|
+ if(this.prescriptionList[i].patient_id == id){
|
|
372
|
+ bloodFlowVolume = this.prescriptionList[i].blood_flow_volume
|
|
373
|
+ }
|
|
374
|
+ }
|
|
375
|
+ return bloodFlowVolume
|
|
376
|
+ },
|
|
377
|
+ getDialyzerPerfusionApparatus(id){
|
|
378
|
+ var dialyzerPerfusionApparatus = ""
|
|
379
|
+ for(let i=0;i<this.prescriptionList.length;i++){
|
|
380
|
+ if(this.prescriptionList[i].patient_id == id){
|
|
381
|
+ dialyzerPerfusionApparatus = this.prescriptionList[i].dialyzer_perfusion_apparatus
|
|
382
|
+ }
|
|
383
|
+ }
|
|
384
|
+ return dialyzerPerfusionApparatus
|
|
385
|
+ },
|
|
386
|
+ getAnticoagulant(id){
|
|
387
|
+ var anticoagulant = ""
|
|
388
|
+ for(let i=0;i<this.prescriptionList.length;i++){
|
|
389
|
+ if(this.prescriptionList[i].patient_id == id){
|
|
390
|
+ anticoagulant = this.prescriptionList[i].anticoagulant
|
|
391
|
+ }
|
|
392
|
+ }
|
|
393
|
+ return anticoagulant
|
|
394
|
+ },
|
|
395
|
+ getAnticoagulantShouji(id){
|
|
396
|
+ var shouji = ""
|
|
397
|
+ for(let i=0;i<this.prescriptionList.length;i++){
|
|
398
|
+ if(this.prescriptionList[i].patient_id == id){
|
|
399
|
+ shouji = this.prescriptionList[i].anticoagulant_shouji
|
|
400
|
+ }
|
|
401
|
+ }
|
|
402
|
+ return shouji
|
|
403
|
+ },
|
|
404
|
+ getAnticoagulantWeichi(id){
|
|
405
|
+ var weichi = ""
|
|
406
|
+ for(let i=0;i<this.prescriptionList.length;i++){
|
|
407
|
+ if(this.prescriptionList[i].patient_id == id){
|
|
408
|
+ weichi = this.prescriptionList[i].anticoagulant_weichi
|
|
409
|
+ }
|
|
410
|
+ return weichi
|
|
411
|
+ }
|
|
412
|
+ },
|
|
413
|
+ getAnticoagulantZongliang(id){
|
|
414
|
+ var zongliang = ""
|
|
415
|
+ for(let i=0;i<this.prescriptionList.length;i++){
|
|
416
|
+ if(this.prescriptionList[i].patient_id == id){
|
|
417
|
+ zongliang = this.prescriptionList[i].anticoagulant_zongliang
|
|
418
|
+ }
|
|
419
|
+ }
|
|
420
|
+ return zongliang
|
|
421
|
+ }
|
306
|
422
|
}
|
307
|
423
|
}
|
308
|
424
|
</script>
|