|
@@ -2,7 +2,7 @@
|
2
|
2
|
<div id="dialysis-print-box">
|
3
|
3
|
<div class="dialysis-print-order">
|
4
|
4
|
<div class="order-yy-name"></div>
|
5
|
|
- <div class="order-title">{{ orgname }}血液透析(滤过)记录表单</div>
|
|
5
|
+ <div class="order-title">{{ orgname }} 血液透析(滤过)记录表单</div>
|
6
|
6
|
|
7
|
7
|
<table class="print-table" style="margin-top: 10px;" border="1">
|
8
|
8
|
<tbody>
|
|
@@ -23,7 +23,13 @@
|
23
|
23
|
>性别:{{ patientInfo.gender }}</span
|
24
|
24
|
>
|
25
|
25
|
<span style="flex:1;margin-left:15px;"
|
26
|
|
- >透析机号:{{ patientInfo.dialysis_no }}</span
|
|
26
|
+ >透析机号: {{
|
|
27
|
+ dialysisOrder &&
|
|
28
|
+ dialysisOrder.DeviceNumber &&
|
|
29
|
+ dialysisOrder.DeviceNumber.number.length > 0
|
|
30
|
+ ? dialysisOrder.DeviceNumber.number
|
|
31
|
+ : patientInfo.DialysisSchedule.device_number.number
|
|
32
|
+ }}</span
|
27
|
33
|
>
|
28
|
34
|
<span style="flex:1;margin-left:15px;">第({{total}})次透析</span>
|
29
|
35
|
</div>
|
|
@@ -158,12 +164,15 @@
|
158
|
164
|
<span style="display:inline-block;margin-left:15px;"
|
159
|
165
|
>透析液流量:{{dialysate_flow}}ml/h</span
|
160
|
166
|
>
|
161
|
|
- <span style="display:inline-block;margin-left:15px;"
|
162
|
|
- >血流量:{{blood_flow_volume}}ml/min</span
|
163
|
|
- >
|
164
|
167
|
</td>
|
165
|
168
|
<td>
|
166
|
|
- <span>医生签名:{{doctor}}</span>
|
|
169
|
+ <span v-if="doctorForm.url === ''">
|
|
170
|
+ 医生签名:{{doctorForm.doctor}}
|
|
171
|
+ </span>
|
|
172
|
+ <span v-if="doctorForm.url!==''">
|
|
173
|
+ 医生签名:
|
|
174
|
+ <img style="height:20px" :src="doctorForm.url">
|
|
175
|
+ </span>
|
167
|
176
|
</td>
|
168
|
177
|
</tr>
|
169
|
178
|
</table>
|
|
@@ -179,19 +188,19 @@
|
179
|
188
|
>透析液(mmol/L):</span
|
180
|
189
|
>
|
181
|
190
|
<span v-if="dialysate_formulation == 1">
|
182
|
|
- 常规(钾:{{kalium}} ,钙:{{calcium}} ,钠:{{sodium}};)
|
|
191
|
+ 常规(钾:{{kalium}} ,钙:{{calcium}} ,钠:{{sodium}};)
|
183
|
192
|
</span>
|
184
|
193
|
<span v-if="dialysate_formulation == 2">
|
185
|
|
- 低钙(钾:{{kalium}} ,钙:{{calcium}} ,钠:{{sodium}};)
|
|
194
|
+ 低钙(钾:{{kalium}} ,钙:{{calcium}} ,钠:{{sodium}};)
|
186
|
195
|
</span>
|
187
|
196
|
<span v-if="dialysate_formulation == 3">
|
188
|
|
- 高钙(钾:{{kalium}} ,钙:{{calcium}} ,钠:{{sodium}};)
|
|
197
|
+ 高钙(钾:{{kalium}} ,钙:{{calcium}} ,钠:{{sodium}};)
|
189
|
198
|
</span>
|
190
|
199
|
<span v-if="dialysate_formulation == 4">
|
191
|
|
- 低钠(钾:{{kalium}} ,钙:{{calcium}} ,钠:{{sodium}};)
|
|
200
|
+ 低钠(钾:{{kalium}} ,钙:{{calcium}} ,钠:{{sodium}};)
|
192
|
201
|
</span>
|
193
|
202
|
<span v-if="dialysate_formulation == 5">
|
194
|
|
- 高钠(钾:{{kalium}} ,钙:{{calcium}} ,钠:{{sodium}};)
|
|
203
|
+ 高钠(钾:{{kalium}} ,钙:{{calcium}} ,钠:{{sodium}};)
|
195
|
204
|
</span>
|
196
|
205
|
</td>
|
197
|
206
|
</tr>
|
|
@@ -229,7 +238,9 @@
|
229
|
238
|
:isChecked="blood_access_part_opera_id != '内瘘' && blood_access_part_opera_id != '长期静脉导管' && blood_access_part_opera_id !='临时颈静脉导管' && blood_access_part_opera_id != '临时股静脉导管'? true : false"
|
230
|
239
|
showValue="其它"
|
231
|
240
|
></label-box>
|
232
|
|
- <span>穿刺者:{{nurse}}</span>
|
|
241
|
+
|
|
242
|
+ <span v-if="PunctureNurse.url == ''">穿刺者:{{PunctureNurse.user_name}}</span>
|
|
243
|
+ <span v-if="PunctureNurse.url !=''">穿刺者:<img :src="PunctureNurse.url" style="height:20px"></span>
|
233
|
244
|
</td>
|
234
|
245
|
</tr>
|
235
|
246
|
<tr>
|
|
@@ -241,34 +252,34 @@
|
241
|
252
|
<th rowspan="2">时间</th>
|
242
|
253
|
<th colspan="3">透析参数</th>
|
243
|
254
|
<th colspan="6">生命体征</th>
|
244
|
|
- <th>病情变化及处理</th>
|
|
255
|
+ <th>治疗中病情变化</th>
|
245
|
256
|
</tr>
|
246
|
257
|
<tr>
|
247
|
|
- <td width="60">TMP<br/>(mmHg)</td>
|
248
|
|
- <td width="60">静脉压<br/>(mmHg)</td>
|
249
|
|
- <td width="60">血流量<br/>(ml/min)</td>
|
250
|
|
- <td width="60">脱水量<br/>(ml)</td>
|
251
|
|
- <td width="50">T<br/>(℃)</td>
|
252
|
|
- <td width="50">HR<br/>(bpm)</td>
|
253
|
|
- <td width="50">R<br/>(bpm)</td>
|
254
|
|
- <td width="60">BP<br/>(mmHg)</td>
|
255
|
|
- <td width="60">SpO₂<br/>(%)</td>
|
|
258
|
+ <td width="60"><p style="height:20px;line-height:20px">TMP</p><p style="height:20px;line-height:20px">(mmHg)</p></td>
|
|
259
|
+ <td width="60"><p style="height:20px;line-height:20px">静脉压</p><p style="height:20px;line-height:20px">(mmHg)</p></td>
|
|
260
|
+ <td width="60"><p style="height:20px;line-height:20px">血流量</p><p style="height:20px;line-height:20px">(ml/min)</p></td>
|
|
261
|
+ <td width="60"><p style="height:20px;line-height:20px">脱水量</p><p style="height:20px;line-height:20px">(ml)</p></td>
|
|
262
|
+ <td width="50"><p style="height:20px;line-height:20px">T</p><p style="height:20px;line-height:20px">(℃)</p></td>
|
|
263
|
+ <td width="50"><p style="height:20px;line-height:20px">HR</p><p style="height:20px;line-height:20px">(bpm)</p></td>
|
|
264
|
+ <td width="50"><p style="height:20px;line-height:20px">R</p><p style="height:20px;line-height:20px">(bpm)</p></td>
|
|
265
|
+ <td width="60"><p style="height:20px;line-height:20px">BP</p><p style="height:20px;line-height:20px">(mmHg)</p></td>
|
|
266
|
+ <td width="60"><p style="height:20px;line-height:20px">SpO₂</p><p style="height:20px;line-height:20px">(%)</p></td>
|
256
|
267
|
<td>记录</td>
|
257
|
268
|
</tr>
|
258
|
|
- <tr v-for="(monitor, monindex) in this.monitor" :key="monindex">
|
259
|
|
- <td>{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
|
260
|
|
- <td>{{monitor.transmembrane_pressure?monitor.transmembrane_pressure:""}}</td>
|
261
|
|
- <td>{{monitor.venous_pressure?monitor.venous_pressure:""}}</td>
|
262
|
|
- <td>{{monitor.blood_flow_volume ? monitor.blood_flow_volume:""}}</td>
|
263
|
|
- <td>{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:""}}</td>
|
264
|
|
- <td> {{
|
|
269
|
+ <tr v-for="(monitor, monindex) in monitors" :key="monindex">
|
|
270
|
+ <td style="line-height:50px;height:30px">{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
|
|
271
|
+ <td style="line-height:50px;height:30px">{{monitor.transmembrane_pressure?monitor.transmembrane_pressure:""}}</td>
|
|
272
|
+ <td style="line-height:50px;height:30px">{{monitor.venous_pressure?monitor.venous_pressure:""}}</td>
|
|
273
|
+ <td style="line-height:50px;height:30px">{{monitor.blood_flow_volume ? monitor.blood_flow_volume:""}}</td>
|
|
274
|
+ <td style="line-height:50px:height:30px">{{monitor.ultrafiltration_volume?monitor.ultrafiltration_volume:""}}</td>
|
|
275
|
+ <td style="line-height:50px;height:30px"> {{
|
265
|
276
|
monitor.temperature
|
266
|
277
|
? monitor.temperature
|
267
|
278
|
: ""
|
268
|
279
|
}}</td>
|
269
|
|
- <td>{{monitor.pulse_frequency?monitor.pulse_frequency:""}}</td>
|
270
|
|
- <td>{{monitor.breathing_rate?monitor.breathing_rate:""}}</td>
|
271
|
|
- <td>{{
|
|
280
|
+ <td style="line-height:50px;height:30px">{{monitor.pulse_frequency?monitor.pulse_frequency:""}}</td>
|
|
281
|
+ <td style="line-height:50px;height:30px">{{monitor.breathing_rate?monitor.breathing_rate:""}}</td>
|
|
282
|
+ <td style="line-height:50px;height:30px">{{
|
272
|
283
|
monitor.systolic_blood_pressure
|
273
|
284
|
? monitor.systolic_blood_pressure + "/"
|
274
|
285
|
: ""
|
|
@@ -277,10 +288,10 @@
|
277
|
288
|
? monitor.diastolic_blood_pressure
|
278
|
289
|
: ""
|
279
|
290
|
}}</td>
|
280
|
|
- <td>{{monitor.blood_oxygen_saturation?monitor.blood_oxygen_saturation:""}}</td>
|
|
291
|
+ <td style="line-height:50px;height:30px">{{monitor.blood_oxygen_saturation?monitor.blood_oxygen_saturation:""}}</td>
|
281
|
292
|
<td style="line-height:16px;padding:0px;">
|
282
|
293
|
{{ monitor.end }}
|
283
|
|
- {{ monitor.symptom }} {{monitor.dispose}} {{ monitor.result }}
|
|
294
|
+ {{ monitor.symptom }} {{ monitor.result }}
|
284
|
295
|
</td>
|
285
|
296
|
</tr>
|
286
|
297
|
</table>
|
|
@@ -292,12 +303,8 @@
|
292
|
303
|
<td>核对</td>
|
293
|
304
|
<td>上次透后体重</td>
|
294
|
305
|
<td> {{
|
295
|
|
- predialysis.weight_after_last_transparency
|
296
|
|
- ? parseFloat(
|
297
|
|
- predialysis.weight_after_last_transparency -
|
298
|
|
- predialysis.additional_weight
|
299
|
|
- ).toFixed(1)
|
300
|
|
- : "未称重"
|
|
306
|
+ afterWeightLast
|
|
307
|
+ ? parseFloat(afterWeightLast).toFixed(1): "未称重"
|
301
|
308
|
}}kg</td>
|
302
|
309
|
</tr>
|
303
|
310
|
<tr v-for="(advice, advice_index) in tableAdvice"
|
|
@@ -316,41 +323,34 @@
|
316
|
323
|
<span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
|
317
|
324
|
<span v-if="advice.parent_id == 0 && advice.remark.length > 0">({{ advice.remark }})</span></td>
|
318
|
325
|
<td>
|
319
|
|
- <span
|
320
|
|
- v-if="setAdminUserES(advice.advice_doctor) == ''"
|
321
|
|
- >{{ getAdminUser(advice.advice_doctor) }}</span
|
322
|
|
- >
|
323
|
|
- <img
|
324
|
|
- style="height:20px;"
|
325
|
|
- :src="setAdminUserES(advice.advice_doctor)"
|
326
|
|
- alt=""
|
327
|
|
- srcset=""
|
328
|
|
- v-else
|
329
|
|
- />
|
|
326
|
+ <span
|
|
327
|
+ v-if="setAdminUserES(advice.execution_staff) == ''"
|
|
328
|
+ >{{ getAdminUser(advice.execution_staff) }}</span
|
|
329
|
+ >
|
|
330
|
+ <img
|
|
331
|
+ style="height:20px;"
|
|
332
|
+ :src="setAdminUserES(advice.execution_staff)"
|
|
333
|
+ alt=""
|
|
334
|
+ srcset=""
|
|
335
|
+ v-else
|
|
336
|
+ />
|
330
|
337
|
</td>
|
331
|
338
|
<td>
|
332
|
|
- <span
|
333
|
|
- v-if="setAdminUserES(advice.execution_staff) == ''"
|
334
|
|
- >{{ getAdminUser(advice.execution_staff) }}</span
|
335
|
|
- >
|
336
|
|
- <img
|
337
|
|
- style="height:20px;"
|
338
|
|
- :src="setAdminUserES(advice.execution_staff)"
|
339
|
|
- alt=""
|
340
|
|
- srcset=""
|
341
|
|
- v-else
|
342
|
|
- />
|
|
339
|
+ <span v-if="setAdminUserES(advice.checker) == ''">{{getAdminUser(advice.checker)}}</span>
|
|
340
|
+ <img style="height:20px;" :src="setAdminUserES(advice.checker)" alt="" srcset="" v-else>
|
343
|
341
|
</td>
|
344
|
342
|
<td v-if="advice_index==0">透前体重</td>
|
345
|
343
|
<td v-if="advice_index==0">{{weight_before}}kg</td>
|
346
|
344
|
<td v-if="advice_index==1">体重增加量</td>
|
347
|
|
- <td v-if="advice_index==1">{{(dryWeight_add).toFixed(2)}}kg</td>
|
|
345
|
+ <td v-if="advice_index==1">
|
|
346
|
+ {{dryWeight_add?dryWeight_add:0}}
|
|
347
|
+ kg</td>
|
348
|
348
|
<td v-if="advice_index==2">干体重(DW)</td>
|
349
|
349
|
<td v-if="advice_index==2">{{dry_weight}}kg</td>
|
350
|
350
|
<td v-if="advice_index==3">较干体重增加量</td>
|
351
|
|
- <td v-if="advice_index==3">{{(dryWeight_add).toFixed(2)}}kg</td>
|
|
351
|
+ <td v-if="advice_index==3">{{dryWeight_add?dryWeight_add:0}}kg</td>
|
352
|
352
|
<td v-if="advice_index==4">净脱水量</td>
|
353
|
|
- <td v-if="advice_index==4">{{actual_ultrafiltration}}ml</td>
|
|
353
|
+ <td v-if="advice_index==4">{{actual_ultrafiltration}}L</td>
|
354
|
354
|
<td v-if="advice_index==5">透后体重</td>
|
355
|
355
|
<td v-if="advice_index==5">{{weight_after}}kg</td>
|
356
|
356
|
<td v-if="advice_index==6">本次透析体重下降量</td>
|
|
@@ -366,10 +366,10 @@
|
366
|
366
|
<tr>
|
367
|
367
|
<td style="text-align:left;">
|
368
|
368
|
<span v-if="doctorForm.url === ''">
|
369
|
|
- 医师签名:{{doctorForm.doctor}}
|
|
369
|
+ 医生签名:{{doctorForm.doctor}}
|
370
|
370
|
</span>
|
371
|
371
|
<span v-if="doctorForm.url!==''">
|
372
|
|
- 医师签名:
|
|
372
|
+ 医生签名:
|
373
|
373
|
<img style="height:20px" :src="doctorForm.url">
|
374
|
374
|
</span>
|
375
|
375
|
|
|
@@ -548,7 +548,11 @@
|
548
|
548
|
blood_access_part_opera_id: '',
|
549
|
549
|
dryWeight_add: '',
|
550
|
550
|
weight: '',
|
551
|
|
- vascularId: 0
|
|
551
|
+ vascularId: 0,
|
|
552
|
+ PunctureNurse: {
|
|
553
|
+ user_name: '',
|
|
554
|
+ url: ''
|
|
555
|
+ }
|
552
|
556
|
|
553
|
557
|
}
|
554
|
558
|
},
|
|
@@ -647,7 +651,7 @@
|
647
|
651
|
return name
|
648
|
652
|
},
|
649
|
653
|
setAdminUserES(id) {
|
650
|
|
- console.log(id)
|
|
654
|
+ // console.log(id)
|
651
|
655
|
if (id == 0) {
|
652
|
656
|
return ''
|
653
|
657
|
}
|
|
@@ -671,6 +675,7 @@
|
671
|
675
|
this.adminUser = response.data.data.users
|
672
|
676
|
this.users = response.data.data.users
|
673
|
677
|
var patientInfo = response.data.data.patientInfo
|
|
678
|
+ // console.log('patientInfo', patientInfo)
|
674
|
679
|
if (patientInfo.gender === 1) {
|
675
|
680
|
patientInfo.gender = '男'
|
676
|
681
|
}
|
|
@@ -678,7 +683,7 @@
|
678
|
683
|
patientInfo.gender = '女'
|
679
|
684
|
}
|
680
|
685
|
this.patientInfo = response.data.data.patientInfo
|
681
|
|
- console.log('透析记录', this.patientInfo)
|
|
686
|
+ // console.log('透析记录', this.patientInfo)
|
682
|
687
|
|
683
|
688
|
this.patientInfo.birth = uParseTime(
|
684
|
689
|
this.patientInfo.birthday,
|
|
@@ -697,35 +702,35 @@
|
697
|
702
|
var predialysis = response.data.data.PredialysisEvaluation
|
698
|
703
|
var predialysName = response.data.data.predialysName
|
699
|
704
|
this.blood_access_part_opera_id = predialysName.name
|
700
|
|
- console.log('血管', predialysName)
|
|
705
|
+ // console.log('血管', predialysName)
|
701
|
706
|
this.weight_before = predialysis.weight_before
|
702
|
707
|
this.dry_weight = predialysis.dry_weight
|
703
|
708
|
this.weight_gain = predialysis.weight_gain
|
704
|
709
|
this.blood_access_internal_fistula = predialysis.blood_access_internal_fistula
|
705
|
710
|
this.venous_catheterization = predialysis.venous_catheterization
|
706
|
711
|
// this.blood_access_part_opera_id = predialysis.blood_access_part_opera_id
|
707
|
|
- console.log('血管通路', this.blood_access_part_opera_id)
|
|
712
|
+ // console.log('血管通路', this.blood_access_part_opera_id)
|
708
|
713
|
var arry = []
|
709
|
714
|
arry = getDataConfig('hemodialysis', 'vascular_access_desc')
|
710
|
|
- console.log('arry', arry)
|
|
715
|
+ // console.log('arry', arry)
|
711
|
716
|
// eslint-disable-next-line no-empty
|
712
|
717
|
var id = 0
|
713
|
718
|
for (let i = 0; i < arry.length; i++) {
|
714
|
|
- console.log(arry[i].id)
|
|
719
|
+ // console.log(arry[i].id)
|
715
|
720
|
if (arry[i].id === predialysis.blood_access_part_opera_id) {
|
716
|
721
|
id = predialysis.blood_access_part_opera_id
|
717
|
722
|
}
|
718
|
723
|
this.vascularId = id
|
719
|
724
|
}
|
720
|
725
|
this.predialysis = predialysis
|
721
|
|
- console.log('透前评估', this.predialysis)
|
|
726
|
+ // console.log('透前评估', this.predialysis)
|
722
|
727
|
|
723
|
728
|
this.predialysis.blood_access_part_opera_name = this.bloodAccessParOperaName(
|
724
|
729
|
this.predialysis.blood_access_part_opera_id
|
725
|
730
|
)
|
726
|
731
|
var afterdialysis = response.data.data.AssessmentAfterDislysis
|
727
|
732
|
// eslint-disable-next-line no-undef
|
728
|
|
- console.log('透后评估', afterdialysis)
|
|
733
|
+ // console.log('透后评估', afterdialysis)
|
729
|
734
|
this.weight_after = afterdialysis.weight_after
|
730
|
735
|
this.weightloss_after = afterdialysis.weight_after
|
731
|
736
|
this.temperature = afterdialysis.temperature
|
|
@@ -738,7 +743,7 @@
|
738
|
743
|
var doctoradvce = response.data.data.doctorAdvice
|
739
|
744
|
var doctorAdevieInfo = response.data.data.doctorAdevieInfo
|
740
|
745
|
var tableAdvice = doctorAdevieInfo
|
741
|
|
- console.log('医生', tableAdvice.length)
|
|
746
|
+ // console.log('医生', tableAdvice.length)
|
742
|
747
|
if (tableAdvice.length === 0) {
|
743
|
748
|
var obj = { 'advice_name': '', start_time: '' }
|
744
|
749
|
var obj1 = { 'advice_name': '', start_time: '' }
|
|
@@ -823,21 +828,20 @@
|
823
|
828
|
var obj = { 'advice_name': '', start_time: '' }
|
824
|
829
|
tableAdvice.push(obj)
|
825
|
830
|
this.tableAdvice = tableAdvice
|
826
|
|
- console.log('零食医嘱', doctorAdevieInfo)
|
|
831
|
+ // console.log('零食医嘱', doctorAdevieInfo)
|
827
|
832
|
}
|
828
|
833
|
if (tableAdvice.length >= 7) {
|
829
|
834
|
this.tableAdvice = tableAdvice
|
830
|
835
|
}
|
831
|
836
|
var doctor = response.data.data.doctor
|
832
|
837
|
this.doctor = doctor.user_name
|
833
|
|
- console.log('医生', doctor)
|
834
|
|
- var nurse = response.data.data.nurse
|
835
|
|
- this.nurse = nurse.user_name
|
836
|
|
- console.log('穿刺护士', nurse)
|
|
838
|
+ // console.log('医生', doctor)
|
|
839
|
+ this.PunctureNurse = response.data.data.nurse
|
|
840
|
+ // console.log('穿刺护士', this.PunctureNurse)
|
837
|
841
|
var operators = response.data.data.operators
|
838
|
|
- console.log('operators', operators)
|
|
842
|
+ // console.log('operators', operators)
|
839
|
843
|
var total = response.data.data.total
|
840
|
|
- console.log('total', total)
|
|
844
|
+ // console.log('total', total)
|
841
|
845
|
this.total = total
|
842
|
846
|
this.operators = operators
|
843
|
847
|
this.dialysisOrder =
|
|
@@ -908,10 +912,10 @@
|
908
|
912
|
// console.log('排班', schedule)
|
909
|
913
|
this.schedule = schedule
|
910
|
914
|
var receiverTreatmentAccess = response.data.data.receiverTreatmentAccess
|
911
|
|
- console.log('接诊评估', receiverTreatmentAccess)
|
|
915
|
+ // console.log('接诊评估', receiverTreatmentAccess)
|
912
|
916
|
this.receiverTreatmentAccess = receiverTreatmentAccess
|
913
|
917
|
var dialysisway = response.data.data.dialysisway
|
914
|
|
- console.log('透析处方2', dialysisway)
|
|
918
|
+ // console.log('透析处方2', dialysisway)
|
915
|
919
|
this.target_ultrafiltration = dialysisway.target_ultrafiltration
|
916
|
920
|
var order = response.data.data.order
|
917
|
921
|
// console.log('上下机', order)
|
|
@@ -940,14 +944,20 @@
|
940
|
944
|
this.calcium = dialysisway.calcium
|
941
|
945
|
this.anticoagulant_weichi = dialysisway.anticoagulant_weichi
|
942
|
946
|
var afterWeightLast = response.data.data.assessmentAfterDislysis
|
943
|
|
- // console.log('上次透后体重', afterWeightLast)
|
944
|
|
- // eslint-disable-next-line no-undef
|
945
|
|
- console.log('透前体重', this.weight_before)
|
946
|
|
- console.log('干体中', this.dry_weight)
|
947
|
|
- console.log('什么体重', predialysis.additional_weight)
|
948
|
|
- this.dryWeight_add = this.weight_before - this.dry_weight - predialysis.additional_weight
|
949
|
|
- console.log('较干体中增加量', this.dryWeight_add)
|
|
947
|
+ // console.log('上次透后体重', afterWeightLast.weight_after)
|
950
|
948
|
this.afterWeightLast = afterWeightLast.weight_after
|
|
949
|
+ // eslint-disable-next-line no-undef
|
|
950
|
+ // console.log('透前体重', this.weight_before)
|
|
951
|
+ // console.log('干体中', this.dry_weight)
|
|
952
|
+ // console.log('什么体重', predialysis.additional_weight)
|
|
953
|
+ var dryWeight_add = this.weight_before - this.dry_weight - predialysis.additional_weight
|
|
954
|
+ if (this.afterWeightLast === 0) {
|
|
955
|
+ this.dryWeight_add = 0
|
|
956
|
+ } else {
|
|
957
|
+ this.dryWeight_add = dryWeight_add.toFixed(2)
|
|
958
|
+ }
|
|
959
|
+ // console.log('较干体中增加量', this.dryWeight_add)
|
|
960
|
+ // this.afterWeightLast = afterWeightLast.weight_after
|
951
|
961
|
this.prescription.mode = this.modeName(this.prescription.mode_id)
|
952
|
962
|
var rwLen = this.replacementWays.length
|
953
|
963
|
this.prescription.replacement = ''
|
|
@@ -995,16 +1005,17 @@
|
995
|
1005
|
this.advices = response.data.data.advices
|
996
|
1006
|
|
997
|
1007
|
var monitor = response.data.data.monitor
|
|
1008
|
+ // console.log('透析监测', monitor)
|
998
|
1009
|
this.monitor = monitor
|
999
|
|
- console.log('monitor', monitor)
|
|
1010
|
+ // console.log('monitor', monitor)
|
1000
|
1011
|
this.monitors = response.data.data.monitors
|
1001
|
|
-
|
|
1012
|
+ // console.log('透析监测', this.monitors)
|
1002
|
1013
|
var summary = response.data.data.summary
|
1003
|
|
- console.log('透析小结', summary)
|
|
1014
|
+ // console.log('透析小结', summary)
|
1004
|
1015
|
this.mission = summary.mission
|
1005
|
1016
|
this.dialysis_summary = summary.dialysis_summary
|
1006
|
1017
|
this.org_template_info = response.data.data.org_template_info
|
1007
|
|
- if (this.monitors.length < 8) {
|
|
1018
|
+ if (this.monitors.length < 7) {
|
1008
|
1019
|
var nl = 8 - this.monitors.length
|
1009
|
1020
|
for (let index = 0; index < nl; index++) {
|
1010
|
1021
|
this.monitors.push([])
|
|
@@ -1283,7 +1294,7 @@
|
1283
|
1294
|
this.precautions = getDataConfig('hemodialysis', 'precaution')
|
1284
|
1295
|
this.intake = getDataConfig('hemodialysis', 'intake')
|
1285
|
1296
|
this.nutrition = getDataConfig('hemodialysis', 'nutrition')
|
1286
|
|
- console.log('nutrition', this.nutrition)
|
|
1297
|
+ // console.log('nutrition', this.nutrition)
|
1287
|
1298
|
}
|
1288
|
1299
|
}
|
1289
|
1300
|
</script>
|