|
@@ -4144,6 +4144,73 @@ export default {
|
4144
|
4144
|
// this.advice_groups.push(group)
|
4145
|
4145
|
// }
|
4146
|
4146
|
// }
|
|
4147
|
+
|
|
4148
|
+
|
|
4149
|
+
|
|
4150
|
+
|
|
4151
|
+ console.log("RESWOOWOWWOOW",response.data.data.doctorAdevieInfo)
|
|
4152
|
+ if(this.org_id ==10515 || this.org_id == 0){
|
|
4153
|
+ if(response.data.data.doctorAdevieInfo!=null && response.data.data.doctorAdevieInfo.length>0){
|
|
4154
|
+ for(let i=0;i<response.data.data.doctorAdevieInfo.length;i++){
|
|
4155
|
+ this.doctor_advices.push(response.data.data.doctorAdevieInfo[i])
|
|
4156
|
+ // this.doctor_advices_2.push(response.data.data.doctorAdevieInfo[i])
|
|
4157
|
+ }
|
|
4158
|
+ }
|
|
4159
|
+
|
|
4160
|
+
|
|
4161
|
+ let projects = [];
|
|
4162
|
+ response.data.data.projects.map((item) => {
|
|
4163
|
+ if (item.type == 2) {
|
|
4164
|
+ projects.push(item);
|
|
4165
|
+ }
|
|
4166
|
+ });
|
|
4167
|
+ this.projects = projects;
|
|
4168
|
+
|
|
4169
|
+
|
|
4170
|
+ console.log("this.projects", this.projects);
|
|
4171
|
+
|
|
4172
|
+ // var objProject = {advice_name:"",start_time:"",single_dose:"",single_dose_unit:"",}
|
|
4173
|
+
|
|
4174
|
+ if(this.projects!=null && this.projects.length >0){
|
|
4175
|
+ for(let i=0;i<this.projects.length;i++){
|
|
4176
|
+ if(this.projects[i].type== 2){
|
|
4177
|
+
|
|
4178
|
+ this.projects[i].project_team_name = ""
|
|
4179
|
+ this.projects[i].project_team_id = 0
|
|
4180
|
+ console.log("this.projects[i].project.team",this.projects[i].project.team)
|
|
4181
|
+ if(this.projects[i].team!= "undefined" && this.projects[i].team.id >0){
|
|
4182
|
+ this.projects[i].project_team = this.projects[i].team.project_team
|
|
4183
|
+ this.projects[i].project_team_id = this.projects[i].team.id
|
|
4184
|
+ this.projects[i].start_time = this.projects[i].start_time
|
|
4185
|
+ this.projects[i].single_dose = this.projects[i].single_dose
|
|
4186
|
+ this.projects[i].single_dose_unit = this.projects[i].unit
|
|
4187
|
+ this.projects[i].execution_time = this.projects[i].execution_time
|
|
4188
|
+ this.projects[i].execution_staff= this.projects[i].execution_staff
|
|
4189
|
+ this.projects[i].advice_name = this.projects[i].team.project_team
|
|
4190
|
+
|
|
4191
|
+
|
|
4192
|
+ this.doctor_advices.push(this.projects[i])
|
|
4193
|
+ // this.doctor_advices_2.push(this.project[i])
|
|
4194
|
+ }else{
|
|
4195
|
+ this.projects[i].project_team = this.projects[i].project.project_name
|
|
4196
|
+ this.projects[i].advice_name = this.projects[i].project.project_name
|
|
4197
|
+ this.projects[i].start_time = this.projects[i].start_time
|
|
4198
|
+ this.projects[i].single_dose = this.projects[i].single_dose
|
|
4199
|
+ this.projects[i].single_dose_unit = this.projects[i].unit
|
|
4200
|
+ this.projects[i].execution_time = this.projects[i].execution_time
|
|
4201
|
+ this.projects[i].execution_staff= this.projects[i].execution_staff
|
|
4202
|
+ this.doctor_advices.push(this.projects[i])
|
|
4203
|
+ // this.doctor_advices_2.push(this.projects[i])
|
|
4204
|
+ }
|
|
4205
|
+
|
|
4206
|
+ }
|
|
4207
|
+
|
|
4208
|
+ }
|
|
4209
|
+ }
|
|
4210
|
+
|
|
4211
|
+ }
|
|
4212
|
+
|
|
4213
|
+ console.log("时间我我我哦我我",this.doctor_advices)
|
4147
|
4214
|
if (this.doctor_advices.length <= 6) {
|
4148
|
4215
|
var nl = 6;
|
4149
|
4216
|
this.print_length = 6;
|
|
@@ -4178,6 +4245,8 @@ export default {
|
4178
|
4245
|
this.doctor_advices_2 = doctor_advices_2;
|
4179
|
4246
|
}
|
4180
|
4247
|
// console.log(this.advice_groups);
|
|
4248
|
+
|
|
4249
|
+
|
4181
|
4250
|
} else {
|
4182
|
4251
|
this.loading = false;
|
4183
|
4252
|
this.$message.error("请求数据失败");
|