diff options
author | Tao Shen <shentao@chinamobile.com> | 2019-09-05 10:48:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-09-05 10:48:23 +0000 |
commit | ed3a07f731f0c6f70234ca107ac46f44ec538faf (patch) | |
tree | 2efa9f43c1f978475e3afe55895e7a91002f8814 /usecaseui-portal/src/app/core | |
parent | e3957de85b1118dee2d3c903e60adf2bfcd69afe (diff) | |
parent | 4bb3fb127b7b212afccf676fd288959c2b841650 (diff) |
Merge "feat:delete extra local json"
Diffstat (limited to 'usecaseui-portal/src/app/core')
-rw-r--r-- | usecaseui-portal/src/app/core/services/homes.service.ts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usecaseui-portal/src/app/core/services/homes.service.ts b/usecaseui-portal/src/app/core/services/homes.service.ts index 321642db..98d60b52 100644 --- a/usecaseui-portal/src/app/core/services/homes.service.ts +++ b/usecaseui-portal/src/app/core/services/homes.service.ts @@ -62,13 +62,9 @@ export class HomesService { } getSourceNames() { - return this.http.get<any>(this.baseUrl + '/alarm/getSourceNames/'); + return this.http.get<any>(this.url.sourceNames); } - getstatuscount() { - let httpurl = this.baseUrl + '/alarm/statusCount'; - return this.http.get<any>(httpurl); - } getAlarmDetailData(id) { let httpurl = this.baseUrl + '/alarm/getAlarmsHeaderDetail/' + id; return this.http.get<any>(httpurl); |