-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccountinfo.html
More file actions
35 lines (35 loc) · 1.2 KB
/
accountinfo.html
File metadata and controls
35 lines (35 loc) · 1.2 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
<!DOCTYPE html>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>RippleInfo</title>
<input type="text" id="address" maxlength="34"/>
<input type="submit" value="查询" id="btnQuery"/>
<div id="status"></div>
<table><tr>
<td id="balance">
<div id="info"></div>
<table>
<tr><td><h1>持有</h1></td></tr>
<tr><td><table id="credit"></table></td></tr></table>
<table id="tb_debt" class="hidden">
<tr><td><h1>发行</h1></td> </tr>
<tr><td><table id="debt"></table></td></tr></table>
<table id="tb_offer" class="hidden">
<tr>
<td><h1>挂单</h1></td></tr>
<tr><td><table id="offer"></table></td></tr>
</table>
</td>
<td id="transaction">
<table>
<tr>
<td><h1>交易</h1>
<input type="submit" value="历史" id="btnTx" class="hidden" onclick="queryTx()"/></td></tr>
<tr><td><table id="txCount"></table></td></tr>
<tr><td><table id="tx"></table></td></tr></table>
</td></tr>
</table>
<link type="text/css" rel="stylesheet" href="accountinfo.css" />
<script type="text/javascript" src="gateway.js"></script>
<script type="text/javascript" src="fiat.js"></script>
<script type="text/javascript" src="accountinfo.js"></script>