From d4d41701ab3fccd44fff6729940401bf5f2e3c48 Mon Sep 17 00:00:00 2001 From: puhui999 Date: Tue, 10 Oct 2023 16:55:53 +0800 Subject: [PATCH] =?UTF-8?q?=E8=90=A5=E9=94=80=E6=B4=BB=E5=8A=A8=EF=BC=9A?= =?UTF-8?q?=E5=AE=8C=E5=96=84=20review=20=E6=8F=90=E5=88=B0=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98=EF=BC=8C=E6=B7=BB=E5=8A=A0=E6=8B=BC=E5=9B=A2?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=9F=A5=E7=9C=8B=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit b08e0e5ab275269cb8f2e391fd9019e9a2507400) --- src/utils/formatter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/formatter.ts b/src/utils/formatter.ts index c710920d..8777f322 100644 --- a/src/utils/formatter.ts +++ b/src/utils/formatter.ts @@ -2,6 +2,6 @@ import { floatToFixed2 } from '@/utils' // 格式化金额【分转元】 // @ts-ignore -export const fenToYuanFormat = (_, _, cellValue: any, _) => { +export const fenToYuanFormat = (_, __, cellValue: any, ___) => { return `¥${floatToFixed2(cellValue)}` }