diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-14 18:51:55 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2019-05-14 18:51:58 +0800 |
commit | 990415a4093a32842ed876767f077cdd9ffc20d4 (patch) | |
tree | f367963432438b4527fac940a816777a014c13a4 /usecaseui-portal/src/app/components/customer/customer.component.ts | |
parent | cd934c497a6bf26992bcb42e27a179479001658b (diff) |
User and service type management interface
Change-Id: I03106abecf56dd1b94efd35a192c9db6f77925e3
Issue-ID: USECASEUI-212
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/components/customer/customer.component.ts')
-rw-r--r-- | usecaseui-portal/src/app/components/customer/customer.component.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usecaseui-portal/src/app/components/customer/customer.component.ts b/usecaseui-portal/src/app/components/customer/customer.component.ts index 61e582c6..8a84e1b6 100644 --- a/usecaseui-portal/src/app/components/customer/customer.component.ts +++ b/usecaseui-portal/src/app/components/customer/customer.component.ts @@ -145,7 +145,7 @@ export class CustomerComponent implements OnInit { this.managemencs.getCustomersPie().subscribe((data) => { this.CUChartData = { series: [{ - data: data + data:data.customerServiceList }] } console.log(this.CUChartData) @@ -158,8 +158,8 @@ export class CustomerComponent implements OnInit { serviceData: Object; serviceInit: Object = { customer: '', - height: 230, - width: 410, + width: 280, + height: 210, option: { tooltip: { show: true, @@ -327,7 +327,7 @@ export class CustomerComponent implements OnInit { this.name_s = []; this.value_s = []; this.managemencs.getCustomersColumn(item).subscribe((data) => { - data.forEach((item) => { + data.list.forEach((item) => { this.name_s.push(item.name); this.value_s.push(item.value); }) |