summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views
diff options
context:
space:
mode:
authorcyuamber <xuranyjy@chinamobile.com>2019-12-16 10:43:47 +0800
committercyuamber <xuranyjy@chinamobile.com>2019-12-16 10:43:51 +0800
commit5f0964a33352cb3a0ae77b6671b733340d6c3371 (patch)
treeec608bc639e9af8c8e188e18d55b84110ebd0446 /usecaseui-portal/src/app/views
parent59755b5b5b3cdbdd2334d542b410dd5c7376ee06 (diff)
feat:optimize page style and modify the parameter request body
Change-Id: I204486076eaa07b98e0d4bb4e2c541df31da79b0 Issue-ID: USECASEUI-369 Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/views')
-rw-r--r--usecaseui-portal/src/app/views/fcaps/monitor-5g/monitor-5g.component.ts12
-rw-r--r--usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.html4
-rw-r--r--usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nssi-management/nssi-model/nssi-model.component.html2
-rw-r--r--usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-model/slicing-business-model.component.html2
-rw-r--r--usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-table/slicing-business-table.component.html2
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>