Skip to content
On this page

Table 表格

展示行列数据。

何时使用

  • 当有大量结构化的数据需要展现时;
  • 当需要对数据进行排序、搜索、分页、自定义操作等复杂行为时。

示例

待补充

组件属性

属性说明类型默认值
title表格标题string""
api数据源string""
rowKey数据主键string"id"
bordered边框booleantrue
columns列配置BasicColumn[][]
rowSelection选择功能配置TableRowSelection , nullnull
actionItem操作按钮ActionItem[][]
noPadding隐藏边距booleantrue

BasicColumn

列描述数据对象,是 columns 中的一项,Column 使用相同的 API。

属性说明类型默认值
title标题string""
dataIndex字段名string""
fixed是否固定列string, booleanfalse
width宽度number195
align对齐方式left , center , rightleft
ellipsis超过宽度自动省略booleantrue

TableRowSelection

选择功能的配置。

属性说明类型默认值
type多选/单选,checkbox or radiostringcheckbox

ActionItem

操作列按钮的配置

属性说明类型默认值
label标题string""
events事件any[]

Released under the MIT License.