diff options
author | Luji7 <lu.ji3@zte.com.cn> | 2017-09-27 17:20:35 +0800 |
---|---|---|
committer | Luji7 <lu.ji3@zte.com.cn> | 2017-09-27 17:20:43 +0800 |
commit | 10c71729955623307b0b4a170a6ef004ab188a91 (patch) | |
tree | 292e0b2625cd8246e19b155dd0578147b6eccc9e /usecaseui-monitor/src/main | |
parent | d965932b2dfdb9114820b3a715a998c3e6114373 (diff) |
add lcm page
Change-Id: I52fa1ae3efaa4836f449c9c6e60b23165449fd85
Issue-Id: USECASEUI-36
Signed-off-by: Luji7 <lu.ji3@zte.com.cn>
Diffstat (limited to 'usecaseui-monitor/src/main')
-rw-r--r-- | usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js | 3 | ||||
-rw-r--r-- | usecaseui-monitor/src/main/webapp/index.html | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js b/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js index 07935836..abd58cef 100644 --- a/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js +++ b/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js @@ -15,6 +15,7 @@ */ app.controller('cmCtrl',['$scope',function ($scope) { $scope.routeData = [ + {name : 'Services' , url : 'app/uui/fusion/scripts/view-models/lifecyclemanagement.html' , nclass : 'fa fa-users'}, {name : 'Alarm' , url : 'app/uui/fusion/scripts/view-models/alarm.html' , nclass : 'fa fa-users'}, {name : 'Performance' , url : 'app/uui/fusion/scripts/view-models/performance.html', nclass : 'fa fa-cog'}, {name : 'About Performance Froms' , url : 'app/uui/fusion/scripts/view-models/performance-details.html', nclass : 'fa fa-cubes'}, @@ -26,4 +27,4 @@ app.controller('cmCtrl',['$scope',function ($scope) { $scope.isActiveTab = function (tabRoute) { return tabRoute == $scope.currentTab; } -}]);
\ No newline at end of file +}]); diff --git a/usecaseui-monitor/src/main/webapp/index.html b/usecaseui-monitor/src/main/webapp/index.html index cbfd8a8c..58f73005 100644 --- a/usecaseui-monitor/src/main/webapp/index.html +++ b/usecaseui-monitor/src/main/webapp/index.html @@ -47,6 +47,8 @@ <script src="app/uui/fusion/scripts/controller/left-menuController.js"></script> <script src="app/uui/fusion/scripts/controller/performance-detailsController.js"></script> <script src="app/uui/fusion/scripts/controller/performanceController.js"></script> + <script src="app/uui/fusion/scripts/controller/lcmController.js"></script> + <script src="app/uui/fusion/scripts/controller/ServiceTemplateService.js"></script> <title></title> </head> @@ -55,4 +57,4 @@ <ng-view></ng-view> </body> -</html>
\ No newline at end of file +</html> |