diff options
author | cyuamber <xuranyjy@chinamobile.com> | 2019-12-28 09:04:06 +0800 |
---|---|---|
committer | cyuamber <xuranyjy@chinamobile.com> | 2019-12-28 09:04:11 +0800 |
commit | f574888b41dbf6d465973899c0265c4baa251f7f (patch) | |
tree | 27fbf4b4b3b51c2533b5856e6a781c92c4c1171c /usecaseui-portal/src/app/views/fcaps/monitor-5g | |
parent | 9503c398fcbf257cda1b590f4a4e14083fd2053c (diff) |
feat:Optimize loading of slicing page
Change-Id: I7bebe12f9e62268ce40142b518e592a9335040f5
Issue-ID: USECASEUI-369
Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/views/fcaps/monitor-5g')
-rw-r--r-- | usecaseui-portal/src/app/views/fcaps/monitor-5g/monitor-5g.component.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/views/fcaps/monitor-5g/monitor-5g.component.ts b/usecaseui-portal/src/app/views/fcaps/monitor-5g/monitor-5g.component.ts index 39c684af..3ed3fe61 100644 --- a/usecaseui-portal/src/app/views/fcaps/monitor-5g/monitor-5g.component.ts +++ b/usecaseui-portal/src/app/views/fcaps/monitor-5g/monitor-5g.component.ts @@ -54,12 +54,24 @@ export class Monitor5gComponent implements OnInit { }; this.myhttp.getSlicingBusinessList(paramsObj, false).subscribe(res => { const { result_header: { result_code }, result_body: { slicing_business_list, record_number } } = res; + this.loading = false; if (+result_code === 200) { this.total = record_number; this.loading = false; this.listOfData = [].concat(slicing_business_list); this.getChartsData(); + }else { + console.log("getBusinessList false"); + this.isSpinningTraffic = false; + this.isSpinningOnlineuser = false; + this.isSpinningBandwidth = false; } + },(res) => { + this.loading = false; + this.isSpinningTraffic = false; + this.isSpinningOnlineuser = false; + this.isSpinningBandwidth = false; + console.error(res); }) } disabledDate = (current: Date): boolean => { @@ -139,6 +151,9 @@ export class Monitor5gComponent implements OnInit { }] }; } + },(res) => { + this.isSpinningTraffic = false; + console.error(res); }) } fetchOnlineusersData(service_list, time) { @@ -175,6 +190,9 @@ export class Monitor5gComponent implements OnInit { series: this.onlineusersData }; } + },(res) => { + this.isSpinningOnlineuser = false; + console.error(res); }) } fetchBandwidthData(service_list, time) { @@ -212,6 +230,9 @@ export class Monitor5gComponent implements OnInit { series: this.bandwidthData }; } + },(res) => { + this.isSpinningBandwidth = false; + console.error(res); }) } getOnlineuserSeriesData(item) { |