-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoptions_1.html
94 lines (93 loc) · 5.19 KB
/
options_1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>股票分析助手</title>
<link href="styles/options.css" rel="stylesheet" type="text/css" />
<link href="styles/jquery.autocomplete.css" rel="stylesheet" type="text/css" />
<!-- 引入 echarts.js -->
<!--
<script src="echarts.min.js"></script>
-->
<script src="js/libs/echarts.js"></script>
<script src="js/libs/jquery-3.6.0.min.js"></script>
<script src="js/option_1.js"></script>
<script type="text/javascript" src="js/libs/jquery-1.7.min.js"></script>
<script type="text/javascript" src="js/libs/jquery.autocomplete.min.js"></script>
<script type="text/javascript" src="js/libs/autoresize.js"></script>
<script type="text/javascript" src="js/libs/settings.js"></script>
<script type="text/javascript" src="js/libs/huoban.js"></script>
<script type="text/javascript" src="js/libs/jquery.tablednd_0_5.js"></script>
<script type="text/javascript" src="js/stockInfo.js"></script>
<script type="text/javascript" src="js/stock.js"></script>
<script type="text/javascript" src="js/options.js"></script>
</head>
<body>
<!-- 为ECharts准备一个具备大小(宽高)的Dom -->
<div id="main" style="width: 1000px;height:350px;"></div>
<div id="custom-stock-infos">
<h4>自选股信息</h4>
<table id="stocksTable" class="stocksTable">
<tr>
<th width="14px"></th>
<th width="14px"></th>
<th width="26px">标记</th>
<th width="75px">股票名称</th>
<th width="75px">股票代码</th>
<th width="66px">涨跌幅</th>
<th width="63px">当前价</th>
<th width="50px">涨跌价</th>
<th width="63px">今开价</th>
<th width="63px">昨收价</th>
<th width="63px">最高价</th>
<th width="63px">最低价</th>
<th width="63px">上破价</th>
<th width="63px">下破价</th>
<th width="63px">买入价</th>
<th width="63px">买入量</th>
<th width="63px">收 益</th>
<th width="56px">操作</th>
</tr>
<tr class="templateRow">
<td class="selectHandle" title="选中"> </td>
<td class="dragHandle" title="拖动"> </td>
<td><div class="flag" title="标记股票"></div></td>
<td><div style="cursor: pointer; position: relative;" title="点击修改"><span class="stockName"></span><input id="stockName" type="text"></div></td>
<td><div><span class="stockCode" style="cursor: pointer;" title="点击进入新浪财经行"></span></div></td>
<td><div><span class="stockChangeRate"></span></div></td>
<td><div><span class="stockPrice"></span></div></td>
<td><div><span class="stockChangeAmt"></span></div></td>
<td><div><span class="stockOpenPrice"></span></div></td>
<td><div><span class="stockClosePrice"></span></div></td>
<td><div><span class="stockMaxPrice"></span></div></td>
<td><div><span class="stockMinPrice"></span></div></td>
<td><div style="cursor: pointer;" title="点击修改"><span class="stockUpPrice">0.00</span><input id="stockUpPrice" type="text" value="0.00"></div></td>
<td><div style="cursor: pointer;" title="点击修改"><span class="stockDownPrice">0.00</span><input id="stockDownPrice" type="text" value="0.00"></div></td>
<td><div style="cursor: pointer;" title="点击修改"><span class="stockBuyPrice">0.000</span><input id="stockBuyPrice" type="text" value="0.000"></div></td>
<td><div style="cursor: pointer;" title="点击修改"><span class="stockBuyNum">0</span><input id="stockBuyNum" type="text" value="0"></div></td>
<td><div><span class="stockProfit"></span></div></td>
<td>
<div class="note" title="备注"><br/></div>
<div class="delete" title="删除股票"><br/></div>
</td>
</tr>
</table>
<div id="custom-stock-control" class="custom-stock-control">
<button id="btnNewStock">新股票</button>
<button id="btnLoadStock"> 刷新 </button>
<button id="btnBuyStock">买股票</button>
<button id="btnSellStock">卖股票</button>
<label>注:如果输入的股票不能自动提示,直接填股票代码,如:sh600111, sz002001</label>
<button id="btnSaveStock" style="float:right"> 保存自选股信息 </button>
</div>
<div id="div-stock-note" class="stockNote">
<div id="noteTitle" class="stockNoteTitle" tag="">股票备注:</div>
<textarea id="txtStockNote" wrap="soft" class="note-textarea"></textarea>
</div>
<div id="stock-note-control" class="stock-note-control">
<button id="btnBackOptions">返回自选股</button>
<button id="btnSaveNote" style="float:right">保存备注</button>
</div>
</div>
</body>
</html>