update Table filterRemote format

This commit is contained in:
梁灏 2017-04-22 14:18:07 +08:00
parent 91bda66d87
commit 73ae27d88b

View file

@ -496,9 +496,9 @@
},
filterData (data, column) {
return data.filter((row) => {
if(typeof column.filterRemote == 'function'){ //
return true;
}
//
if (typeof column.filterRemote === 'function') return;
let status = !column._filterChecked.length;
for (let i = 0; i < column._filterChecked.length; i++) {
status = column.filterMethod(column._filterChecked[i], row);
@ -509,8 +509,8 @@
},
filterOtherData (data, index) {
let column = this.cloneColumns[index];
if(typeof column.filterRemote == 'function'){
column.filterRemote.call(this.$parent,column._filterChecked,column.key,column);
if (typeof column.filterRemote === 'function') {
column.filterRemote.call(this.$parent, column._filterChecked, column.key, column);
}
this.cloneColumns.forEach((col, colIndex) => {