绩效考核手机版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
586 B

3 years ago
import formatNumber from './formatNumber';
/**
* @description: 格式化货币
* @param {Number} number 货币数字
* @param {Number} places 在有小数时保留的小位数默认2位
* @param {String} symbol 货币符号'¥'
* @param {String} thousand 用啥隔开','
* @param {String} decimal 表示小数点符合:'.'
* @return {String}
* @example formatMoney(12345) // ¥12,345
*/
export default function formatMoney(number = 0, places = 2, symbol = '¥', thousand = ',', decimal = '.') {
return symbol + formatNumber(number, places, thousand, decimal);
}