保留两位小数通用方法
// 金额格式化保留2位小数 2 -> 2.00 2.1 -> 2.10
function getFDataFixed (source, length = 2) {
return (+String(source)).toFixed(length) // +String(source) 字符转数字
}
保留两位小数通用方法
// 金额格式化保留2位小数 2 -> 2.00 2.1 -> 2.10
function getFDataFixed (source, length = 2) {
return (+String(source)).toFixed(length) // +String(source) 字符转数字
}