-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpay1.html
More file actions
103 lines (101 loc) · 3.02 KB
/
Copy pathpay1.html
File metadata and controls
103 lines (101 loc) · 3.02 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/config.js"></script>
<script type="text/javascript" src="js/shareViews.js"></script>
<script type="text/javascript" src="js/herohelper.js"></script>
<script type="text/javascript" src="js/hero.js"></script>
<script type="text/javascript">
Hero.viewWillAppear = function(){
}
Hero.on = function(json){
if(json.click === 'pay'){
localStorage.pageType = 'duihuan';
Hero.command('goto:'+path+'/pay3.html');
}
if (json.click === 'copy') {
window.copyTextToClipboard(inpoutByteCode);
};
}
Hero.ui = {
version:0,
backgroundColor:'ffffff',
tintColor:'000000',
nav:{
title:"区块链-集五福",
navigationBarHidden:true
},
views:[
{
class:'HeroImageView',
frame:{w:'1x',h:'200'},
image:path+'images/background.jpg'
},
{
class:'HeroImageView',
frame:{x:'0.5x-150',y:'40',w:'300',h:'90'},
image:path+'images/2018.png'
},
{
class:'UIView',
frame:{w:'1x',y:'200',h:'100'},
subViews:[
{
class:'HeroLabel',
frame:{x:'16',y:'20',h:'30',w:'200'},
size:20,
textColor:'333333',
text:'ETH 1个'
},
{
class:'HeroLabel',
frame:{x:'16',y:'50',h:'30',w:'200'},
size:13,
textColor:'999999',
text:'由捐赠者和销售福签所得组成'
},
{
class:'HeroButton',
frame:{r:'16',w:'66',y:'0.5x-22',h:'44'},
title:'兑换',
backgroundColor:'bd3a53',
titleColor:'eeeeee',
cornerRadius:6,
click:{click:'pay'}
}
]
},
{
class:'UIView',
frame:{w:'1x',y:'300',h:'100'},
subViews:[
{
class:'HeroLabel',
frame:{x:'16',y:'20',h:'30',w:'200'},
size:20,
textColor:'333333',
text:'金融科技书一本'
},
{
class:'HeroLabel',
frame:{x:'16',y:'50',h:'30',w:'200'},
size:13,
textColor:'999999',
text:'由星合资本郭宇航先生捐赠'
},
{
class:'HeroButton',
frame:{r:'16',w:'66',y:'0.5x-22',h:'44'},
title:'兑换',
backgroundColor:'bd3a53',
titleColor:'eeeeee',
cornerRadius:6,
click:{command:'goto:'+path+'/pay4.html'}
}
]
},
],
}
</script>
</head>
</html>