|
|
|
@ -350,7 +350,7 @@ export class EntryPlanComponent implements OnInit {
|
|
|
|
|
customPlan: boolean = false; //自定义预案
|
|
|
|
|
getAllPlanInfo() { |
|
|
|
|
let follow; |
|
|
|
|
if (this.isFollowed == "") { |
|
|
|
|
if (!this.isFollowed) { |
|
|
|
|
follow = ""; |
|
|
|
|
} |
|
|
|
|
if (this.isFollowed == "0") { |
|
|
|
@ -379,7 +379,7 @@ export class EntryPlanComponent implements OnInit {
|
|
|
|
|
AuditStatus: this.toExamine || "", |
|
|
|
|
PlanLevel: this.preparelevel || "", |
|
|
|
|
HasChildrenPlanLevel: this.plcheck || "", |
|
|
|
|
IsFollowed: follow, |
|
|
|
|
IsCompanyFollow: follow, |
|
|
|
|
PageNumber: this.PageNumber || "1", |
|
|
|
|
PageSize: this.pageSizeOptions[0], |
|
|
|
|
Sort: this.integritySort ? "integrityscore" : "", |
|
|
|
@ -395,8 +395,8 @@ export class EntryPlanComponent implements OnInit {
|
|
|
|
|
.subscribe((data: any) => { |
|
|
|
|
this.length = data.totalCount; |
|
|
|
|
this.allPlanInfo = data; |
|
|
|
|
|
|
|
|
|
this.tabledataSource = data.items; |
|
|
|
|
console.log('预案列表',this.tabledataSource) |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|