diff options
author | cyuamber <xuranyjy@chinamobile.com> | 2019-12-09 10:13:59 +0800 |
---|---|---|
committer | cyuamber <xuranyjy@chinamobile.com> | 2019-12-09 10:14:06 +0800 |
commit | a0e23263ff319da6b34b122bcde42a810599df4c (patch) | |
tree | 5993552f09d7e65776e2c1a706b828b1998807eb /usecaseui-portal/src/app/core | |
parent | 9b2981c50e58fa641621d4a4bcb9d8827eb5968d (diff) |
feat:add model business code of slicing business page
Change-Id: I08ddb3d37e9d96c44c596b535083306992f2bf52
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 98be0117..7c50e561 100644 --- a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts +++ b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts @@ -128,6 +128,11 @@ export class SlicingTaskServices { let url = this.url.queryOperationProgress.replace("{serviceId}", paramsObj.serviceId);
return this.http.get<any>(url);
}
+ //get slicingBusinessDetail
+ getSlicingBusinessDetail(businessId: string){
+ let url = this.url.slicingBusinessDetail.replace("{businessId}",businessId);
+ return this.http.get<any>(url);
+ }
// Get slicing nsi list
getSlicingNsiList (paramsObj,isSelect: boolean) {
let url = this.url.slicingNsiList .replace("{pageNo}", paramsObj.pageNo)
|