From 940031fc4c897e5719902a84e0d9f819eb7ec8f8 Mon Sep 17 00:00:00 2001 From: j00302280 Date: Mon, 24 Oct 2016 14:21:05 +0800 Subject: Issue ID:GSO-43 Change-Id: If62c79e10185747c3419d2ce25a6f6a42adb580b Signed-off-by: j00302280 --- .../portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'openo-portal/portal-lifecyclemgr/src') diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js index ed860901..8fce8c64 100644 --- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js +++ b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js @@ -171,12 +171,21 @@ function loadGetServiceData(){ var returnVal; var requestUrl = "/openoapi/inventory/v1/services"; + var parameter = { + 'sort': [], + 'pagination': 0, + 'pagesize': 25, + 'condition': {}, + 'serviceId': "" + }; $ .ajax({ type : "POST", url : requestUrl, async: false, contentType : "application/json", + dataType: "json", + data: JSON.stringify(parameter), success : function(jsonobj) { // TODO return according to the json data received. returnVal = jsonobj; -- cgit 1.2.3-korg