方法:
methods: { // 截取当前数据到小数点后两位 numFilter(value) { const realVal = parseFloat(value).toFixed(2); return realVal; }, },