diff options
author | c00149107 <chenchuanyu@huawei.com> | 2017-04-27 19:30:09 +0800 |
---|---|---|
committer | c00149107 <chenchuanyu@huawei.com> | 2017-04-27 19:30:09 +0800 |
commit | e017b3d52f52f0509dfd8d85c140145ba09386e2 (patch) | |
tree | d8a1b1078f8339c8772562719f04234d47e70651 /lifecyclemgr | |
parent | 0c369cd3c108a1c8a7ce7bcb7e69260adc3fdc15 (diff) |
Set segmentId as serviceId for gsov2.0.0release/mercury
Set segmentId as serviceId for gso
Change-Id: I85d6bc1d30510969d99115c9a5c17fe70e477fe0
Issue-ID:CLIENT-200
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
Diffstat (limited to 'lifecyclemgr')
-rw-r--r-- | lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js b/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js index 8412dcab..138c6edf 100644 --- a/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js +++ b/lifecyclemgr/src/main/webapp/lifecyclemgr/js/app.js @@ -679,7 +679,7 @@ var app = angular.module("lcApp", ["ui.router", "ngTable"])/*, 'ui.bootstrap', ' $scope.init = function() {
//console.log("Overlay VPN... ng-init + " + $rootScope.lcmModelTemplate);
- DataService.getOverlayData($stateParams.id)
+ DataService.getOverlayData($stateParams.segmentId)
.then(function(data){
$scope.overlayData = [];
$scope.overlayData[0] = data;
@@ -736,7 +736,7 @@ var app = angular.module("lcApp", ["ui.router", "ngTable"])/*, 'ui.bootstrap', ' $scope.init = function() {
//console.log("Underlay VPN... ng-init + " + $rootScope.lcmModelTemplate);
- DataService.getUnderlayData($stateParams.id)
+ DataService.getUnderlayData($stateParams.segmentId)
.then(function(response){
$scope.underlayVPN = [];
$scope.underlayVPN[0] = response;
@@ -820,7 +820,7 @@ var app = angular.module("lcApp", ["ui.router", "ngTable"])/*, 'ui.bootstrap', ' var vnffgData = fetchDataForVnffg(jsonData);
$('#vnffgInfoTable').html(Mustache.to_html(table_tpl, vnffgData));
};
- DataService.loadNfvoServiceDetails($stateParams.id, processFun);
+ DataService.loadNfvoServiceDetails($stateParams.segmentId, processFun);
function fetchDataForVnf(jsonData) {
var header = ["Vnf instance Name"];
|