Commit aa5f27be by 风狗 Committed by Gitee

修复 floatToFixed2 函数某些情况下计算结果为零 Closes #I8671C

Signed-off-by: 风狗 <909275705@qq.com>
parent 04a94ad9
...@@ -205,6 +205,9 @@ export const floatToFixed2 = (num: number | string | undefined): string => { ...@@ -205,6 +205,9 @@ export const floatToFixed2 = (num: number | string | undefined): string => {
case 1: case 1:
str = f.toString() + '0' str = f.toString() + '0'
break break
case 2:
str = f.toString()
break
} }
return str return str
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment