新增财务仪表盘并统一金额到角
This commit is contained in:
@@ -222,7 +222,7 @@ function readError(error: unknown, fallback: string) {
|
||||
}
|
||||
|
||||
function formatMoney(value: number) {
|
||||
return `¥${Number(value || 0).toFixed(2)}`
|
||||
return `¥${(Math.round(Number(value || 0) * 10) / 10).toFixed(1)}`
|
||||
}
|
||||
|
||||
function walletBizTypeLabel(type: string) {
|
||||
|
||||
Reference in New Issue
Block a user