|
@@ -294,6 +294,12 @@ export default {
|
294
|
294
|
if(modeIdCount[i].mode_id == 30){
|
295
|
295
|
modeIdCount[i].mode_id = "血浆胆红素吸附+HP"
|
296
|
296
|
}
|
|
297
|
+ if(modeIdCount[i].mode_id == 31){
|
|
298
|
+ modeIdCount[i].mode_id = "HPD"
|
|
299
|
+ }
|
|
300
|
+ if(modeIdCount[i].mode_id == 32){
|
|
301
|
+ modeIdCount[i].mode_id = "HDP"
|
|
302
|
+ }
|
297
|
303
|
}
|
298
|
304
|
this.modeIdCount = modeIdCount
|
299
|
305
|
let dataInfo = {}
|
|
@@ -475,7 +481,14 @@ export default {
|
475
|
481
|
patients[i].mode_id = "CVVHDF"
|
476
|
482
|
}else if(patients[i].mode_id == 29){
|
477
|
483
|
patients[i].mode_id = "PE"
|
|
484
|
+ }else if(patients[i].mode_id == 30){
|
|
485
|
+ patients[i].mode_id = "血浆胆红素吸附+HP"
|
|
486
|
+ }else if(patients[i].mode_id == 31){
|
|
487
|
+ patients[i].mode_id = "HPD"
|
|
488
|
+ }else if(patients[i].mode_id == 32){
|
|
489
|
+ patients[i].mode_id = "HDP"
|
478
|
490
|
}
|
|
491
|
+
|
479
|
492
|
}
|
480
|
493
|
},
|
481
|
494
|
querySearchAsync(keyword, cb) {
|
|
@@ -540,14 +553,17 @@ export default {
|
540
|
553
|
this.DialysisData[i].CVVHD = this.getHdModeIdCount(this.DialysisData[i].patient_id,"CVVHD")
|
541
|
554
|
this.DialysisData[i].CVVHDF = this.getHdModeIdCount(this.DialysisData[i].patient_id,"CVVHDF")
|
542
|
555
|
this.DialysisData[i].PE = this.getHdModeIdCount(this.DialysisData[i].patient_id,"PE")
|
|
556
|
+ this.DialysisData[i].XUEHP = this.getHdModeIdCount(this.DialysisData[i].patient_id,"血浆胆红素吸附+HP")
|
|
557
|
+ this.DialysisData[i].HPD = this.getHdModeIdCount(this.DialysisData[i].patient_id,"HPD")
|
|
558
|
+ this.DialysisData[i].HDP = this.getHdModeIdCount(this.DialysisData[i].patient_id,"HDP")
|
543
|
559
|
|
544
|
560
|
this.DialysisData[i].age = this.getAge(this.DialysisData[i].id_card_no)
|
545
|
561
|
this.DialysisData[i].total_count = this.getDialysisCount(this.DialysisData[i].patient_id)
|
546
|
562
|
}
|
547
|
563
|
console.log("hhh2323323232",this.DialysisData)
|
548
|
564
|
import('@/vendor/Export2Excel').then(excel => {
|
549
|
|
- const tHeader = ['序号','姓名', '年龄', '透析号','HD','HDF','HD+HP','HP','HF','SCUF','IUF','HFHD','HFHD+HP','HFR','HDF+HP','CRRT','腹水回输','总数']
|
550
|
|
- const filterVal = ['index','name', 'age', 'dialysis_no','HD','HDF','HDHP','HP','HF','SCUF','IUF','HFHD','HFHDHP','HFR','HDFHP','CRRT','OTR','total_count']
|
|
565
|
+ const tHeader = ['序号','姓名', '年龄', '透析号','HD','HDF','HD+HP','HP','HF','SCUF','IUF','HFHD','HFHD+HP','HFR','HDF+HP','CRRT','腹水回输','IUF+HD','UF','HD+','I-HDF','HD高通','CVVH','CVVHD','CVVHDF','PE','血浆胆红素吸附+HP','HPD','HDP','总数']
|
|
566
|
+ const filterVal = ['index','name', 'age', 'dialysis_no','HD','HDF','HDHP','HP','HF','SCUF','IUF','HFHD','HFHDHP','HFR','HDFHP','CRRT','OTR','IUF+HD','UF','HD+','I-HDF','HD高通','CVVH','CVVHD','CVVHDF','PE','XUEHP','HPD','HDP','total_count']
|
551
|
567
|
|
552
|
568
|
const data = this.formatJson(filterVal, this.DialysisData)
|
553
|
569
|
|