From fe05f5f8abe25b26433c5dc5187725ffbb825989 Mon Sep 17 00:00:00 2001 From: morning-star <26325820+Sight-wcg@users.noreply.github.com> Date: Sat, 18 May 2024 11:26:38 +0800 Subject: [PATCH] =?UTF-8?q?docs(table):=20=E4=BC=98=E5=8C=96=E6=96=87?= =?UTF-8?q?=E6=A1=A3=20(#1913)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/table/detail/options.cols.md | 2 ++ docs/treeTable/detail/options.md | 13 +++++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/docs/table/detail/options.cols.md b/docs/table/detail/options.cols.md index 27ec58a9..5c8596c0 100644 --- a/docs/table/detail/options.cols.md +++ b/docs/table/detail/options.cols.md @@ -145,6 +145,8 @@ - `left` 固定在左 - `right` 固定在右 +多级表头设置固定列时,父列和子列均需设置。 + string - diff --git a/docs/treeTable/detail/options.md b/docs/treeTable/detail/options.md index 5e3842f9..ee4e54ff 100644 --- a/docs/treeTable/detail/options.md +++ b/docs/treeTable/detail/options.md @@ -76,17 +76,22 @@ treeTable.render({ | 属性 | 描述 | 类型 | 默认值 | | --- | --- | --- | --- | | indent | 层级缩进量 | number | `14` | -| flexIconClose | 关闭时的折叠图标 | string | - | -| flexIconOpen | 打开时的折叠图标 | string | - | +| flexIconClose | 自定义关闭时的折叠按钮图标 | string | - | +| flexIconOpen | 自定义打开时的折叠按钮图标 | string | - | | showIcon | 是否显示节点图标 | boolean | `true` | | icon | 自定义节点图标。若设置了该属性或数据中有该字段信息,不管打开还是关闭都以这个图标的值为准 | string | - | | iconClose | 自定义关闭时的节点图标 | string | - | | iconOpen | 自定义打开时的节点图标 | string | - | -| iconLeaf | 叶子节点的图标 | string | - | +| iconLeaf | 自定义叶子节点的图标 | string | - | | showFlexIconIfNotParent | 若非父节点时,是否显示折叠图标 | boolean | `false` | | dblClickExpand | 双击节点时,是否自动展开父节点 | boolean | `true` | | expandAllDefault 2.8.7+ | 是否默认展开全部节点 | boolean | `false` | +自定义图标支持 HTML 字符串和图标类名。例如: + +- `''` +- `'layui-icon layui-icon-addition'` + @@ -101,7 +106,7 @@ treeTable.render({ | 属性 | 描述 | 类型 | 默认值 | | --- | --- | --- | --- | -| isSimpleData | 是否简单数据模式 | boolean | `false` | +| isSimpleData | 是否使用平铺数据格式(Array) | boolean | `false` | | rootPid | 用于设置根节点的 `pid` 属性值 | string | `null` | | cascade | 用于设置复选的级联方式。支持以下可选值: | string | `all` |