首先在util.js文件中书写方法
/**
* 金额转换格式
* @param {*} value
* @returns
*/
export function moneyFormat(value) {
if (value) {
return `${value.toFixed(2)}`.replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
return value;
}
然后在所需要的页面中引用
import { moneyFormat } from '@/utils/util';
最后在表格中需要的地方用上
customRender: text => moneyFormat(text),