-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpooladdress.html
More file actions
141 lines (122 loc) · 3.6 KB
/
pooladdress.html
File metadata and controls
141 lines (122 loc) · 3.6 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<title>Wisdom Public Chain</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/account.css" />
<link rel="stylesheet" type="text/css" href="css/nav.css"/>
<script src="js/jquery.min.js"></script>
<script src="js/template.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="page_header"></div>
<script>
$("#page_header").load("header.html");
</script>
<div class="clear">
</div>
<div class="con-box">
<div class="wid-1200">
<div class="ant-breadcrumb hide">
<a href="index.html">
<i></i>
<span>Home</span></a>
<span class="arrows">></span>
<a href="deal.html"><span>交易</span></a>
<span class="arrows">></span>
<span>账户详情</span>
</div>
<div class="blocks">
<h3 class="h3"><span>交易详情</span></h3>
<div class="subtitle">
<span>概况</span>
<div class="tabs" style="display: block; transform: translate3d(0px, 0px, 0px); width: 60px;"></div>
</div>
<section class="section">
<div id="content">
<span style="display: block;width: 100%;text-align: center;">未找到相关数据..<span>
</div>
<ul>
<script type="text/json" id="tpl">
<% for(var i = 0;i<obj.length;i++){%>
<li>
<span>交易Hash</span>
<span><%=obj[i].tranhaxh%></span>
</li>
<li>
<span>交易状态</span>
<span>打包中</span>
</li>
<li>
<span>区块高度</span>
<span><%=obj[i].coinHeigth%></span>
</li>
<li>
<span>金额</span>
<span><%=obj[i].amount%> WDC</span>
</li>
<!-- <li>
<span>Gas 上限</span>
<span>100,000,000</span>
</li> -->
<!-- <li>
<span>Gas 价格</span>
<span>0.002 WDC (100 Gwei)</span>
</li> -->
<li>
<span>手续费</span>
<span><%=obj[i].fee%> WDC</objspan>
</li>
<li>
<span>发起账户</span>
<span><a href="particulars.html?coinaddress=<%=obj[i].fromAddress%>">
<%=obj[i].fromAddress%></a>
</span>
</li>
<li>
<span>接收账户</span>
<span><a href="particulars.html?coinaddress=<%=obj[i].coinAddress%>"><%=obj[i].coinAddress%></a></span>
</li>
<li>
<span>nonce</span>
<span><%=obj[i].nonce%></span>
</li>
<li>
<span>时间戳</span>
<span><%=obj[i].createTime%></span>
</li>
<!-- <li>
<span>操作类型</span>
<span><%if(obj[i].type==1){%>
<%="进"%>
<%}else{%>
<%="出"%>
<%}%></span>
</li> -->
<%}%>
</script>
</ul>
</section>
</div>
</div>
</div>
<div id="page_footer"></div>
<script>
$("#page_footer").load("footer.html");
</script>
<script>
function MyClick(flag) {
if (flag == 'show') {
document.getElementById('header-mobile-menu').setAttribute('class', 'header-mobile-menu show');
}
if (flag == 'hide') {
document.getElementById('header-mobile-menu').classList.remove('show')
}
}
</script>
<script src="js/public.js" type="text/javascript" charset="utf-8"></script>
<script src="js/pooladdress.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>