diff --git a/src/utils/formatter.ts b/src/utils/formatter.ts index 600e0b724..1bb131e2f 100644 --- a/src/utils/formatter.ts +++ b/src/utils/formatter.ts @@ -12,6 +12,7 @@ export const fenToYuanFormat = ( } export const accountantFormart = (row, column, cellValue) => { cellValue = cellValue + '' || '' + cellValue = Number(cellValue).toFixed(2) let x = cellValue.split('.') let x1 = x[0] let x2 = x.length > 1 ? '.' + x[1] : ''