vue 渲染BigDecimal 类型数字 小数点后00不显示解决办法
1.Java后台设置保留四位小数zbdReportEntity.getSendPrice().setScale(4, BigDecimal.ROUND_DOWN);2.js部分通过tofixed函数(主要修改js部分){"data": "sendPrice", "name": "SEND_PRICE", "className": "text-right", "width"...
·

1.Java后台设置保留四位小数
zbdReportEntity.getSendPrice().setScale(4, BigDecimal.ROUND_DOWN);
2.js部分通过tofixed函数(主要修改js部分)
{"data": "sendPrice", "name": "SEND_PRICE", "className": "text-right", "width": "70px",
render:function(data, b, c, d){
if(data !=null){
return data.toFixed(4);
}else{
return "";
}
}
},更多推荐



所有评论(0)