feat:Optimize the compatibility of front-end data rendering 83/99883/2
authorcyuamber <xuranyjy@chinamobile.com>
Mon, 23 Dec 2019 06:38:21 +0000 (14:38 +0800)
committerxu ran <xuranyjy@chinamobile.com>
Mon, 23 Dec 2019 06:55:20 +0000 (06:55 +0000)
Change-Id: I8336d68717c86f6b5268e70bfcd5fa0feda9d4a7
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-model/nsi-model.component.ts
usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nssi-management/nssi-model/nssi-model.component.ts
usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/slicing-business-management/slicing-business-model/slicing-business-model.component.ts

index 569a018..0ae21d4 100644 (file)
@@ -27,8 +27,16 @@ export class NsiModelComponent implements OnInit {
             this.isSpinning = false;
             const {result_header: {result_code}, result_body: {hosted_business_list,included_nssi_list} } = res;
             if (+result_code === 200) {
-                this.businessList = hosted_business_list;
-                this.nssiList = included_nssi_list;
+                this.businessList = hosted_business_list.map((item)=>{
+                    if(item.service_instance_id !==null){
+                        return item
+                    }
+                });
+                this.nssiList = included_nssi_list.map((item)=>{
+                    if(item.service_instance_id !==null){
+                        return item
+                    }
+                });
             }
         })
     }
index 034d866..e20d81e 100644 (file)
@@ -25,7 +25,11 @@ export class NssiModelComponent implements OnInit {
             this.isSpinning = false;
             const {result_header: {result_code}, result_body: {hosted_nsi_list} } = res;
             if (+result_code === 200) {
-                this.nsiList = hosted_nsi_list;
+                this.nsiList = hosted_nsi_list.map((item)=>{
+                    if(item.service_instance_id !==null){
+                        return item
+                    }
+                });
             }
         })
     }
index e0328c8..73407ad 100644 (file)
@@ -37,9 +37,16 @@ export class SlicingBusinessModelComponent implements OnInit {
                     item = item.split(';').join('-');
                     return item
                 });
-                this.businessRequirement = [business_demand_info];
+                // area : Front-end analog data
+                let area = ["Beijing;Beijing;Xicheng District", "Beijing;Beijing;Haidian District", "Beijing;Beijing;Chaoyang District"].map(item => {
+                    item = item.split(';').join(' - ');
+                    return item
+                });
+                this.businessRequirement = [{...business_demand_info, area}];
                 this.NSTinfo = [nst_info];
-                this.nsiInfo = [nsi_info];
+                if(nsi_info.nsi_id !==null){
+                    this.nsiInfo = [nsi_info];
+                }
             }
         })
     }