sbd-npm 1.1.74 → 1.1.78
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/menu.js +1 -0
- package/package.json +1 -1
- package/util.js +9 -5
package/menu.js
CHANGED
@@ -191,6 +191,7 @@ const MenuList = [
|
|
191
191
|
{'key': 'snowball_trend', 'name': '自选趋势', 'url': '/08c40d908dd87e29a607b6945309edf0'},
|
192
192
|
{'key': 'snowball_user', 'name': '用户列表', 'url': '/97339b8453883dd27e6087ae7db6f62a'},
|
193
193
|
{'key': 'snowball_tweet', 'name': '推文', 'url': '/9a9aef7fced3f15ff7647de75d70798c'},
|
194
|
+
{'key': 'snowball_red_packet', 'name': '红包数据', 'url': '/23d88182f12431fe67f658b725cbaf1d'},
|
194
195
|
{'key': 'snowball_tool', 'name': '搜索工具', 'url': '/ac88ee85f27e11aa06f2b8f46b03a0eb'},
|
195
196
|
]
|
196
197
|
},
|
package/package.json
CHANGED
package/util.js
CHANGED
@@ -238,7 +238,7 @@ const Util = {
|
|
238
238
|
html.push("<td>", (item["pe_ttm"] ? item["pe_ttm"] : item["pe"]), "</td>");
|
239
239
|
html.push("<td>", (item["market_capital"] ? (Util.to_float(item["market_capital"], 2) + "亿") : "--"), "</td>");
|
240
240
|
html.push("<td>", Util.industry_url(item["code"], item["industry"]), "</td>");
|
241
|
-
html.push("<td>", Util.map_url(item["province_city"] ? item["province_city"] : item["area"]), "</td>");
|
241
|
+
html.push("<td>", Util.map_url((item["province_city"] && item["province_city"] !== "None") ? item["province_city"] : item["area"]), "</td>");
|
242
242
|
let price = item["stock_price"] ? item["stock_price"] : item["price"];
|
243
243
|
let pre_price = item["pre_price"] ? item["pre_price"] : (item["previous_price"] ? item["previous_price"] : 0)
|
244
244
|
if (pre_price > 0) {
|
@@ -726,7 +726,7 @@ const Util = {
|
|
726
726
|
} else {
|
727
727
|
tz_obj.html(_html.join(""));
|
728
728
|
}
|
729
|
-
if (Util.is_mobile() && !tz_obj.hasClass("table-responsive")) {
|
729
|
+
if ((Util.is_mobile() || Util.is_small_screen()) && !tz_obj.hasClass("table-responsive")) {
|
730
730
|
let tz_obj_parent = tz_obj.parent();
|
731
731
|
if (!tz_obj_parent.hasClass("table-responsive")) {
|
732
732
|
if (tz_obj_parent.hasClass("row")) {
|
@@ -925,16 +925,16 @@ const Util = {
|
|
925
925
|
let public_date = j["public_date"] > 0 ? Util.seconds_to_format(j["public_date"], "%Y-%m-%d") : "--";
|
926
926
|
let issue_date = j["issue_date"] > 0 ? Util.seconds_to_format(j["issue_date"], "%Y-%m-%d") : "--";
|
927
927
|
_html.push("<tr title='最后更新时间: ", Util.seconds_to_format(j["update_time"], "%Y-%m-%d"), "' class='info'><th colspan='12' text-align='center'>基金概况</th></tr>");
|
928
|
-
_html.push("<tr><td colspan='3'>基金代码</td><td colspan='3'>", Util.pack_html_link('https://fund.
|
928
|
+
_html.push("<tr><td colspan='3'>基金代码</td><td colspan='3'>", Util.pack_html_link('https://fund.eastmoney.com/' + j["fund_code"] + '.html', j["fund_code"]), "</td><td colspan='2'>基金名</td><td colspan='4'>", Util.pack_html_link('https://fundf10.eastmoney.com/jbgk_' + j["fund_code"] + '.html', j["fund_name"]), "</td></tr>");
|
929
929
|
_html.push("<tr><td colspan='3'>基金类型</td><td colspan='3'>", j["fund_type"], "</td><td colspan='2'>投资类型</td><td colspan='4'>", j["invest_type"], "</td></tr>");
|
930
930
|
_html.push("<tr><td colspan='3'>单位净值</td><td colspan='3'>", net, "</td><td colspan='2'>资产规模</td><td colspan='4'>", assets, "</td></tr>");
|
931
931
|
_html.push("<tr><td colspan='3'>成立日期</td><td colspan='3'>", public_date, "</td><td colspan='2'>发行日期</td><td colspan='4'>", issue_date, "</td></tr>");
|
932
|
-
_html.push("<tr><td colspan='3'
|
932
|
+
_html.push("<tr><td colspan='3'>基金管理公司</td><td colspan='3'>", j["administrator"], "</td><td colspan='2'>基金经理</td><td colspan='4'>", j["managers"], "</td></tr>");
|
933
933
|
_html.push("<tr><td colspan='4'>基金托管人</td><td colspan='8'>", j["custodian"], "</td></tr>");
|
934
934
|
_html.push("<tr><td colspan='4'>经办律师事务所</td><td colspan='8'>", j["lawyer"], "</td></tr>");
|
935
935
|
_html.push("<tr><td colspan='4'>会计师事务所</td><td colspan='8'>", j["accounting"], "</td></tr>");
|
936
936
|
_html.push("<tr><td colspan='4'>注册地址</td><td colspan='8'>", Util.map_url(j["location"], j["location"]), "</td></tr>");
|
937
|
-
let fund_stock_url = "https://fund.
|
937
|
+
let fund_stock_url = "https://fund.eastmoney.com/" + j["fund_code"] + ".html";
|
938
938
|
if (j["type"] === 2) {
|
939
939
|
fund_stock_url = "http://fund.eastmoney.com/f10/ccmx_" + j["fund_code"] + ".html";
|
940
940
|
}
|
@@ -2649,6 +2649,10 @@ const Util = {
|
|
2649
2649
|
element.style.height = height;
|
2650
2650
|
}
|
2651
2651
|
}
|
2652
|
+
let jq_obj = $("#" + element_id);
|
2653
|
+
if ((Util.is_mobile() || Util.is_small_screen()) && !jq_obj.hasClass("table-responsive")) {
|
2654
|
+
jq_obj.addClass("table-responsive");
|
2655
|
+
}
|
2652
2656
|
return echarts.init(element);
|
2653
2657
|
},
|
2654
2658
|
|