sbd-npm 1.1.57 → 1.1.61

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 CHANGED
@@ -189,8 +189,9 @@ const MenuList = [
189
189
  'menu': [
190
190
  {'key': 'snowball_trend', 'name': '自选趋势', 'url': '/08c40d908dd87e29a607b6945309edf0'},
191
191
  {'key': 'snowball_user', 'name': '用户列表', 'url': '/97339b8453883dd27e6087ae7db6f62a'},
192
- {'key': 'snowball_tool', 'name': '搜索工具', 'url': '/ac88ee85f27e11aa06f2b8f46b03a0eb'},
192
+ {'key': 'snowball_tweet', 'name': '推文', 'url': '/9a9aef7fced3f15ff7647de75d70798c'},
193
193
  {'key': 'snowball_red_packet', 'name': '红包数据', 'url': '/23d88182f12431fe67f658b725cbaf1d'},
194
+ {'key': 'snowball_tool', 'name': '搜索工具', 'url': '/ac88ee85f27e11aa06f2b8f46b03a0eb'},
194
195
  ]
195
196
  },
196
197
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.1.57",
3
+ "version": "1.1.61",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/summary_daily.js CHANGED
@@ -77,25 +77,40 @@ $(document).ready(function () {
77
77
  */
78
78
  pack_index_data: function (index_data) {
79
79
  let _html = [];
80
+ let change_color_data = [];
80
81
  index_data.forEach(function (item) {
81
- let change = item["change"];
82
82
  let cls = "";
83
83
  let sort = "";
84
- if (change > 0) {
84
+ if (item["change"] > 0) {
85
85
  cls = "red";
86
86
  sort = "fa-sort-asc";
87
- } else if (change < 0) {
87
+ } else if (item["change"] < 0) {
88
88
  cls = "green";
89
89
  sort = "fa-sort-desc";
90
90
  }
91
+ let change_rate_id = "change_rate_" + item["key"];
92
+ let change_rate_obj = $("#" + change_rate_id);
93
+ if (change_rate_obj.length) {
94
+ let pre_change_rate = parseFloat(change_rate_obj.text());
95
+ if (item["change_rate"] > pre_change_rate) {
96
+ change_color_data.push({"key": item["key"], "origin": change_rate_obj.css("background-color"), "new": "#FF7B7B"});
97
+ } else if (item["change_rate"] < pre_change_rate) {
98
+ change_color_data.push({"key": item["key"], "origin": change_rate_obj.css("background-color"), "new": "#ADFFAD"});
99
+ }
100
+ }
91
101
  _html.push('<div class="col-md-2 col-sm-4 col-xs-6 tile_stats_count">');
92
102
  let index_name = item["href"] ? Util.pack_html_link(item["href"], item["name"]) : item["name"];
93
103
  _html.push('<span class="count_top"><i class="fa"></i> ', index_name, '</span>');
94
104
  _html.push('<div class="count ', cls, '">', item["value"], '</div>');
95
- _html.push('<span class="count_bottom"><i class="', cls, '"><i class="fa ', sort, '"></i>', change, '(', item["change_rate"], '%)</i></span>');
105
+ _html.push('<span class="count_bottom"><i class="', cls, '"><i class="fa ', sort, '"></i>', item["change"], '(<span id="', change_rate_id, '">', item["change_rate"], '</span>%)</i></span>');
96
106
  _html.push('</div>');
97
107
  });
98
108
  $("#index_data").html(_html.join(""));
109
+ change_color_data.forEach(function (item) {
110
+ let change_rate_obj = $("#change_rate_" + item["key"]);
111
+ change_rate_obj.css("background-color", item["new"]);
112
+ change_rate_obj.animate({backgroundColor: item["origin"]}, 2000);
113
+ });
99
114
  },
100
115
 
101
116
  /**
package/util.js CHANGED
@@ -364,12 +364,9 @@ const Util = {
364
364
  $(this).html(Util.year_price_rate(item["price"], item["high_52week"]));
365
365
  });
366
366
  }
367
- if (item["holder_num"] && item["holder_num"] > 0 && item["pre_holder_num"]) {
368
- $(".holder_" + code).each(function () {
369
- let url = Util.get_url("holder_num") + "?code=" + item["code"];
370
- $(this).html(Util.pack_html_link(url, Util.digit_compare_trend(item["holder_num"], item["pre_holder_num"])));
371
- });
372
- }
367
+ $(".holder_" + code).each(function () {
368
+ $(this).html(Util.pack_holder_num(item));
369
+ });
373
370
  }
374
371
  if (item["high"]) {
375
372
  let high_price = Util.digit_compare_trend(item["high"], item["previous_price"]);
@@ -502,8 +499,12 @@ const Util = {
502
499
  */
503
500
  is_trade_time: function () {
504
501
  let date = new Date();
505
- let hour = date.getHours();
506
- return hour >= 9 && hour < 15 && hour !== 12;
502
+ let weekday = date.getDay();
503
+ if (weekday > 0 && weekday < 6) {
504
+ let hour = date.getHours();
505
+ return hour >= 9 && hour < 15 && hour !== 12;
506
+ }
507
+ return false;
507
508
  },
508
509
 
509
510
  /**
@@ -1168,6 +1169,17 @@ const Util = {
1168
1169
  return parseInt(seconds_to_format(seconds, "%Y"));
1169
1170
  },
1170
1171
 
1172
+ /**
1173
+ * 一周的哪一天(1-7,星期一:1,星期二:2,...星期日:7)
1174
+ * @returns {*|number}
1175
+ */
1176
+ get_weekday: function() {
1177
+ let date = new Date();
1178
+ let weekday = date.getDay();
1179
+ weekday = weekday > 0 ? weekday : 7; // 星期天是0
1180
+ return weekday;
1181
+ },
1182
+
1171
1183
  /**
1172
1184
  * 获取 cookie 的值(X-CSRFToken Cross-Site Request Forgery Token)
1173
1185
  * @param name
@@ -1288,9 +1300,7 @@ const Util = {
1288
1300
  let ed_obj = $('#' + end_id);
1289
1301
  sd_obj.attr("disabled", false);
1290
1302
  ed_obj.attr("disabled", false);
1291
- let date = new Date();
1292
- let weekday = date.getDay();
1293
- weekday = weekday > 0 ? weekday : 7; // 星期天是0
1303
+ let weekday = Util.get_weekday();
1294
1304
  let year = date.getFullYear();
1295
1305
  let month = date.getMonth() + 1;
1296
1306
  let current_month_format = year + "-" + (month < 10 ? '0' + month : month) + "-01";
@@ -2064,6 +2074,19 @@ const Util = {
2064
2074
  return index_html;
2065
2075
  },
2066
2076
 
2077
+ /**
2078
+ * 组装股东数据
2079
+ * @param item
2080
+ * @returns {string}
2081
+ */
2082
+ pack_holder_num: function(item) {
2083
+ if (item["holder_num"] && item["holder_num"] > 0 && item["pre_holder_num"]) {
2084
+ let url = Util.get_url("holder_num") + "?code=" + item["code"];
2085
+ return Util.pack_html_link(url, Util.digit_compare_trend(item["holder_num"], item["pre_holder_num"]));
2086
+ }
2087
+ return "--";
2088
+ },
2089
+
2067
2090
  /**
2068
2091
  * 组装 HTML 超链接
2069
2092
  * @param url
@@ -2203,10 +2226,14 @@ const Util = {
2203
2226
  let option_data = {};
2204
2227
  data.forEach(function (item) {
2205
2228
  if (item[type]) {
2206
- if (option_data[item[type]]) {
2207
- option_data[item[type]] += 1;
2229
+ if (item["num"]) {
2230
+ option_data[item[type]] = item["num"];
2208
2231
  } else {
2209
- option_data[item[type]] = 1
2232
+ if (option_data[item[type]]) {
2233
+ option_data[item[type]] += 1;
2234
+ } else {
2235
+ option_data[item[type]] = 1;
2236
+ }
2210
2237
  }
2211
2238
  }
2212
2239
  });
@@ -2216,7 +2243,7 @@ const Util = {
2216
2243
  html.push('<option value="">', obj.children('option').eq(0).text(), '</option>');
2217
2244
  }
2218
2245
  $.each(option_data, function (val, val_num) {
2219
- html.push('<option value="', val, '">', val, '(', val_num, ')</option>');
2246
+ html.push('<option value="', val, '">', (val.substr(0, 10)), '(', val_num, ')</option>');
2220
2247
  });
2221
2248
  obj.html(html.join(""));
2222
2249
  obj.change(function () {