diff options
Diffstat (limited to 'usecaseui-portal/src/app/components')
3 files changed, 13 insertions, 15 deletions
diff --git a/usecaseui-portal/src/app/components/charts/pie/pie.component.ts b/usecaseui-portal/src/app/components/charts/pie/pie.component.ts index b1549ab2..7eee9165 100644 --- a/usecaseui-portal/src/app/components/charts/pie/pie.component.ts +++ b/usecaseui-portal/src/app/components/charts/pie/pie.component.ts @@ -48,14 +48,7 @@ export class PieComponent implements OnInit { hoverOffset: 3, avoidLabelOverlap: false, label: this.initData.option.series[0].label, - data:[ - {value:5, name:'11'}, - {value:8, name:'22'}, - {value:10, name:'33'}, - {value:20, name:'44'}, - {value:60, name:'55'}, - - ], + data:[], itemStyle: this.initData.option.series[0].itemStyle } ] diff --git a/usecaseui-portal/src/app/components/customer/customer.component.html b/usecaseui-portal/src/app/components/customer/customer.component.html index 5cdd5d99..5a38944c 100644 --- a/usecaseui-portal/src/app/components/customer/customer.component.html +++ b/usecaseui-portal/src/app/components/customer/customer.component.html @@ -24,7 +24,7 @@ <p> {{"i18nTextDefine_Instance_Count_of_ServiceType" | translate}} </p> <app-bar [initData]="serviceInit" [chartData]="serviceData"></app-bar> <div class="footname" style="width: 100%;height: 40px;line-height: 40px;text-align: center;color: #3C4F8C;margin-top: 20px"> - <img src=".assets/images/customerBarUser.png" alt="customerName" style="margin-right: 5px;margin-bottom: 3px;"> + <img src="./assets/images/customerBarUser.png" alt="customerName" style="margin-right: 5px;margin-bottom: 3px;"> {{this.serviceInit["customer"]}} </div> </div> diff --git a/usecaseui-portal/src/app/components/customer/customer.component.less b/usecaseui-portal/src/app/components/customer/customer.component.less index 3ad7191e..81274dda 100644 --- a/usecaseui-portal/src/app/components/customer/customer.component.less +++ b/usecaseui-portal/src/app/components/customer/customer.component.less @@ -43,8 +43,8 @@ display: inline-block; vertical-align: top; .customer_title { - line-height: 3.5; - height: 5%; + line-height: 3.5em; + //height: 5%; width: 100%; border-bottom: 1px #07A9E1 solid; .customers { @@ -55,6 +55,7 @@ } img { width: 30px; + height: 30px; float: right; margin-top: 7px; } @@ -63,6 +64,7 @@ .customer_detail { height: 95%; width: 100%; + overflow: auto; border-top: 1px #07A9E1 solid; .customer_add { line-height: 3.5; @@ -97,10 +99,11 @@ cursor: pointer; color: rgba(60,79,140,0.5); img { - width: 10%; + width: 30px; + height: 30px; } span { - width: 80%; + width: 70%; padding-left: 10%; display: inline-block; } @@ -119,8 +122,8 @@ display: inline-block; vertical-align: top; .services_type_title { - line-height: 3.5; - height: 5%; + line-height: 3.5em; + //height: 5%; width: 100%; border-bottom: 1px #07A9E1 solid; .servicess { @@ -131,6 +134,7 @@ } img { width: 50px; + height: 50px; float: right; margin-right: -10px; margin-top: 5px; @@ -140,6 +144,7 @@ .services_type_detail { height: 95%; width: 100%; + overflow: auto; border-top: 1px #07A9E1 solid; .services_add { line-height: 3.5; |