@@ -1227,7 +1227,7 @@ func changePointDecimalPlaces(str string, changeNum int, numberType string, isPe
if isPercent {
if numberType == "number" { //百分数转成小数
val = val / 100
- if decimalPlaces > 2 {
+ if decimalPlaces > 1 {
decimalPlaces += 2
} else if decimalPlaces == 1 {
decimalPlaces += 1