|
@@ -367,6 +367,12 @@ export default {
|
367
|
367
|
if(modeIdCount[i].mode_id == 39){
|
368
|
368
|
modeIdCount[i].mode_id = "HF16"
|
369
|
369
|
}
|
|
370
|
+ if(modeIdCount[i].mode_id == 40){
|
|
371
|
+ modeIdCount[i].mode_id = "HD(无肝素)"
|
|
372
|
+ }
|
|
373
|
+ if(modeIdCount[i].mode_id == 41){
|
|
374
|
+ modeIdCount[i].mode_id = "HDF17H"
|
|
375
|
+ }
|
370
|
376
|
}
|
371
|
377
|
this.modeIdCount = modeIdCount
|
372
|
378
|
|
|
@@ -493,6 +499,12 @@ export default {
|
493
|
499
|
if(scheduleCount[i].mode_id == 39){
|
494
|
500
|
scheduleCount[i].mode_id = "HF16"
|
495
|
501
|
}
|
|
502
|
+ if(scheduleCount[i].mode_id == 40){
|
|
503
|
+ scheduleCount[i].mode_id = "HD(无肝素)"
|
|
504
|
+ }
|
|
505
|
+ if(scheduleCount[i].mode_id == 41){
|
|
506
|
+ scheduleCount[i].mode_id = "HDF17H"
|
|
507
|
+ }
|
496
|
508
|
}
|
497
|
509
|
this.scheduleCount = scheduleCount
|
498
|
510
|
let dataInfo = {}
|
|
@@ -703,6 +715,10 @@ export default {
|
703
|
715
|
patients[i].mode_id = "HDF80"
|
704
|
716
|
}else if(patients[i].mode_id == 39){
|
705
|
717
|
patients[i].mode_id = "HF16"
|
|
718
|
+ }else if(patients[i].mode_id == 40){
|
|
719
|
+ patients[i].mode_id = "HD(无肝素)"
|
|
720
|
+ }else if(patients[i].mode_id == 41){
|
|
721
|
+ patients[i].mode_id = "HDF17H"
|
706
|
722
|
}
|
707
|
723
|
|
708
|
724
|
|
|
@@ -783,13 +799,17 @@ export default {
|
783
|
799
|
this.DialysisData[i].HDF80 = this.getScheduleHdModeIdCount(this.DialysisData[i].patient_id,"HDF80")
|
784
|
800
|
this.DialysisData[i].HF16 = this.getScheduleHdModeIdCount(this.DialysisData[i].patient_id,"HF16")
|
785
|
801
|
|
|
802
|
+ this.DialysisData[i].HD无肝素 = this.getScheduleHdModeIdCount(this.DialysisData[i].patient_id,"HD(无肝素)")
|
|
803
|
+
|
|
804
|
+ this.DialysisData[i].HDF17H = this.getScheduleHdModeIdCount(this.DialysisData[i].patient_id,"HDF17H")
|
|
805
|
+
|
786
|
806
|
this.DialysisData[i].age = this.getAge(this.DialysisData[i].id_card_no)
|
787
|
807
|
this.DialysisData[i].total_count = this.getDialysisCount(this.DialysisData[i].patient_id)
|
788
|
808
|
}
|
789
|
809
|
console.log("hhh2323323232",this.DialysisData)
|
790
|
810
|
import('@/vendor/Export2Excel').then(excel => {
|
791
|
|
- 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','PHF','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','总数']
|
792
|
|
- 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','HDGT','CVVH','CVVHD','CVVHDF','PE','XUEHP','HPD','HDP','PHF','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','total_count']
|
|
811
|
+ 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','PHF','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','HD无肝素','HDF17H','总数']
|
|
812
|
+ 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','HDGT','CVVH','CVVHD','CVVHDF','PE','XUEHP','HPD','HDP','PHF','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','HD无肝素','HDF17H','total_count']
|
793
|
813
|
|
794
|
814
|
const data = this.formatJson(filterVal, this.DialysisData)
|
795
|
815
|
|
|
@@ -838,13 +858,17 @@ export default {
|
838
|
858
|
this.DialysisData[i].HDF80 = this.getScheduleHdModeIdCount(this.DialysisData[i].patient_id,"HDF80")
|
839
|
859
|
this.DialysisData[i].HF16 = this.getScheduleHdModeIdCount(this.DialysisData[i].patient_id,"HF16")
|
840
|
860
|
|
|
861
|
+ this.DialysisData[i].HD无肝素 = this.getScheduleHdModeIdCount(this.DialysisData[i].patient_id,"HD(无肝素)")
|
|
862
|
+
|
|
863
|
+ this.DialysisData[i].HDF17H = this.getScheduleHdModeIdCount(this.DialysisData[i].patient_id,"HDF17H")
|
|
864
|
+
|
841
|
865
|
this.DialysisData[i].age = this.getAge(this.DialysisData[i].id_card_no)
|
842
|
866
|
this.DialysisData[i].total_count = this.getScheduleDialysisCount(this.DialysisData[i].patient_id)
|
843
|
867
|
}
|
844
|
868
|
console.log("hhh2323323232",this.DialysisData)
|
845
|
869
|
import('@/vendor/Export2Excel').then(excel => {
|
846
|
|
- 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','PHF','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','总数']
|
847
|
|
- 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','HDGT','CVVH','CVVHD','CVVHDF','PE','XUEHP','HPD','HDP','PHF','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','total_count']
|
|
870
|
+ 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','PHF','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','HD无肝素','HDF17H','总数']
|
|
871
|
+ 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','HDGT','CVVH','CVVHD','CVVHDF','PE','XUEHP','HPD','HDP','PHF','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','HD无肝素','HDF17H','total_count']
|
848
|
872
|
|
849
|
873
|
const data = this.formatJson(filterVal, this.DialysisData)
|
850
|
874
|
|
|
@@ -893,13 +917,15 @@ export default {
|
893
|
917
|
this.scheduleList[i].HDF1000 = this.getScheduleHdModeIdCount(this.scheduleList[i].patient_id,"HDF1000")
|
894
|
918
|
this.scheduleList[i].HDF80 = this.getScheduleHdModeIdCount(this.scheduleList[i].patient_id,"HDF80")
|
895
|
919
|
this.scheduleList[i].HF16 = this.getScheduleHdModeIdCount(this.scheduleList[i].patient_id,"HF16")
|
|
920
|
+ this.scheduleList[i].HD无肝素 = this.getScheduleHdModeIdCount(this.scheduleList[i].patient_id,"HD(无肝素)")
|
|
921
|
+ this.scheduleList[i].HDF17H = this.getScheduleHdModeIdCount(this.scheduleList[i].patient_id,"HDF17H")
|
896
|
922
|
this.scheduleList[i].age = this.getAge(this.scheduleList[i].id_card_no)
|
897
|
923
|
this.scheduleList[i].total_count = this.getScheduleDialysisCount(this.scheduleList[i].patient_id)
|
898
|
924
|
}
|
899
|
925
|
console.log("hhh2323323232",this.scheduleList)
|
900
|
926
|
import('@/vendor/Export2Excel').then(excel => {
|
901
|
|
- 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','PHF','HDF100','HDF600','HDF800','HDF1000','','HDF80','HF16','总数']
|
902
|
|
- 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','HDGT','CVVH','CVVHD','CVVHDF','PE','XUEHP','HPD','HDP','PHF','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','total_count']
|
|
927
|
+ 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','PHF','HDF100','HDF600','HDF800','HDF1000','','HDF80','HF16','HD无肝素','HDF17H','总数']
|
|
928
|
+ 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','HDGT','CVVH','CVVHD','CVVHDF','PE','XUEHP','HPD','HDP','PHF','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','HD无肝素','HDF17H','total_count']
|
903
|
929
|
|
904
|
930
|
const data = this.formatJson(filterVal, this.scheduleList)
|
905
|
931
|
|