From 76aca0a858e095a1d5d76f43e20a33bdcff5b787 Mon Sep 17 00:00:00 2001 From: wangyufei <2267742828@qq.com> Date: Fri, 21 Jun 2024 10:48:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=9A=E8=AE=A1=E9=87=91=E9=A2=9D--=E4=B8=A4?= =?UTF-8?q?=E4=BD=8D=E5=B0=8F=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/formatter.ts | 1 + 1 file changed, 1 insertion(+) 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] : ''