iv-npm 1.7.34 → 1.7.35

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iv-npm",
3
- "version": "1.7.34",
3
+ "version": "1.7.35",
4
4
  "description": "公共通用包",
5
5
  "author": "Mr.Cong",
6
6
  "license": "ISC",
@@ -464,7 +464,7 @@ var amountToFixed = (_v) => {
464
464
  }
465
465
  return (!Number.isNaN(value) ? value.toFixed(2) : 0) + (flag ? " \u5143" : "");
466
466
  };
467
- var amountToThousandthFixed = (num, fixed = 0) => {
467
+ var amountToThousandthFixed = (num, fixed = 2) => {
468
468
  if (!num)
469
469
  return 0;
470
470
  let value = num;