/** * 示例: 用于为金额添加后缀单位展示 * @param money - 金额 * @returns {string} */ function formatMoney (money) { return money + '万元' } export { formatMoney }