mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 19:26:59 +00:00
92cd76ce48
* fix: fix accuracy of percent * fix: fix accuracy of percent * fix: test unit modify * fix: export number Co-authored-by: chenos <chenlinxh@gmail.com>
12 lines
454 B
TypeScript
12 lines
454 B
TypeScript
import { toFixed } from 'rc-input-number/lib/utils/MiniDecimal';
|
|
import { getNumberPrecision } from 'rc-input-number/lib/utils/numberUtil';
|
|
|
|
export function toFixedByStep(value: any, step: string | number) {
|
|
if (typeof value === 'undefined' || value === null || value === '') {
|
|
return '';
|
|
}
|
|
const precision = getNumberPrecision(step);
|
|
// return parseFloat(String(value)).toFixed(precision);
|
|
return toFixed(String(value), '.', precision);
|
|
}
|