|
@@ -797,6 +797,11 @@ export default {
|
797
|
797
|
}
|
798
|
798
|
},
|
799
|
799
|
methods: {
|
|
800
|
+ unique(arr) { // 根据唯一标识id来对数组进行过滤
|
|
801
|
+ const res = new Map();//定义常量 res,值为一个Map对象实例
|
|
802
|
+ //返回arr数组过滤后的结果,结果为一个数组 过滤条件是,如果res中没有某个键,就设置这个键的值为1
|
|
803
|
+ return arr.filter((arr) => !res.has(arr.advice_name) && res.set(arr.advice_name, 1))
|
|
804
|
+ },
|
800
|
805
|
getDialysisRecord() {
|
801
|
806
|
this.loading = true;
|
802
|
807
|
this.queryParams.patient_id = parseInt(this.$route.query.patient_id)
|
|
@@ -1020,22 +1025,44 @@ export default {
|
1020
|
1025
|
console.log("this.projects", this.projects);
|
1021
|
1026
|
|
1022
|
1027
|
// var objProject = {advice_name:"",start_time:"",single_dose:"",single_dose_unit:"",}
|
|
1028
|
+
|
1023
|
1029
|
if(this.projects!=null && this.projects.length >0){
|
1024
|
1030
|
for(let i=0;i<this.projects.length;i++){
|
1025
|
1031
|
if(this.projects[i].type== 2){
|
1026
|
|
- this.projects[i].advice_name = this.projects[i].project.project_name
|
1027
|
|
- this.projects[i].start_time = this.projects[i].start_time
|
1028
|
|
- this.projects[i].single_dose = this.projects[i].single_dose
|
1029
|
|
- this.projects[i].single_dose_unit = this.projects[i].unit
|
1030
|
|
- this.projects[i].execution_time = this.projects[i].execution_time
|
1031
|
|
- this.projects[i].execution_staff= this.projects[i].execution_staff
|
1032
|
|
- this.advices.push(this.projects[i])
|
|
1032
|
+
|
|
1033
|
+ this.projects[i].project_team_name = ""
|
|
1034
|
+ this.projects[i].project_team_id = 0
|
|
1035
|
+ console.log("this.projects[i].project.team",this.projects[i].project.team)
|
|
1036
|
+ if(this.projects[i].team!= "undefined" && this.projects[i].team.id >0){
|
|
1037
|
+ this.projects[i].project_team = this.projects[i].team.project_team
|
|
1038
|
+ this.projects[i].project_team_id = this.projects[i].team.id
|
|
1039
|
+ this.projects[i].start_time = this.projects[i].start_time
|
|
1040
|
+ this.projects[i].single_dose = this.projects[i].single_dose
|
|
1041
|
+ this.projects[i].single_dose_unit = this.projects[i].unit
|
|
1042
|
+ this.projects[i].execution_time = this.projects[i].execution_time
|
|
1043
|
+ this.projects[i].execution_staff= this.projects[i].execution_staff
|
|
1044
|
+ this.projects[i].advice_name = this.projects[i].team.project_team
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+ this.advices.push(this.projects[i])
|
|
1048
|
+ }else{
|
|
1049
|
+ this.projects[i].project_team = this.projects[i].project.project_name
|
|
1050
|
+ this.projects[i].advice_name = this.projects[i].project.project_name
|
|
1051
|
+ this.projects[i].start_time = this.projects[i].start_time
|
|
1052
|
+ this.projects[i].single_dose = this.projects[i].single_dose
|
|
1053
|
+ this.projects[i].single_dose_unit = this.projects[i].unit
|
|
1054
|
+ this.projects[i].execution_time = this.projects[i].execution_time
|
|
1055
|
+ this.projects[i].execution_staff= this.projects[i].execution_staff
|
|
1056
|
+ this.advices.push(this.projects[i])
|
|
1057
|
+ }
|
|
1058
|
+
|
1033
|
1059
|
}
|
1034
|
1060
|
|
1035
|
1061
|
}
|
1036
|
1062
|
}
|
1037
|
|
-
|
1038
|
|
-
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
|
1039
|
1066
|
var tableAdvice = this.advices;
|
1040
|
1067
|
|
1041
|
1068
|
|
|
@@ -1115,6 +1142,11 @@ export default {
|
1115
|
1142
|
this.advices = tableAdvice;
|
1116
|
1143
|
}
|
1117
|
1144
|
|
|
1145
|
+ var arr = []
|
|
1146
|
+ arr = this.unique(this.advices)
|
|
1147
|
+ this.advices = []
|
|
1148
|
+ this.advices= arr
|
|
1149
|
+ console.log("wowoowowowo",arr)
|
1118
|
1150
|
console.log("advices-----------------",this.advices)
|
1119
|
1151
|
|
1120
|
1152
|
|