fix(合计时,精确到2位小数):
This commit is contained in:
parent
24ca9f2f16
commit
ef68cce2ff
|
@ -87,7 +87,7 @@ function sum(Table) {
|
|||
|
||||
var _num = parseFloat(da[column.key]);
|
||||
//排查字段值为NAN情况
|
||||
if (_num) {
|
||||
if (_num == _num) {
|
||||
count += _num;
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bee-table",
|
||||
"version": "1.6.17",
|
||||
"version": "1.6.18",
|
||||
"description": "Table ui component for react",
|
||||
"keywords": [
|
||||
"react",
|
||||
|
|
Loading…
Reference in New Issue