sbd-npm 1.2.26 → 1.2.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sbd.css +4 -0
- package/stock_basics.js +5 -1
- package/util.js +13 -2
- package/.npmignore +0 -1
package/package.json
CHANGED
package/sbd.css
CHANGED
package/stock_basics.js
CHANGED
@@ -357,13 +357,15 @@ let Stock = {
|
|
357
357
|
Util.init_table_skeleton({
|
358
358
|
"element_id": "big_deal_table",
|
359
359
|
"head_cols": [
|
360
|
-
{"name": "时间", "table_sort": 1},
|
360
|
+
{"name": "时间", "table_sort": 1, "class": "info"},
|
361
361
|
{"name": "收盘价", "table_sort": 1},
|
362
362
|
{"name": "主力净流入", "table_sort": 1, "title": "超大单净流入 + 大单净流入"},
|
363
363
|
{"name": "超大单净流入", "table_sort": 1},
|
364
364
|
{"name": "大单净流入", "table_sort": 1},
|
365
365
|
{"name": "中单净流入", "table_sort": 1},
|
366
366
|
{"name": "小单净流入", "table_sort": 1},
|
367
|
+
{"name": "成交量", "table_sort": 1},
|
368
|
+
{"name": "成交额", "table_sort": 1},
|
367
369
|
]
|
368
370
|
});
|
369
371
|
Util.post("/stock/" + Stock.code, {action: "big_deal"}, function (j) {
|
@@ -400,6 +402,8 @@ let Stock = {
|
|
400
402
|
_html.push("<td data-val='", item["big_net_inflow"], "'><b class='", Util.text_color(item["big_net_inflow"]), "'>", Util.to_unit(item["big_net_inflow"]), "</b></td>");
|
401
403
|
_html.push("<td data-val='", item["middle_net_inflow"], "'><b class='", Util.text_color(item["middle_net_inflow"]), "'>", Util.to_unit(item["middle_net_inflow"]), "</b></td>");
|
402
404
|
_html.push("<td data-val='", item["small_net_inflow"], "'><b class='", Util.text_color(item["small_net_inflow"]), "'>", Util.to_unit(item["small_net_inflow"]), "</b></td>");
|
405
|
+
_html.push("<td class='volume-td'>", Util.to_float(item["volume"] / 10000, 2), "万手</td>");
|
406
|
+
_html.push("<td class='amount-td'>", Util.to_hundred_million(item["amount"]), "亿</td>");
|
403
407
|
_html.push("</tr>");
|
404
408
|
});
|
405
409
|
Util.render_table_html("big_deal_table_body", _html);
|
package/util.js
CHANGED
@@ -481,6 +481,17 @@ const Util = {
|
|
481
481
|
return html;
|
482
482
|
},
|
483
483
|
|
484
|
+
/**
|
485
|
+
* 美股 LOGO
|
486
|
+
* @param code
|
487
|
+
* @returns {*}
|
488
|
+
*/
|
489
|
+
us_logo_html: function(code) {
|
490
|
+
code = code.toUpperCase();
|
491
|
+
let logo_url = "https://storage.googleapis.com/iex/api/logos/" + code + ".png";
|
492
|
+
return '<a rel="noopener noreferrer nofollow" href="' + logo_url + '" target="_blank"><img alt="' + code + '" width="20px" src="' + logo_url + '"/><a>';
|
493
|
+
},
|
494
|
+
|
484
495
|
/**
|
485
496
|
* 随机一股
|
486
497
|
* @param rand_btn_id
|
@@ -1450,7 +1461,7 @@ const Util = {
|
|
1450
1461
|
_html.push('<option value="2">这月</option>');
|
1451
1462
|
_html.push('<option value="3">上一周</option>');
|
1452
1463
|
_html.push('<option value="4">上一月</option>');
|
1453
|
-
_html.push('<option value="5"
|
1464
|
+
_html.push('<option value="5">年初至今</option>');
|
1454
1465
|
_html.push('<option value="6">最近7日</option>');
|
1455
1466
|
_html.push('<option value="7">最近30日</option>');
|
1456
1467
|
_html.push('<option value="8">最近60日</option>');
|
@@ -1499,7 +1510,7 @@ const Util = {
|
|
1499
1510
|
sd_obj.val(year + "-" + month + "-01");
|
1500
1511
|
ed_obj.val(Util.seconds_to_format(pre_month_end_second, "%Y-%m-%d"));
|
1501
1512
|
break;
|
1502
|
-
case "5": //
|
1513
|
+
case "5": // 年初至今
|
1503
1514
|
sd_obj.val(year + "-01-01");
|
1504
1515
|
ed_obj.val(Util.seconds_to_format(midnight_second, "%Y-%m-%d"));
|
1505
1516
|
break;
|
package/.npmignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
sbd-npm.md
|