From 472bc6f4c1bf5e3f4d63ff596a37066d155e58b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Thu, 27 Apr 2023 14:13:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=20`table.hideCol()`=20?= =?UTF-8?q?=E7=9B=B8=E5=85=B3=E7=9A=84=E6=96=87=E6=A1=A3=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/table/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/table/index.md b/docs/table/index.md index 877a82f1..dba21744 100644 --- a/docs/table/index.md +++ b/docs/table/index.md @@ -471,8 +471,8 @@ table.hideCol('test', [{ hide: false }]); -// 显示或隐藏全部 -table.hideCol('test', false); // `true` or `false` `true` 则隐藏全部一般没有实质的用处,通常会用到的场景是隐藏部分列之后想要重新恢复显示所有的时候会用到这种方式传参 `false` +// 显示或隐藏全部列 +table.hideCol('test', false); // `true` or `false` ```

事件