前言 格式化金额,例如把数字 98765432 格式化为:¥987,654.32。¥符号可以换成别的,也可以去掉 const formatStatistic = (text, precision = 2, divPrecision = true, icon = '¥') => { //precision是保留小数位数,divPrecision 是否需要除以精度(也就是在原来的基础上除以精度) if (text === undefined || text === null || text ===