Vue中对数值进行保留小数点后两位的处理
2020-06-12 本文已影响0人
凤箫之舞
最后写在methods里面,用方法来返回
calprice:function(price){
let result = price * this.vipzk;
let realVal = parseFloat(result).toFixed(2)
return realVal;
},
最后写在methods里面,用方法来返回
calprice:function(price){
let result = price * this.vipzk;
let realVal = parseFloat(result).toFixed(2)
return realVal;
},