diff options
author | guochuyicmri <guochuyi@chinamobile.com> | 2018-11-10 22:58:58 +0800 |
---|---|---|
committer | guochuyicmri <guochuyi@chinamobile.com> | 2018-11-10 22:59:25 +0800 |
commit | 94cd0c22e87255883931ad77741839cf325aba63 (patch) | |
tree | 51f65e3ff3aa46edd69976a77937392ba7bb9852 /usecaseui-portal/src/app/myhttp.service.ts | |
parent | 1ce0635c6d61b318c33b4b6d9f356eb6db114478 (diff) |
fix e2e service instantiation bugs
Change-Id: If2e4c3e883f0b8dbd0d54f94af3d1c00cc67463e
Issue-ID: USECASEUI-179
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usecaseui-portal/src/app/myhttp.service.ts b/usecaseui-portal/src/app/myhttp.service.ts index 0496eed9..7c77e973 100644 --- a/usecaseui-portal/src/app/myhttp.service.ts +++ b/usecaseui-portal/src/app/myhttp.service.ts @@ -174,7 +174,7 @@ export class MyhttpService { // Create interface createInstance(requestBody, createParams) { // return this.http.get<any>(this.url.createService + createParams); //Local simulation - return this.http.post<any>(this.url.createService, requestBody); + return this.http.post<any>(this.url.createService + createParams, requestBody); } nsCreateInstance(requestBody) { // return this.http.get<any>(this.url.ns_createService); //Local simulation |