sbd-npm 1.2.18 → 1.2.19
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/.npmignore +1 -0
- package/constant.js +1 -1
- package/package.json +1 -1
- package/util.js +13 -2
package/.npmignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
sbd-npm.md
|
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': '
|
227
|
+
{'key': 'other_material', 'name': 'wiki', 'url': '/384dd1f2f7cbfc1739f78d047ef22350'},
|
228
228
|
]
|
229
229
|
},
|
230
230
|
];
|
package/package.json
CHANGED
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 {
|
@@ -2645,7 +2645,18 @@ const Util = {
|
|
2645
2645
|
to_float: function (digit, fraction = 2) {
|
2646
2646
|
if (digit) {
|
2647
2647
|
fraction = Math.pow(10, fraction);
|
2648
|
-
|
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;
|
2649
2660
|
}
|
2650
2661
|
return 0;
|
2651
2662
|
},
|