sbd-npm 1.2.40 → 1.2.41

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/util.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.2.40",
3
+ "version": "1.2.41",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/util.js CHANGED
@@ -876,6 +876,7 @@ const Util = {
876
876
  head_cols.push({"name": "成交金额", "table_sort": 1});
877
877
  head_cols.push({"name": "成交均价", "table_sort": 1});
878
878
  head_cols.push({"name": "股东数", "table_sort": 1});
879
+ head_cols.push({"name": "基金数", "table_sort": 1});
879
880
  head_cols.push({"name": "备注", "id": "stock_category_remark_title"});
880
881
  } else {
881
882
  head_cols.unshift({"name": ""});
@@ -930,6 +931,7 @@ const Util = {
930
931
  _html.push("<td id='amount_", item["code"], "'>--</td>");
931
932
  _html.push("<td id='average_", item["code"], "'>--</td>");
932
933
  _html.push("<td class='holder_", item["code"], "'>--</td>");
934
+ _html.push("<td class='fund_", item["code"], "'>--</td>");
933
935
  _html.push("<td id='remark_", item["code"], "'></td>");
934
936
  }
935
937
  _html.push("</tr>");