aboutsummaryrefslogtreecommitdiffstats
path: root/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/appUUI.js
diff options
context:
space:
mode:
authorshentao <shentao@chinamobile.com>2018-01-29 16:01:39 +0800
committershentao <shentao@chinamobile.com>2018-01-29 16:01:46 +0800
commit38e9a13577863ec33962aa52885250845b40be98 (patch)
tree4a1d685724ad36289a0eafb877be37990c23bedd /usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/appUUI.js
parent4395945178cf9731e488cc0e92f2d6aa53663d2a (diff)
Fix alarm list page bug
Change-Id: I69a81921d62a4d483e69e0d3b24614e269a1858d Issue-ID: USECASEUI-101 Signed-off-by: shentao <shentao@chinamobile.com>
Diffstat (limited to 'usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/appUUI.js')
-rw-r--r--usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/appUUI.js23
1 files changed, 13 insertions, 10 deletions
diff --git a/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/appUUI.js b/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/appUUI.js
index 5d73ba97..8094710c 100644
--- a/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/appUUI.js
+++ b/usecaseui-monitor/src/main/webapp/app/uui/fusion/scripts/appUUI.js
@@ -1,4 +1,3 @@
-
/*
Copyright (C) 2017 CMCC, Inc. and others. All rights reserved.
@@ -14,10 +13,9 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
-var app = angular.module('uui', ['ng', 'ngRoute','ui.bootstrap','ui.grid','ngTouch','ngAnimate',
- 'ui.grid.cellNav', 'ui.grid.edit', 'ui.grid.resizeColumns', 'ui.grid.pinning', 'ui.grid.selection',
- 'ui.grid.moveColumns', 'ui.grid.exporter', 'ui.grid.importer', 'ui.grid.grouping','ui.grid.pagination'
- ,'ui.grid.autoResize','nvd3','smart-table']);
+// 创建模块,同时添加依赖的服务
+var app = angular.module('uui', ['ng', 'ngRoute', 'ui.bootstrap', 'ngTouch', 'ngAnimate', 'nvd3', 'smart-table', 'ui.tree']);
+// 配置路由 ngRoute 也可以是第三方路由ui-router
app.config(function ($routeProvider) {
$routeProvider
.when('/alarm', {
@@ -29,9 +27,14 @@ app.config(function ($routeProvider) {
.when('/pre-details', {
templateUrl: 'app/uui/fusion/scripts/view-models/performance-details.html'
})
- .when('/common', {
- templateUrl: 'app/uui/fusion/scripts/view-models/left-menu.html'
- })
- .otherwise({redirectTo: '/common'})
+ .when('/common', {
+ templateUrl: 'app/uui/fusion/scripts/view-models/left-menu.html'
+ })
+ .otherwise({
+ redirectTo: '/common'
+ })
});
-var global_url = "/api/usecaseui-server/v1";
+
+// 请求数据地址
+// var global_url = "http://localhost:8082/api/usecaseui/server/v1";
+var global_url = "http://10.73.233.207:8082/api/usecaseui/server/v1"; \ No newline at end of file