From af2965a8484ce0893ef1d1ce5ef6085cf76b0d3e Mon Sep 17 00:00:00 2001 From: wangyuerg Date: Wed, 3 Feb 2021 18:15:46 +0800 Subject: Modify the code for the updated table interface, fix the bug of submitting an and cn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wangyuerg Change-Id: I6ff3c3f36979459ea60a0ee0da1caeea7f3a0465 Issue-ID: USECASEUI-527 --- usecaseui-portal/src/app/core/services/slicingTaskServices.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'usecaseui-portal/src/app/core/services') diff --git a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts index 1a2c9893..e5f55253 100644 --- a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts +++ b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts @@ -59,7 +59,8 @@ export class SlicingTaskServices { //monitor 5G fetchTraffic: this.baseUrl + "/monitoring/queryTimestamp/{queryTimestamp}/trafficData", fetchOnlineusers: this.baseUrl + "/monitoring/queryTimestamp/{queryTimestamp}/onlineUsers", - fetchBandwidth: this.baseUrl + "/monitoring/queryTimestamp/{queryTimestamp}/bandwidth" + fetchBandwidth: this.baseUrl + "/monitoring/queryTimestamp/{queryTimestamp}/bandwidth", + getConnectionLinkTable: this.baseUrl + "/connectionlinktable" // :todo } @@ -218,6 +219,10 @@ export class SlicingTaskServices { let url = this.url.fetchBandwidth.replace("{queryTimestamp}", time); return this.Http.httpAxios("post", url, service_list, failedCallback); } + getConnectionLinkTable( failedCallback?:any ) { // :todo + let url = this.url.getConnectionLinkTable; + return this.Http.httpAxios("get", url, null, failedCallback); + } } -- cgit 1.2.3-korg