diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2019-01-11 16:19:17 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2019-01-11 16:19:33 +0800 |
commit | 0c447e860195de10f27ff4ce32c9f0deec8b6f62 (patch) | |
tree | d864162e86a84504c7f44301b135f700f7966821 /usecaseui-portal/src/app/myhttp.service.ts | |
parent | ee500f6f43efc488033f7be223a08b0dbe087af6 (diff) |
Fix instance detail for CCVPN
Change-Id: I8fab7c0c0da0c6a1437b36747c08b96ce03c2d92
Issue-ID: USECASEUI-171
Signed-off-by: guochuyicmri <guochuyi@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/myhttp.service.ts')
-rw-r--r-- | usecaseui-portal/src/app/myhttp.service.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usecaseui-portal/src/app/myhttp.service.ts b/usecaseui-portal/src/app/myhttp.service.ts index ee6ffaca..753c05f6 100644 --- a/usecaseui-portal/src/app/myhttp.service.ts +++ b/usecaseui-portal/src/app/myhttp.service.ts @@ -174,11 +174,11 @@ export class MyhttpService { // Query progress interface getProgress(obj) { - let url = this.url.progress.replace("*_*", obj.serviceId) + obj.operationId; + let url = this.url.progress.replace("*_*", obj.serviceId) + obj.operationId + "?operationType="+obj.operationType; return this.http.get<any>(url); } - getNsProgress(jobid,serviceId){ - let url = this.url.nsProgress.replace("*_*",jobid) + serviceId; + getNsProgress(jobid,serviceId,operationType){ + let url = this.url.nsProgress.replace("*_*",jobid) + serviceId + "&operationType="+operationType; return this.http.get<any>(url); } |