sbd-npm 1.2.47 → 1.2.49
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/constant.js +1 -0
- package/package.json +1 -1
- package/stock_basics.js +1 -1
package/constant.js
CHANGED
@@ -40,6 +40,7 @@ const MenuList = [
|
|
40
40
|
{'key': 'trend_money_inflow', 'name': '资金流入历史最高', 'url': '/dc1303ba221de0c4fb85cd3cb513c547'},
|
41
41
|
{'key': 'trend_month', 'name': '月线趋势', 'url': '/218cd8e3c5ea55629cac28ee0e543233'},
|
42
42
|
{'key': 'trend_boll', 'name': '布林线', 'url': '/0c9b231a72e40475d6f985fd67bdb718'},
|
43
|
+
{'key': 'trend_kdj', 'name': 'KDJ金叉', 'url': '/e213b8b8b1d3049db79b606f727fa94a'},
|
43
44
|
{'key': 'trend_bull_trend', 'name': '多头趋势', 'url': '/11c801537253fbfc175fadf8f645721d'},
|
44
45
|
{'key': 'trend_ma20_60', 'name': '20、60日均线交叉', 'url': '/4bf72713d83469ad6ec1d9fc3be8886f'},
|
45
46
|
{'key': 'trend_macd_down', 'name': 'MACD下行', 'url': '/ff97a31b4ffbabe71315e75c4fd62047'},
|
package/package.json
CHANGED
package/stock_basics.js
CHANGED
@@ -879,7 +879,7 @@ let Stock = {
|
|
879
879
|
j["data"].forEach(function (item, i) {
|
880
880
|
_html.push("<tr title='", item["title"], "'>");
|
881
881
|
_html.push("<td>", i + 1, "</td>");
|
882
|
-
_html.push("<td
|
882
|
+
_html.push("<td>", Util.pack_html_link("https://data.eastmoney.com/report/info/" + item["id"] + ".html", Util.sub_str(item["title"], 70)), "</td>");
|
883
883
|
_html.push("<td>", item["organization"], "</td>");
|
884
884
|
_html.push("<td>", item["analysts"], "</td>");
|
885
885
|
_html.push("<td>", Util.seconds_to_format(item["ctime"], "%Y-%m-%d"), "</td>");
|