From 257bc4e6785cb715071c8c637c63dbfc1558caa9 Mon Sep 17 00:00:00 2001 From: H <21418592@qq.com> Date: Mon, 24 Apr 2017 01:10:01 +0800 Subject: [PATCH] =?UTF-8?q?filterRemote=E8=BF=87=E6=BB=A4=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E5=8D=95=E6=9D=A1=E8=BF=87=E6=BB=A4=E6=97=B6=E5=BA=94?= =?UTF-8?q?=E8=AF=A5=E8=BF=94=E5=9B=9Etrue=EF=BC=8C=E8=80=8C=E4=B8=8D?= =?UTF-8?q?=E5=BA=94=E8=AF=A5=E8=BF=94=E5=9B=9E=E7=A9=BA=E5=90=A6=E5=88=99?= =?UTF-8?q?=E4=BC=9A=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/table/table.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/table/table.vue b/src/components/table/table.vue index e2d56e63..d8d5b5fe 100644 --- a/src/components/table/table.vue +++ b/src/components/table/table.vue @@ -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++) {