money-short.js 217 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 export default (value) => { if (value > 10000) { return `${Math.round(value / 1000) / 10}万`; } if (value > 1000) { return `${Math.round(value / 100) / 10}千`; } return value; };