mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 17:26:30 +00:00
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);
|
||
|
}
|