diff options
author | Tao Shen <shentao@chinamobile.com> | 2019-12-09 03:46:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-12-09 03:46:17 +0000 |
commit | 0b0f8e4644bdfc110558d055ca2e01b878809b5c (patch) | |
tree | cf48b259fa13ea2759e80e6fd043045d042dbe4f /usecaseui-portal/src/app/core | |
parent | 4abc9917d8d474b5bd3ba4f570e39e3e594de4b6 (diff) | |
parent | b821e657a2e05193c1d4ef014cb9a98a08ed2c15 (diff) |
Merge "feat:add detail model of slicing nsi page and add nssi detail model Base code"
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 7c50e561..852dbf09 100644 --- a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts +++ b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts @@ -143,6 +143,11 @@ export class SlicingTaskServices { }
return this.http.get<any>(url);
}
+ //get slicingNsiDetail
+ getSlicingNsiDetail(nsiId: string){
+ let url = this.url.slicingNsiDetail.replace("{nsiId}",nsiId);
+ return this.http.get<any>(url);
+ }
// Get slicing nssi list
getSlicingNssiList (paramsObj,isSelect: boolean) {
let url = this.url.slicingNssiList .replace("{pageNo}", paramsObj.pageNo)
|