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 ""; } } },