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/webapp/app/uui/fusion | |
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/webapp/app/uui/fusion')
-rw-r--r-- | usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/controller/left-menuController.js | 3 |
1 files changed, 2 insertions, 1 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 +}]); |