diff options
author | cyuamber <xuranyjy@chinamobile.com> | 2019-12-05 15:46:00 +0800 |
---|---|---|
committer | cyuamber <xuranyjy@chinamobile.com> | 2019-12-05 15:46:06 +0800 |
commit | b2bb40bd62c814330bf23a50e65c9dc0fcd98091 (patch) | |
tree | 768380d489122d1d1e9aea8fe64432d9cff00442 /usecaseui-portal/src/app/core | |
parent | bb073de34e081e165d4725c8f94e144c4e5618dc (diff) |
feat: Add view progress component
Change-Id: I55fd27580e8207c381c9d73c4a3a760c5e5ec421
Issue-ID: USECASEUI-352
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 44d87cc5..b8e2690f 100644 --- a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts +++ b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts @@ -36,6 +36,7 @@ export class SlicingTaskServices { deactivateSlicingService:this.baseUrl+"/resource/{serviceId}/deactivate",
terminateSlicingService:this.baseUrl+"/resource/{serviceId}",
queryOperationProgress:this.baseUrl+"resource/{serviceId}/progress",
+ slicingBasicInfo: this.baseUrl + '/task/{taskId}/taskCreationInfo',
}
@@ -80,6 +81,10 @@ export class SlicingTaskServices { submitSlicing (reqbody) {
return this.http.put<any>(this.url.submitSlicing, reqbody)
}
+ getSlicingBasicInfo (taskId: string) {
+ const url = this.url.slicingBasicInfo.replace('{taskId}', taskId);
+ return this.http.get<any>(url);
+ }
// Get slicing business list
getSlicingBusinessList (paramsObj,isSelect: boolean) {
|