-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathzz_superEntry.html
More file actions
54 lines (47 loc) · 876 Bytes
/
zz_superEntry.html
File metadata and controls
54 lines (47 loc) · 876 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/hero.js"></script>
<script type="text/javascript" src="js/config.js"></script>
<script type="text/javascript" src="js/herohelper.js"></script>
<script type="text/javascript">
var _path = path + 'pages/';
var entryList = [
{
sectionTitle:'cash',
rows:[
{title:'login',url:path+'login.html'},
]
}
]
Hero.on = function(data){
if (data.url) {
Hero.out({command:'goto:'+data.url});
};
};
Hero.viewWillAppear = function() {
};
Hero.viewWillDisAppear = function() {
};
Hero.viewDidload = function() {
};
Hero.ui = {
version:-1,
tintColor:'000000',
nav:{
title:"测试入口",
navigationBarHidden:false
},
views:
[
{
class:'HeroTableView',
frame:{w:'1x',h:'1x'},
name:'list',
data:entryList,
},
]
};
</script>
</head>
</html>