|
@@ -59,6 +59,7 @@
|
59
|
59
|
<el-button size="small" @click="exportList" type="primary">导出</el-button>
|
60
|
60
|
<el-button size="small" @click="toPrint" icon="el-icon-printer" type="primary">打印</el-button>
|
61
|
61
|
<el-button size="small" type="primary" @click="statistics">统计表</el-button>
|
|
62
|
+ <!-- <el-button size="small" type="primary" @click="statisticsOne">导出2</el-button> -->
|
62
|
63
|
</div>
|
63
|
64
|
</div>
|
64
|
65
|
|
|
@@ -920,6 +921,122 @@
|
920
|
921
|
}
|
921
|
922
|
})
|
922
|
923
|
},
|
|
924
|
+
|
|
925
|
+ statisticsOne(){
|
|
926
|
+ console.log("this.list233333333333333333333",this.list)
|
|
927
|
+ import('@/vendor/Export2Excel').then(excel => {
|
|
928
|
+ if(this.list!=null && this.list.length > 0){
|
|
929
|
+ for(let i=0;i<this.list.length;i++){
|
|
930
|
+ this.tableList[i].index = i+1
|
|
931
|
+ this.tableList[i].name = this.tableList[i].patient.name
|
|
932
|
+ this.tableList[i].mode_name = this.getModeName(this.tableList[i].mode_id)
|
|
933
|
+ this.tableList[i].anticoagulant_name = this.getAnticoagulantName(this.tableList[i].anticoagulant)
|
|
934
|
+ this.tableList[i].anticoagulant_shouji = this.tableList[i].dialysis_prescription.anticoagulant_shouji
|
|
935
|
+ this.tableList[i].anticoagulant_weichi = this.tableList[i].dialysis_prescription.anticoagulant_weichi
|
|
936
|
+ this.tableList[i].anticoagulant_zongliang = this.tableList[i].dialysis_prescription.anticoagulant_zongliang
|
|
937
|
+
|
|
938
|
+ if(this.tableList[i].assessment_befor_dislysis){
|
|
939
|
+
|
|
940
|
+ }
|
|
941
|
+
|
|
942
|
+ }
|
|
943
|
+ }
|
|
944
|
+ const tHeader = ['序号','姓名','透析方式','抗凝剂','首剂','维持','总量','封管液','促红']
|
|
945
|
+ const filterVal = ['index', 'name','mode_name','anticoagulant_name','anticoagulant_shouji','anticoagulant_weichi','anticoagulant_zongliang']
|
|
946
|
+
|
|
947
|
+ const data = this.formatJson(filterVal, this.tableList)
|
|
948
|
+ excel.export_json_to_excel({
|
|
949
|
+ header: tHeader,
|
|
950
|
+ data,
|
|
951
|
+ filename: '透析参数统计'
|
|
952
|
+ })
|
|
953
|
+ this.downloadLoading = false
|
|
954
|
+ })
|
|
955
|
+ },
|
|
956
|
+ getModeName(id){
|
|
957
|
+ var mode_name =""
|
|
958
|
+ if(id == 1){
|
|
959
|
+ mode_name = "HD"
|
|
960
|
+ }
|
|
961
|
+ if(id == 2){
|
|
962
|
+ mode_name = "HDF"
|
|
963
|
+ }
|
|
964
|
+ if(id == 3){
|
|
965
|
+ mode_name = "HDF"
|
|
966
|
+ }
|
|
967
|
+ if(id == 4){
|
|
968
|
+ mode_name = "HP"
|
|
969
|
+ }
|
|
970
|
+ if(id == 5){
|
|
971
|
+ mode_name = "HF"
|
|
972
|
+ }
|
|
973
|
+ if(id == 6){
|
|
974
|
+ mode_name = "SCUF"
|
|
975
|
+ }
|
|
976
|
+ if(id == 7){
|
|
977
|
+ mode_name = "IUF"
|
|
978
|
+ }
|
|
979
|
+ if(id == 8){
|
|
980
|
+ mode_name = "HFHD"
|
|
981
|
+ }
|
|
982
|
+ if(id == 9){
|
|
983
|
+ mode_name = "HFHD+HP"
|
|
984
|
+ }
|
|
985
|
+ if(id == 10){
|
|
986
|
+ mode_name = "PHF"
|
|
987
|
+ }
|
|
988
|
+ if(id ==11){
|
|
989
|
+ mode_name ="HFR"
|
|
990
|
+ }
|
|
991
|
+ if(id ==12){
|
|
992
|
+ mode_name ="HDF+HP"
|
|
993
|
+ }
|
|
994
|
+ if(id ==25){
|
|
995
|
+ mode_name ="HD高通"
|
|
996
|
+ }
|
|
997
|
+ if(id ==31){
|
|
998
|
+ mode_name ="HPD"
|
|
999
|
+ }
|
|
1000
|
+ if(id ==32){
|
|
1001
|
+ mode_name ="HDP"
|
|
1002
|
+ }
|
|
1003
|
+ if(id ==33){
|
|
1004
|
+ mode_name ="HFD"
|
|
1005
|
+ }
|
|
1006
|
+ if(id ==34){
|
|
1007
|
+ mode_name ="HDF100"
|
|
1008
|
+ }
|
|
1009
|
+ if(id ==35){
|
|
1010
|
+ mode_name ="HDF600"
|
|
1011
|
+ }
|
|
1012
|
+ if(id ==36){
|
|
1013
|
+ mode_name ="HDF800"
|
|
1014
|
+ }
|
|
1015
|
+ if(id ==37){
|
|
1016
|
+ mode_name ="HDF1000"
|
|
1017
|
+ }
|
|
1018
|
+
|
|
1019
|
+ return mode_name
|
|
1020
|
+ },
|
|
1021
|
+ getAnticoagulantName(id){
|
|
1022
|
+ var name = ""
|
|
1023
|
+ if(id ==1){
|
|
1024
|
+ name ="无肝素"
|
|
1025
|
+ }
|
|
1026
|
+ if(id == 2){
|
|
1027
|
+ name ="普通肝素"
|
|
1028
|
+ }
|
|
1029
|
+ if(id ==3){
|
|
1030
|
+ name ="低分子肝素"
|
|
1031
|
+ }
|
|
1032
|
+ if(id == 6){
|
|
1033
|
+ name ="低分子肝素钙"
|
|
1034
|
+ }
|
|
1035
|
+ if(id == 7){
|
|
1036
|
+ name ="低分子肝素钠"
|
|
1037
|
+ }
|
|
1038
|
+ return name
|
|
1039
|
+ },
|
923
|
1040
|
handleScheduleDateChange(val) {
|
924
|
1041
|
this.query.schedule_date = val
|
925
|
1042
|
this.query.page = 1
|