fix(合计时,精确到2位小数):

This commit is contained in:
wanghaoo 2018-12-19 16:32:42 +08:00
parent 24ca9f2f16
commit ef68cce2ff
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ function sum(Table) {
var _num = parseFloat(da[column.key]); var _num = parseFloat(da[column.key]);
//排查字段值为NAN情况 //排查字段值为NAN情况
if (_num) { if (_num == _num) {
count += _num; count += _num;
} }
}); });

View File

@ -1,6 +1,6 @@
{ {
"name": "bee-table", "name": "bee-table",
"version": "1.6.17", "version": "1.6.18",
"description": "Table ui component for react", "description": "Table ui component for react",
"keywords": [ "keywords": [
"react", "react",