-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (116 loc) · 2.89 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>虚拟币交易平台</title>
<link rel="stylesheet" type="text/css" href="resources/all.css"/>
</head>
<body class="noReady">
<div class="banner">
<h1>虚拟币交易平台</h1>
<ul>
<li><a>首页</a></li>
<li><a>交易</a></li>
<li><a>理财</a></li>
<li><a>新手</a></li>
</ul>
</div>
<div class="buttn-line"></div>
<div class="container">
<div class="left-container">
<div class="chart">
<index-chart></index-chart>
</div>
<div class="trade">
<div class="half">
<div class="trade-title">
<span>买入盘面</span>
<select v-model="selectBuy" options="options"></select>
</div>
<table>
<colgroup>
<col width="100">
<col width="150">
<col width="150">
<col width="150">
</colgroup>
<thead>
<tr>
<th>档位</th>
<th>买入价</th>
<th>买入量</th>
<th>总额</th>
</tr>
</thead>
<tbody>
<tr v-repeat="list in buys">
<td v-text="list['C1']"></td>
<td v-text="list['C2']">/td>
<td v-text="list['C3']"></td>
<td v-text="list['C4']"></td>
</tr>
</tbody>
</table>
</div>
<div class="half">
<div class="trade-title">
<span>卖出盘面</span>
<select v-model="selectSale" options="options"></select>
</div>
<table>
<colgroup>
<col width="100">
<col width="150">
<col width="150">
<col width="150">
</colgroup>
<thead>
<tr>
<th>档位</th>
<th>买入价</th>
<th>买入量</th>
<th>总额</th>
</tr>
</thead>
<tbody>
<tr v-repeat="list in sales">
<td v-text="list['C1']"></td>
<td v-text="list['C2']">/td>
<td v-text="list['C3']"></td>
<td v-text="list['C4']"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="right-container">
<div class="product-title">
<span>名称</span>
<select>
<option>排序</option>
<option>默认排序</option>
<option>按交易量排序</option>
<option>按涨跌幅排序</option>
</select>
</div>
<table>
<colgroup>
<col width="100">
<col width="80">
<col width="50">
</colgroup>
<tbody>
<tr v-repeat="list in products">
<td class="font-left" v-text="list['C1']"></td>
<td v-text="list['C2']"></td>
<td class="font-right" v-text="list['C3']"></td>
</tr>
</tbody>
</table>
</div>
</div>
<script src="../jquery/amd/require.js" data-main="src"></script>
<script src="../jquery/amd/cfg.js"></script>
</body>
</html>