|
@@ -1180,9 +1180,8 @@ export class Utils {
|
|
|
if(num < 100000) {
|
|
|
return Math.floor(num).toString();
|
|
|
}
|
|
|
- console.log("转换过后的值: " + this.formatBigNumber(num, ["", "K", "M", "B"]));
|
|
|
//使用标准格式化中文单位
|
|
|
- return this.formatBigNumber(num, ["", "K", "M", "B"]);
|
|
|
+ return this.formatBigNumber(num, ["", "K", "M", "B"],1000);
|
|
|
}
|
|
|
|
|
|
/**
|