|
@@ -73,6 +73,8 @@ export class WorkerStatisticsDetailComponent implements OnInit {
|
73
|
73
|
}
|
74
|
74
|
if(this.specialClose){
|
75
|
75
|
postData.specialClose = 1;
|
|
76
|
+ }else{
|
|
77
|
+ postData.specialClose = this.route.snapshot.params.specialClose === 'null' ? undefined : this.route.snapshot.params.specialClose;
|
76
|
78
|
}
|
77
|
79
|
if(this.type === 'workerStatistics'){
|
78
|
80
|
postData.groupId = this.groupId === 'null' ? undefined : this.groupId;
|
|
@@ -99,7 +101,7 @@ export class WorkerStatisticsDetailComponent implements OnInit {
|
99
|
101
|
//查看积分详情
|
100
|
102
|
integralDetail(obj) {
|
101
|
103
|
this.router.navigateByUrl(
|
102
|
|
- `/main/${this.type}/workerStatisticsDetail/${this.currentPersonId}/${this.startTime}/${this.endTime}/${this.groupId}/${this.type}/${this.deptId}/orderDetail/${obj.id}/3`
|
|
104
|
+ `/main/${this.type}/workerStatisticsDetail/${this.currentPersonId}/${this.startTime}/${this.endTime}/${this.groupId}/${this.type}/${this.deptId}/${this.route.snapshot.params.specialClose}/orderDetail/${obj.id}/3`
|
103
|
105
|
);
|
104
|
106
|
}
|
105
|
107
|
//关闭
|