From 6efb2a0076a544b5714bccba214d81904264540d Mon Sep 17 00:00:00 2001
From: xufenglei <xufenglei>
Date: Tue, 12 Jun 2018 08:49:31 +0800
Subject: [PATCH] 报表展示 增加镇村选项
---
src/app/routes/systems/organization/organization-list/organization-list.component.ts | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/src/app/routes/systems/organization/organization-list/organization-list.component.ts b/src/app/routes/systems/organization/organization-list/organization-list.component.ts
index eb79a20..38ced8b 100644
--- a/src/app/routes/systems/organization/organization-list/organization-list.component.ts
+++ b/src/app/routes/systems/organization/organization-list/organization-list.component.ts
@@ -93,8 +93,8 @@
public msgSrv: NzMessageService,
private modalHelper: ModalHelper,
private router: Router,
- private sensorsService:SensorsService,
- private alarmConfigService:AlarmConfigService,
+ private sensorsService: SensorsService,
+ private alarmConfigService: AlarmConfigService,
) {}
ngOnInit() {
@@ -216,15 +216,19 @@
this.grid.loading = true;
}, 1);
zip(
- this.sensorsService.getPagingList({pageIndex:0,pageSize:0}, null),
+ this.sensorsService.getPagingList({pageIndex: 0, pageSize: 0}, null),
this.alarmConfigService.getByOid( row.id )
).subscribe(([pageBean, resultBean]) => {
console.log(pageBean);
this.grid.loading = false;
this.organizationService.handle = 'config' ;
this.organizationService.data = row;
- this.organizationService.config = {pageBean,resultBean};
+ this.organizationService.config = {pageBean, resultBean};
this.organizationService.title = '������������';
});
}
+
+ registration(row) {
+ sessionStorage.setItem('organization', JSON.stringify(row));
+ }
}
--
Gitblit v1.8.0