Merge pull request #758 from hezhiying/table-filter

filterRemote过滤时,单条过滤时应该返回true,而不应该返回空否则会报错
This commit is contained in:
Aresn 2017-04-25 14:01:25 +08:00 committed by GitHub
commit 4a70ed0f42

View file

@ -497,7 +497,7 @@
filterData (data, column) {
return data.filter((row) => {
//
if (typeof column.filterRemote === 'function') return;
if (typeof column.filterRemote === 'function') return true;
let status = !column._filterChecked.length;
for (let i = 0; i < column._filterChecked.length; i++) {