sbd-npm 1.2.17 → 1.2.20

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 (3) hide show
  1. package/constant.js +15 -1
  2. package/package.json +1 -1
  3. package/util.js +33 -4
package/constant.js CHANGED
@@ -224,7 +224,7 @@ const MenuList = [
224
224
  {'key': 'other_bond', 'name': '地方债数据', 'url': '/fbe79af9b125b8952d05801dcf1ea4c1'},
225
225
  {'key': 'other_convertible_bond', 'name': '可转债数据', 'url': '/cf21d0fe6fe66c94488dab9cfef16c0a'},
226
226
  {'key': 'other_fortune500', 'name': '财富500强', 'url': '/04d4033d33ea4c0cdd0d874dde23ef2c'},
227
- {'key': 'other_material', 'name': '资料', 'url': '/384dd1f2f7cbfc1739f78d047ef22350'},
227
+ {'key': 'other_material', 'name': 'WIKI', 'url': '/384dd1f2f7cbfc1739f78d047ef22350'},
228
228
  ]
229
229
  },
230
230
  ];
@@ -244,3 +244,17 @@ const ClassifyList = [
244
244
  '创业板指',
245
245
  '新股',
246
246
  ];
247
+
248
+ const IndexList = [
249
+ {'code': 'SH000300', 'name': '沪深300', 'is_industry': 1},
250
+ {'code': 'SH000016', 'name': '上证50', 'is_industry': 0},
251
+ {'code': 'SH000688', 'name': '科创50', 'is_industry': 0},
252
+ {'code': 'SH000903', 'name': '中证100', 'is_industry': 0},
253
+ {'code': 'SH000905', 'name': '中证500', 'is_industry': 1},
254
+ {'code': 'SH000906', 'name': '中证800', 'is_industry': 1},
255
+ {'code': 'SH000852', 'name': '中证1000', 'is_industry': 1},
256
+ {'code': 'SZ399303', 'name': '国证2000', 'is_industry': 0},
257
+ {'code': 'hsci', 'name': '恒生综合指数', 'is_industry': 1},
258
+ {'code': 'hstech', 'name': '恒生科技指数', 'is_industry': 0},
259
+ {'code': 'sp500', 'name': '标普500指数', 'is_industry': 1},
260
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.2.17",
3
+ "version": "1.2.20",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/util.js CHANGED
@@ -354,7 +354,7 @@ const Util = {
354
354
  if ($("#price_change_" + code).length) {
355
355
  let price_cls = Util.text_color(item["price"], item["previous_price"]);
356
356
  $(".price_" + code).each(function () {
357
- $(this).html("<b class='" + price_cls + "'>" + item["price"] + "</b>");
357
+ $(this).html("<b class='" + price_cls + "'>" + Util.to_float(item["price"], 2) + "</b>");
358
358
  });
359
359
  $("#price_change_" + code).html(Util.year_price_rate(item["price"], item["previous_price"]));
360
360
  } else {
@@ -1248,8 +1248,8 @@ const Util = {
1248
1248
  init_classify_component: function (component_id) {
1249
1249
  let element_id = component_id.replace("_div", "");
1250
1250
  let html = [];
1251
- html.push('<label for="classify"></label>');
1252
- html.push('<select id="classify" class="form-control">');
1251
+ html.push('<label for="', element_id, '"></label>');
1252
+ html.push('<select id="', element_id, '" class="form-control">');
1253
1253
  html.push('<option value="">板块</option>');
1254
1254
  ClassifyList.forEach(function (classify) {
1255
1255
  html.push('<option value="', classify, '">', classify, '</option>');
@@ -1258,6 +1258,24 @@ const Util = {
1258
1258
  $("#" + component_id).html(html.join(""));
1259
1259
  },
1260
1260
 
1261
+ /**
1262
+ * 数量限制组件
1263
+ * @param component_id
1264
+ */
1265
+ init_limit_num_component: function (component_id) {
1266
+ let element_id = component_id.replace("_div", "");
1267
+ let html = [];
1268
+ html.push('<label for="', element_id, '"></label>');
1269
+ html.push('<select id="', element_id, '" class="form-control">');
1270
+ html.push('<option value="50">50</option>');
1271
+ html.push('<option value="100" selected>100</option>');
1272
+ html.push('<option value="200">200</option>');
1273
+ html.push('<option value="500">500</option>');
1274
+ html.push('<option value="1000">1000</option>');
1275
+ html.push('</select>');
1276
+ $("#" + component_id).html(html.join(""));
1277
+ },
1278
+
1261
1279
  /**
1262
1280
  * 当前时间戳
1263
1281
  * @returns {number}
@@ -2627,7 +2645,18 @@ const Util = {
2627
2645
  to_float: function (digit, fraction = 2) {
2628
2646
  if (digit) {
2629
2647
  fraction = Math.pow(10, fraction);
2630
- return Math.round(digit * fraction) / fraction;
2648
+ digit = Math.round(digit * fraction) / fraction;
2649
+ if (fraction === 100) {
2650
+ let digit_arr = digit.toString().split(".");
2651
+ if (digit_arr.length > 1) {
2652
+ if (digit_arr[1].length === 1) {
2653
+ return (digit + "0");
2654
+ }
2655
+ } else {
2656
+ return (digit + ".00");
2657
+ }
2658
+ }
2659
+ return digit;
2631
2660
  }
2632
2661
  return 0;
2633
2662
  },