sbd-npm 1.2.46 → 1.2.47

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/stock_basics.js +6 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.2.46",
3
+ "version": "1.2.47",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/stock_basics.js CHANGED
@@ -348,14 +348,15 @@ let Stock = {
348
348
  fetch_big_deal: function () {
349
349
  if ($("#big_deal_table_body").length <= 0) {
350
350
  Util.show_loading();
351
+ let money_inflow_url = Util.get_url("trend_money_inflow");
351
352
  Util.init_table_skeleton({
352
353
  "element_id": "big_deal_summary_table",
353
354
  "head_cols": [
354
- {"name": "主力总净流入"},
355
- {"name": "20日主力净流入"},
356
- {"name": "10日主力净流入"},
357
- {"name": "5日主力净流入"},
358
- {"name": "3日主力净流入"},
355
+ {"name": "主力总净流入", "link": money_inflow_url},
356
+ {"name": "20日主力净流入", "link": money_inflow_url + "?money_inflow_type=5"},
357
+ {"name": "10日主力净流入", "link": money_inflow_url + "?money_inflow_type=4"},
358
+ {"name": "5日主力净流入", "link": money_inflow_url + "?money_inflow_type=3"},
359
+ {"name": "3日主力净流入", "link": money_inflow_url + "?money_inflow_type=2"},
359
360
  ]
360
361
  });
361
362
  Util.init_table_skeleton({