diff options
author | jin xin <j00101220@huawei.com> | 2016-10-24 08:51:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@open-o.org> | 2016-10-24 08:51:26 +0000 |
commit | 30908ad02cf5255b70fea074b5830feffd4f8cd4 (patch) | |
tree | ba59ee4449437cc490695b7144244f991c8c1168 | |
parent | 00c37dd4204436a0d2e5ad7ca6352d1b2750c94d (diff) | |
parent | 7f2a835a18a1472b4ed8a95fc21a3e47dfc10e08 (diff) |
Merge "Issue ID: GSO-43" into sun
-rw-r--r-- | openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js | 9 |
1 files changed, 9 insertions, 0 deletions
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;
|