diff options
Diffstat (limited to 'usecaseui-portal/src/app')
5 files changed, 12 insertions, 10 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 0ad68c55..21132892 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 @@ -79,13 +79,15 @@ export class Monitor5gComponent implements OnInit { if (this.selectDate !== 0) { time = this.selectDate } - const service_list = []; + const requestBody = { + service_list:[] + }; this.listOfData.forEach(item => { - service_list.push({ service_id: item.service_instance_id }); + requestBody.service_list.push({ service_id: item.service_instance_id }); }); - this.fetchTrafficData(service_list, time); - this.fetchOnlineusersData(service_list, time); - this.fetchBandwidthData(service_list, time); + this.fetchTrafficData(requestBody, time); + this.fetchOnlineusersData(requestBody, time); + this.fetchBandwidthData(requestBody, time); } fetchTrafficData(service_list, time) { this.myhttp.getFetchTraffic(service_list, time).subscribe(res => { diff --git a/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.html b/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.html index 9de2b88d..336e11c6 100644 --- a/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.html +++ b/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.html @@ -9,7 +9,7 @@ <th>Service Type</th> <th>S-NSSAI</th> <th>Status</th> - <th width="100px">Detail</th> + <th width="110px">Detail</th> </tr> </thead> <tbody> @@ -37,7 +37,7 @@ <th>Service Type</th> <th>Environment Context</th> <th>Status</th> - <th width="100px">Detail</th> + <th width="110px">Detail</th> </tr> </thead> <tbody> diff --git a/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nssi-management/nssi-model/nssi-model.component.html b/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nssi-management/nssi-model/nssi-model.component.html index e50957b6..946c6e05 100644 --- a/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nssi-management/nssi-model/nssi-model.component.html +++ b/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nssi-management/nssi-model/nssi-model.component.html @@ -13,7 +13,7 @@ <th>Service Instance Name</th> <th>Service Type</th> <th>Status</th> - <th width="100px">Detail</th> + <th width="110px">Detail</th> </tr> </thead> <tbody> diff --git a/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-model/slicing-business-model.component.html b/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-model/slicing-business-model.component.html index 793b8192..fd21b524 100644 --- a/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-model/slicing-business-model.component.html +++ b/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-model/slicing-business-model.component.html @@ -15,7 +15,7 @@ <th>Service Instance Name</th> <th>Service Type</th> <th>Status</th> - <th width="100px">Detail</th> + <th width="110px">Detail</th> </tr> </thead> <tbody> diff --git a/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-table/slicing-business-table.component.html b/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-table/slicing-business-table.component.html index 5ca936bc..9dbd1c2b 100644 --- a/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-table/slicing-business-table.component.html +++ b/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-table/slicing-business-table.component.html @@ -30,7 +30,7 @@ <th>S-NSSAI</th> <th>Status</th> <th width="180px">Aciton</th> - <th width="100px">Detail</th> + <th width="110px">Detail</th> </tr> </thead> <tbody> |