diff options
author | cyuamber <xuranyjy@chinamobile.com> | 2019-12-09 15:31:48 +0800 |
---|---|---|
committer | cyuamber <xuranyjy@chinamobile.com> | 2019-12-09 15:31:57 +0800 |
commit | 99770660d5b35c75e6127c14c4e362720b200747 (patch) | |
tree | 309c9f93de666e98c22f3b556fc617802045c462 /usecaseui-portal/src/app/core | |
parent | 926cecdfcb192ffb87d3a2bdbc984ae6a691885d (diff) |
feat:add detail model of slicing nssi page
Change-Id: Id30e6bee53dbdd7dbac4805e8df3ef8a52898996
Issue-ID: USECASEUI-369
Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/core')
-rw-r--r-- | usecaseui-portal/src/app/core/services/slicingTaskServices.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts index b11eeba5..3380d832 100644 --- a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts +++ b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts @@ -158,6 +158,11 @@ export class SlicingTaskServices { }
return this.http.get<any>(url);
}
+ //get slicingNssiDetail
+ getSlicingNssiDetail(nssiId: string){
+ let url = this.url.slicingNssiDetail.replace("{nssiId}",nssiId);
+ return this.http.get<any>(url);
+ }
}
|