|
|
|
@ -83,8 +83,8 @@ export class MeetPlanComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
preparelevels: any |
|
|
|
|
plcheck: boolean //编制级别勾选框
|
|
|
|
|
IsNewData='' //维护更新活新增
|
|
|
|
|
displayedColumns: string[] = ['state','unitname', 'level', 'addname', 'addtime', 'plantype', 'isopen', 'projectlevel','passstate','weihustate', 'operation']; |
|
|
|
|
IsNewData = '' //维护更新活新增
|
|
|
|
|
displayedColumns: string[] = ['state', 'unitname', 'level', 'addname', 'addtime', 'plantype', 'isopen', 'projectlevel', 'passstate', 'weihustate', 'operation']; |
|
|
|
|
tabledataSource |
|
|
|
|
typePlan//新预案类型
|
|
|
|
|
unitname//预案名称
|
|
|
|
@ -142,7 +142,7 @@ export class MeetPlanComponent implements OnInit {
|
|
|
|
|
HasChildrenPlanLevel: this.plcheck || '', |
|
|
|
|
PageNumber: this.PageNumber || '1', |
|
|
|
|
PageSize: this.pageSizeOptions[0], |
|
|
|
|
IsNewData:this.IsNewData, |
|
|
|
|
IsNewData: this.IsNewData, |
|
|
|
|
} |
|
|
|
|
this.http.get("/api/PlanComponentsMajor", { params: paramsdata }).subscribe((data: any) => { |
|
|
|
|
this.length = data.totalCount |
|
|
|
@ -166,29 +166,29 @@ export class MeetPlanComponent implements OnInit {
|
|
|
|
|
this.PageNumber = 1 |
|
|
|
|
this.pageEvent.pageIndex = 0 |
|
|
|
|
let reservePlanType |
|
|
|
|
this.reservePlanType ? reservePlanType = JSON.parse(JSON.stringify(this.reservePlanType)) : reservePlanType = '' |
|
|
|
|
if (this.reservePlanType && this.reservePlanType.length != 0) { |
|
|
|
|
reservePlanType = eval(this.reservePlanType.join("|")) |
|
|
|
|
} |
|
|
|
|
let paramsdata: any = { |
|
|
|
|
Name: this.unitname || '', |
|
|
|
|
planCategories: this.level || [6, 7], |
|
|
|
|
//PlanType:reservePlanType||'',
|
|
|
|
|
DisasterType: this.typePlan || '', |
|
|
|
|
CreatorName: this.addname || '', |
|
|
|
|
AuditStatus: this.unitstate || '', |
|
|
|
|
CreationTimeRangeStart: this.addtime || '', |
|
|
|
|
CreationTimeRangeEnd: this.endtime || '', |
|
|
|
|
PlanLevel: this.projectlevel || '', |
|
|
|
|
HasChildrenPlanLevel: this.plcheck || '', |
|
|
|
|
PageNumber: this.PageNumber || '1', |
|
|
|
|
PageSize: this.pageSizeOptions[0], |
|
|
|
|
IsNewData:this.IsNewData, |
|
|
|
|
} |
|
|
|
|
this.http.get("/api/PlanComponentsMajor", { params: paramsdata }).subscribe((data: any) => { |
|
|
|
|
this.length = data.totalCount |
|
|
|
|
this.tabledataSource = data.items |
|
|
|
|
}) |
|
|
|
|
this.reservePlanType ? reservePlanType = JSON.parse(JSON.stringify(this.reservePlanType)) : reservePlanType = '' |
|
|
|
|
if (this.reservePlanType && this.reservePlanType.length != 0) { |
|
|
|
|
reservePlanType = eval(this.reservePlanType.join("|")) |
|
|
|
|
} |
|
|
|
|
let paramsdata: any = { |
|
|
|
|
Name: this.unitname || '', |
|
|
|
|
planCategories: this.level || [6, 7], |
|
|
|
|
//PlanType:reservePlanType||'',
|
|
|
|
|
DisasterType: this.typePlan || '', |
|
|
|
|
CreatorName: this.addname || '', |
|
|
|
|
AuditStatus: this.unitstate || '', |
|
|
|
|
CreationTimeRangeStart: this.addtime || '', |
|
|
|
|
CreationTimeRangeEnd: this.endtime || '', |
|
|
|
|
PlanLevel: this.projectlevel || '', |
|
|
|
|
HasChildrenPlanLevel: this.plcheck || '', |
|
|
|
|
PageNumber: this.PageNumber || '1', |
|
|
|
|
PageSize: this.pageSizeOptions[0], |
|
|
|
|
IsNewData: this.IsNewData, |
|
|
|
|
} |
|
|
|
|
this.http.get("/api/PlanComponentsMajor", { params: paramsdata }).subscribe((data: any) => { |
|
|
|
|
this.length = data.totalCount |
|
|
|
|
this.tabledataSource = data.items |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -215,9 +215,9 @@ export class MeetPlanComponent implements OnInit {
|
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
|
/* if(element.auditStatus == 4){ |
|
|
|
|
this.snackBar.open('审核退回的预案需要修改后方可再次提交审核!','确定',config); |
|
|
|
|
} */ |
|
|
|
|
if (element.auditStatus == 4 || element.auditStatus == 32) { |
|
|
|
|
this.snackBar.open('审核退回的预案需要修改后方可再次提交审核!', '确定', config); |
|
|
|
|
} |
|
|
|
|
this.http.put(`/api/PlanComponentsMajor/${element.id}/Commit`, "").subscribe(data => { |
|
|
|
|
this.getAlltabledate() |
|
|
|
|
}, err => { |
|
|
|
@ -369,7 +369,7 @@ export class MeetPlanComponent implements OnInit {
|
|
|
|
|
this.unitstate = '' |
|
|
|
|
this.projectlevel = '' |
|
|
|
|
this.plcheck = false |
|
|
|
|
this.IsNewData='' |
|
|
|
|
this.IsNewData = '' |
|
|
|
|
this.getAlltabledate() |
|
|
|
|
} |
|
|
|
|
//新增预案弹窗
|
|
|
|
|