sbd-npm 1.1.72 → 1.1.76

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 +18 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.1.72",
3
+ "version": "1.1.76",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/util.js CHANGED
@@ -391,15 +391,11 @@ const Util = {
391
391
  $("#average_" + code).html(Util.to_float(item["amount"] / item["volume"], 2));
392
392
  }
393
393
  let remark_obj = $("#remark_" + code);
394
- if (remark_obj.length > 0) {
394
+ if (remark_obj.length > 0 && ((item["buy"] && item["buy"] > 0) || (item["sell"] && item["sell"] > 0))) {
395
395
  remark_obj.removeClass("success");
396
396
  remark_obj.removeClass("danger");
397
- if ((item["buy"] && item["buy"] > 0) || (item["sell"] && item["sell"] > 0)) {
398
- remark_obj.addClass(item["buy"] > item["sell"] ? "danger" : "success");
399
- remark_obj.attr("title", "五档卖出: " + Util.to_hundred_million(item["sell"]) + "亿\n 五档买入: " + Util.to_hundred_million(item["buy"]) + "亿");
400
- } else {
401
- remark_obj.attr("title", "");
402
- }
397
+ remark_obj.addClass(item["buy"] > item["sell"] ? "danger" : "success");
398
+ remark_obj.attr("title", "五档卖出: " + Util.to_hundred_million(item["sell"]) + "亿\n 五档买入: " + Util.to_hundred_million(item["buy"]) + "亿");
403
399
  }
404
400
  },
405
401
 
@@ -730,7 +726,7 @@ const Util = {
730
726
  } else {
731
727
  tz_obj.html(_html.join(""));
732
728
  }
733
- if (Util.is_mobile() && !tz_obj.hasClass("table-responsive")) {
729
+ if ((Util.is_mobile() || Util.is_small_screen()) && !tz_obj.hasClass("table-responsive")) {
734
730
  let tz_obj_parent = tz_obj.parent();
735
731
  if (!tz_obj_parent.hasClass("table-responsive")) {
736
732
  if (tz_obj_parent.hasClass("row")) {
@@ -2372,6 +2368,16 @@ const Util = {
2372
2368
  $("#" + localStorage[tab_token] + "_div").removeClass("hide");
2373
2369
  },
2374
2370
 
2371
+ /**
2372
+ * 转为以万为单位的数值
2373
+ * @param digit
2374
+ * @param fraction
2375
+ * @returns {*|number}
2376
+ */
2377
+ to_ten_thousand: function (digit, fraction = 2) {
2378
+ return Util.to_float(digit / 10000, fraction);
2379
+ },
2380
+
2375
2381
  /**
2376
2382
  * 转为以亿为单位的数值
2377
2383
  * @param digit
@@ -2643,6 +2649,10 @@ const Util = {
2643
2649
  element.style.height = height;
2644
2650
  }
2645
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
+ }
2646
2656
  return echarts.init(element);
2647
2657
  },
2648
2658