function toFix(value) { return value.toFixed(2) // 此处2为保留两位小数,保留几位小数,这里写几 } module.exports = { toFix: toFix }