This commit is contained in:
2022-12-15 10:16:30 +08:00
parent c299e62f38
commit 059cab17c6
4 changed files with 4 additions and 4 deletions

View File

@@ -87,7 +87,7 @@ const formatMoney = function (s: string) {
return z+ "." + r;
}else{
return isNaN(z) ? 0 : z;
return isNaN(parseInt(z)) ? 0 : z;
}
}