fix:fix the table total of slicing business page 99/99299/2
authorcyuamber <xuranyjy@chinamobile.com>
Sun, 8 Dec 2019 16:56:04 +0000 (00:56 +0800)
committercyuamber <xuranyjy@chinamobile.com>
Sun, 8 Dec 2019 17:23:36 +0000 (01:23 +0800)
Change-Id: I419e3d4f52de8f0d2a5a7b4eabff0652945e4a5f
Issue-ID: USECASEUI-369
Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-table/nsi-table.component.ts
usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nssi-management/nssi-table/nssi-table.component.html
usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nssi-management/nssi-table/nssi-table.component.ts
usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-table/slicing-business-table.component.ts
usecaseui-portal/src/styles.less

index a88d161..48c8d5a 100644 (file)
@@ -20,7 +20,7 @@ export class NsiTableComponent implements OnInit {
     listOfData: any[] = [];
     pageIndex: number = 1;
     pageSize: number = 10;
-    total: number = 100;
+    total: number = 0;
     loading = false;
     isSelect: boolean = false;
     statusOptions: any[] = BUSINESS_STATUS;
@@ -37,9 +37,9 @@ export class NsiTableComponent implements OnInit {
             this.isSelect = true;
         }
         this.myhttp.getSlicingNsiList(paramsObj,this.isSelect).subscribe (res => {
-            const { result_header: { result_code }, result_body: { nsi_service_instances } } = res;
+            const { result_header: { result_code }, result_body: { nsi_service_instances,record_number } } = res;
             if (+result_code === 200) {
-                this.total = nsi_service_instances.length;
+                this.total = record_number;
                 this.loading = false;
                 this.listOfData = nsi_service_instances;
             }
index 926350b..00e5c5c 100644 (file)
@@ -20,7 +20,7 @@ export class NssiTableComponent implements OnInit {
     listOfData: any[] = [];
     pageIndex: number = 1;
     pageSize: number = 10;
-    total: number = 100;
+    total: number = 0;
     loading = false;
     isSelect: boolean = false;
     statusOptions: any[] = BUSINESS_STATUS;
@@ -37,9 +37,9 @@ export class NssiTableComponent implements OnInit {
             this.isSelect = true;
         }
         this.myhttp.getSlicingNssiList(paramsObj,this.isSelect).subscribe (res => {
-            const { result_header: { result_code }, result_body: { nssi_service_instances } } = res;
+            const { result_header: { result_code }, result_body: { nssi_service_instances,record_number } } = res;
             if (+result_code === 200) {
-                this.total = nssi_service_instances.length;
+                this.total = record_number;
                 this.loading = false;
                 this.listOfData = nssi_service_instances;
             }
index ffcb2fe..0d4c6df 100644 (file)
@@ -26,7 +26,7 @@ export class SlicingBusinessTableComponent implements OnInit {
     listOfData: any[] = [];
     pageIndex: number = 1;
     pageSize: number = 10;
-    total: number = 100;
+    total: number = 0;
     loading = false;
     isSelect: boolean = false;
     statusOptions: any[] = BUSINESS_STATUS;
@@ -45,9 +45,9 @@ export class SlicingBusinessTableComponent implements OnInit {
             this.isSelect = true;
         }
         this.myhttp.getSlicingBusinessList(paramsObj,this.isSelect).subscribe (res => {
-            const { result_header: { result_code }, result_body: { slicing_business_list } } = res;
+            const { result_header: { result_code }, result_body: { slicing_business_list,record_number } } = res;
             if (+result_code === 200) {
-                this.total = slicing_business_list.length;
+                this.total = record_number;
                 this.loading = false;
                 this.listOfData = slicing_business_list.map((item)=>{
                     if(item.last_operation_progress < 100){
index 5d372eb..4d647f7 100644 (file)
@@ -828,4 +828,7 @@ nz-notification-container .ant-notification{
 }
 .slicing-resource-table-list{
   padding: 0 20px 0 0!important;
+}
+.taskmodel_list{
+  margin-bottom: 20px;
 }
\ No newline at end of file