-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.js
71 lines (62 loc) · 1.84 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
var host = "https://www.erupt.xyz/demo"
// var host = "http://127.0.0.1:9999"
document.title = "Erupt 通用数据管理框架"
function toTemplate() {
window.scrollTo(0, 0);
}
var app = angular.module('app', [
'ngRoute'
]).run(function ($rootScope) {
$rootScope.year = new Date().getFullYear();
$rootScope.showHeader = true;
$rootScope.$on('$routeChangeSuccess', function (eve, current, previous) {
$rootScope.currRouter = current.$$route.originalPath;
});
}).config(function ($routeProvider) {
$routeProvider.when('/', {
templateUrl: function (attr) {
return "page/home.html";
}
}).when('/doc', {
templateUrl: function (attr) {
toTemplate();
return "page/doc/doc.html";
}
}).when('/module', {
templateUrl: function (attr) {
toTemplate();
return "page/extra/extra.html";
}
}).when('/contrast', {
templateUrl: function (attr) {
toTemplate();
return "page/contrast/contrast.html";
}
}).when('/component', {
templateUrl: function (attr) {
toTemplate();
return "page/component/component.html";
}
}).otherwise({
redirectTo: '/'
});
})
app.filter('trustAsResourceUrl', ['$sce', function ($sce) {
return function (val) {
return $sce.trustAsResourceUrl(val);
};
}])
app.service('dataService', function ($http) {
return {
eruptReq: function (path, data, callback) {
$http({
method: 'post',
url: host + "/zeta-api/sql" + path,
data: data && JSON.stringify(data),
headers: {'Content-Type': 'application/json'}
}).then(function (req) {
callback(req.data.result);
})
}
}
})