diff options
author | 2019-05-15 00:47:39 +0000 | |
---|---|---|
committer | 2019-05-15 00:47:39 +0000 | |
commit | 2bfc7618524a89dfd3bd89fff72247b99f06ba8f (patch) | |
tree | 260ca4fc728acc5eb0f116b82aba71f36e587532 /usecaseui-portal/src/app/components/customer/customer.component.ts | |
parent | 3de5e12f3dbf3e2c5daf2ecba8cdaa23a374e91e (diff) | |
parent | 990415a4093a32842ed876767f077cdd9ffc20d4 (diff) |
Merge "User and service type management interface"
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); }) |