// 格式化金额数字 export default function toThousands(num: string | number): string { num = (num || 0).toString(); let result = ''; while (num.length > 3) { result = ',' + num.slice(-3) + result; num = num.slice(0, num.length - 3); } if (num) { result = num + result; } return result; }