# Table 表格

用于展示多条结构类似的数据,可对数据进行排序、筛选、对比或其他自定义操作。

# 基础表格

基础的表格展示用法。

tu-table元素中注入data对象数组后,在tu-table-column中用prop属性来对应对象中的键名即可填入数据,用label属性来定义表格的列名。可以使用width属性来定义列宽。

<template>
	<tu-table
		:data="tableData"
		style="width: 100%"
	>
		<tu-table-column
			prop="date"
			label="日期"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="address"
			label="地址"
		>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 122 号",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 123 号",
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 124 号",
					},
				],
			};
		},
	};
</script>
Expand Copy

# 带斑马纹表格

使用带斑马纹的表格,可以更容易区分出不同行的数据。

stripe属性可以创建带斑马纹的表格。它接受一个Boolean,默认为false,设置为true即为启用。

<template>
	<tu-table
		:data="tableData"
		stripe
		style="width: 100%"
	>
		<tu-table-column
			prop="date"
			label="日期"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="address"
			label="地址"
		>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 122 号",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 123 号",
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 124 号",
					},
				],
			};
		},
	};
</script>
Expand Copy

# 带边框表格

默认情况下,Table 组件是不具有竖直方向的边框的,如果需要,可以使用border属性,它接受一个Boolean,设置为true即可启用。

<template>
	<tu-table
		:data="tableData"
		border
		style="width: 100%"
	>
		<tu-table-column
			prop="date"
			label="日期"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="address"
			label="地址"
		>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 122 号",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 123 号",
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 124 号",
					},
				],
			};
		},
	};
</script>
Expand Copy

# 带状态表格

可将表格内容 highlight 显示,方便区分「成功、信息、警告、危险」等内容。

可以通过指定 Table 组件的 row-class-name 属性来为 Table 中的某一行添加 class,表明该行处于某种状态。

<template>
	<tu-table
		:data="tableData"
		style="width: 100%"
		:row-class-name="tableRowClassName"
	>
		<tu-table-column
			prop="date"
			label="日期"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="address"
			label="地址"
		>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		methods: {
			tableRowClassName({ row, rowIndex }) {
				if (rowIndex === 1) {
					return "warning-row";
				} else if (rowIndex === 3) {
					return "success-row";
				}
				return "";
			},
		},
		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
				],
			};
		},
	};
</script>
<style>
	.tu-table .warning-row {
		color: #e6a23c;
	}

	.tu-table .success-row {
		color: #6bc43f;
	}
</style>
Expand Copy

# 固定表头

纵向内容过多时,可选择固定表头。

只要在tu-table元素中定义了height属性,即可实现固定表头的表格,而不需要额外的代码。

<template>
	<tu-table
		:data="tableData"
		height="250"
		border
		style="width: 100%"
	>
		<tu-table-column
			prop="date"
			label="日期"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="address"
			label="地址"
		>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-08",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-06",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-07",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
				],
			};
		},
	};
</script>
Expand Copy

# 固定列

横向内容过多时,可选择固定列。

固定列需要使用fixed属性,它接受 Boolean 值或者left right,表示左边固定还是右边固定。

<template>
	<tu-table
		:data="tableData"
		border
		style="width: 100%"
	>
		<tu-table-column
			fixed
			prop="date"
			label="日期"
			width="150"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			prop="province"
			label="省份"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			prop="city"
			label="市区"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			prop="address"
			label="地址"
			width="300"
		>
		</tu-table-column>
		<tu-table-column
			prop="zip"
			label="邮编"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			fixed="right"
			label="操作"
			width="110"
		>
			<template slot-scope="scope">
				<tu-button
					@click="handleClick(scope.row)"
					size="mini"
					>查看</tu-button
				>
				<tu-button
					style="margin-left: 4px"
					size="mini"
					>编辑</tu-button
				>
			</template>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		methods: {
			handleClick(row) {
				console.log(row);
			},
		},

		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 122 号",
						zip: 200333,
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 123 号",
						zip: 200333,
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 124 号",
						zip: 200333,
					},
				],
			};
		},
	};
</script>
Expand Copy

# 固定列和表头

横纵内容过多时,可选择固定列和表头。

固定列和表头可以同时使用,只需要将上述两个属性分别设置好即可。

<template>
	<tu-table
		:data="tableData"
		style="width: 100%"
		height="250"
	>
		<tu-table-column
			fixed
			prop="date"
			label="日期"
			width="150"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			prop="province"
			label="省份"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			prop="city"
			label="市区"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			prop="address"
			label="地址"
			width="300"
		>
		</tu-table-column>
		<tu-table-column
			prop="zip"
			label="邮编"
			width="120"
		>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-03",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-02",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-08",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-06",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-07",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
				],
			};
		},
	};
</script>
Expand Copy

# 流体高度

当数据量动态变化时,可以为 Table 设置一个最大高度。

通过设置max-height属性为 Table 指定最大高度。此时若表格所需的高度大于最大高度,则会显示一个滚动条。

<template>
	<tu-table
		:data="tableData"
		style="width: 100%"
		max-height="250"
	>
		<tu-table-column
			fixed
			prop="date"
			label="日期"
			width="150"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			prop="province"
			label="省份"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			prop="city"
			label="市区"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			prop="address"
			label="地址"
			width="300"
		>
		</tu-table-column>
		<tu-table-column
			prop="zip"
			label="邮编"
			width="120"
		>
		</tu-table-column>
		<tu-table-column
			fixed="right"
			label="操作"
			width="80"
		>
			<template slot-scope="scope">
				<tu-button
					@click.native.prevent="deleteRow(scope.$index, tableData)"
					size="mini"
				>
					移除
				</tu-button>
			</template>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		methods: {
			deleteRow(index, rows) {
				rows.splice(index, 1);
			},
		},
		data() {
			return {
				tableData: [
					{
						date: "2022-05-03",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-02",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-08",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-06",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-07",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
				],
			};
		},
	};
</script>
Expand Copy

# 多级表头

数据结构比较复杂的时候,可使用多级表头来展现数据的层次关系。

只需要在 tu-table-column 里面嵌套 tu-table-column,就可以实现多级表头。

<template>
	<tu-table
		:data="tableData"
		style="width: 100%"
	>
		<tu-table-column
			prop="date"
			label="日期"
			width="150"
		>
		</tu-table-column>
		<tu-table-column label="配送信息">
			<tu-table-column
				prop="name"
				label="姓名"
				width="120"
			>
			</tu-table-column>
			<tu-table-column label="地址">
				<tu-table-column
					prop="province"
					label="省份"
					width="120"
				>
				</tu-table-column>
				<tu-table-column
					prop="city"
					label="市区"
					width="120"
				>
				</tu-table-column>
				<tu-table-column
					prop="address"
					label="地址"
					width="300"
				>
				</tu-table-column>
				<tu-table-column
					prop="zip"
					label="邮编"
					width="120"
				>
				</tu-table-column>
			</tu-table-column>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-03",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-02",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-08",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-06",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
					{
						date: "2022-05-07",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
					},
				],
			};
		},
	};
</script>
Expand Copy

# 单选

选择单行数据时使用色块表示。

选中第二行 取消选择

Table 组件提供了单选的支持,只需要配置highlight-current-row属性即可实现单选。之后由current-change事件来管理选中时触发的事件,它会传入currentRowoldCurrentRow。如果需要显示索引,可以增加一列tu-table-column,设置type属性为index即可显示从 1 开始的索引号。

<template>
	<div>
		<tu-table
			ref="singleTable"
			:data="tableData"
			highlight-current-row
			@current-change="handleCurrentChange"
			style="width: 100%"
		>
			<tu-table-column
				type="index"
				width="50"
			>
			</tu-table-column>
			<tu-table-column
				property="date"
				label="日期"
				width="120"
			>
			</tu-table-column>
			<tu-table-column
				property="name"
				label="姓名"
				width="120"
			>
			</tu-table-column>
			<tu-table-column
				property="address"
				label="地址"
			>
			</tu-table-column>
		</tu-table>
		<div style="margin-top: 20px">
			<tu-button @click="setCurrent(tableData[1])">选中第二行</tu-button>
			<tu-button
				style="margin-left: 4px"
				@click="setCurrent()"
				>取消选择</tu-button
			>
		</div>
	</div>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 122 号",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 123 号",
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 124 号",
					},
				],
				currentRow: null,
			};
		},

		methods: {
			setCurrent(row) {
				this.$refs.singleTable.setCurrentRow(row);
			},
			handleCurrentChange(val) {
				this.currentRow = val;
			},
		},
	};
</script>
Expand Copy

# 多选

选择多行数据时使用 Checkbox。

切换第二、第三行的选中状态 取消选择

实现多选非常简单: 手动添加一个tu-table-column,设type属性为selection即可;默认情况下若内容过多会折行显示,若需要单行显示可以使用show-overflow-tooltip属性,它接受一个Boolean,为true时多余的内容会在 hover 时以 tooltip 的形式显示出来。

<template>
	<div>
		<tu-table
			ref="multipleTable"
			:data="tableData"
			tooltip-effect="dark"
			style="width: 100%"
			@selection-change="handleSelectionChange"
		>
			<tu-table-column
				type="selection"
				width="55"
			>
			</tu-table-column>
			<tu-table-column
				label="日期"
				width="120"
			>
				<template slot-scope="scope">{{ scope.row.date }}</template>
			</tu-table-column>
			<tu-table-column
				prop="name"
				label="姓名"
				width="120"
			>
			</tu-table-column>
			<tu-table-column
				prop="address"
				label="地址"
				show-overflow-tooltip
			>
			</tu-table-column>
		</tu-table>
		<div style="margin-top: 20px">
			<tu-button @click="toggleSelection([tableData[1], tableData[2]])"
				>切换第二、第三行的选中状态</tu-button
			>
			<tu-button
				style="margin-left: 4px"
				@click="toggleSelection()"
				>取消选择</tu-button
			>
		</div>
	</div>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-08",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-06",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-07",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
				],
				multipleSelection: [],
			};
		},

		methods: {
			toggleSelection(rows) {
				if (rows) {
					rows.forEach(row => {
						this.$refs.multipleTable.toggleRowSelection(row);
					});
				} else {
					this.$refs.multipleTable.clearSelection();
				}
			},
			handleSelectionChange(val) {
				this.multipleSelection = val;
			},
		},
	};
</script>
Expand Copy

# 排序

对表格进行排序,可快速查找或对比数据。

在列中设置sortable属性即可实现以该列为基准的排序,接受一个Boolean,默认为false。可以通过 Table 的default-sort属性设置默认的排序列和排序顺序。可以使用sort-method或者sort-by使用自定义的排序规则。如果需要后端排序,需将sortable设置为custom,同时在 Table 上监听sort-change事件,在事件回调中可以获取当前排序的字段名和排序顺序,从而向接口请求排序后的表格数据。在本例中,我们还使用了formatter属性,它用于格式化指定列的值,接受一个Function,会传入两个参数:rowcolumn,可以根据自己的需求进行处理。

<template>
	<tu-table
		:data="tableData"
		style="width: 100%"
		:default-sort="{prop: 'date', order: 'descending'}"
	>
		<tu-table-column
			prop="date"
			label="日期"
			sortable
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
			sortable
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="address"
			label="地址"
			:formatter="formatter"
		>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 122 号",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 123 号",
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 124 号",
					},
				],
			};
		},
		methods: {
			formatter(row, column) {
				return row.address;
			},
		},
	};
</script>
Expand Copy

# 筛选

对表格进行筛选,可快速查找到自己想看的数据。

清除日期过滤器 清除所有过滤器

在列中设置filters filter-method属性即可开启该列的筛选,filters 是一个数组,filter-method是一个方法,它用于决定某些数据是否显示,会传入三个参数:value, rowcolumn

<template>
	<div>
		<tu-table
			ref="filterTable"
			:data="tableData"
			style="width: 100%"
		>
			<tu-table-column
				prop="date"
				label="日期"
				sortable
				width="180"
				column-key="date"
				:filters="[{text: '2022-05-01', value: '2022-05-01'}, {text: '2022-05-02', value: '2022-05-02'}, {text: '2022-05-03', value: '2022-05-03'}, {text: '2022-05-04', value: '2022-05-04'}]"
				:filter-method="filterHandler"
			>
			</tu-table-column>
			<tu-table-column
				prop="name"
				label="姓名"
				width="180"
			>
			</tu-table-column>
			<tu-table-column
				prop="address"
				label="地址"
				:formatter="formatter"
			>
			</tu-table-column>
			<tu-table-column
				prop="tag"
				label="标签"
				width="100"
				:filters="[{ text: '家', value: '家' }, { text: '公司', value: '公司' }]"
				:filter-method="filterTag"
				filter-placement="bottom-end"
			>
				<template slot-scope="scope">
					<tu-tag
						effect="plain"
						:color="scope.row.tag === '家' ? '#6d5dfc' : '#6bc43f'"
						disable-transitions
						>{{scope.row.tag}}</tu-tag
					>
				</template>
			</tu-table-column>
		</tu-table>
		<div style="margin-top: 20px">
			<tu-button @click="resetDateFilter">清除日期过滤器</tu-button>
			<tu-button
				style="margin-left: 4px"
				@click="clearFilter"
				>清除所有过滤器</tu-button
			>
		</div>
	</div>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
						tag: "家",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 122 号",
						tag: "公司",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 123 号",
						tag: "家",
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 124 号",
						tag: "公司",
					},
				],
			};
		},
		methods: {
			resetDateFilter() {
				this.$refs.filterTable.clearFilter("date");
			},
			clearFilter() {
				this.$refs.filterTable.clearFilter();
			},
			formatter(row, column) {
				return row.address;
			},
			filterTag(value, row) {
				return row.tag === value;
			},
			filterHandler(value, row, column) {
				const property = column["property"];
				return row[property] === value;
			},
		},
	};
</script>
Expand Copy

# 自定义列模板

自定义列的显示内容,可组合其他组件使用。

通过 Scoped slot 可以获取到 row, column, $index 和 store(table 内部的状态管理)的数据,用法参考 demo。

<template>
	<tu-table
		:data="tableData"
		style="width: 100%"
	>
		<tu-table-column label="日期">
			<template slot-scope="scope">
				<i class="tu-icon-time-circle"></i>
				<span style="margin-left: 10px">{{ scope.row.date }}</span>
			</template>
		</tu-table-column>
		<tu-table-column label="姓名">
			<template slot-scope="scope">
				<tu-popover
					trigger="hover"
					placement="top"
				>
					<p>姓名: {{ scope.row.name }}</p>
					<p>住址: {{ scope.row.address }}</p>
					<div
						slot="reference"
						style="display: inline-block"
					>
						<tu-tag size="medium">{{ scope.row.name }}</tu-tag>
					</div>
				</tu-popover>
			</template>
		</tu-table-column>
		<tu-table-column label="操作">
			<template slot-scope="scope">
				<tu-button
					size="mini"
					@click="handleEdit(scope.$index, scope.row)"
					>编辑</tu-button
				>
				<tu-button
					size="mini"
					type="danger"
					style="margin-left: 4px"
					@click="handleDelete(scope.$index, scope.row)"
					>删除</tu-button
				>
			</template>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 122 号",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 123 号",
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 124 号",
					},
				],
			};
		},
		methods: {
			handleEdit(index, row) {
				console.log(index, row);
			},
			handleDelete(index, row) {
				console.log(index, row);
			},
		},
	};
</script>
Expand Copy

# 展开行

当行内容过多并且不想显示横向滚动条时,可以使用 Table 展开行功能。

通过设置 type="expand" 和 Scoped slot 可以开启展开行功能,tu-table-column 的模板会被渲染成为展开行的内容,展开行可访问的属性与使用自定义列模板时的 Scoped slot 相同。

<template>
	<tu-table
		:data="tableData"
		style="width: 100%"
	>
		<tu-table-column type="expand">
			<template slot-scope="props">
				<tu-form
					labtu-position="left"
					inline
					class="demo-table-expand"
				>
					<tu-form-item label="商品名称">
						<span>{{ props.row.name }}</span>
					</tu-form-item>
					<tu-form-item label="所属店铺">
						<span>{{ props.row.shop }}</span>
					</tu-form-item>
					<tu-form-item label="商品 ID">
						<span>{{ props.row.id }}</span>
					</tu-form-item>
					<tu-form-item label="店铺 ID">
						<span>{{ props.row.shopId }}</span>
					</tu-form-item>
					<tu-form-item label="商品分类">
						<span>{{ props.row.category }}</span>
					</tu-form-item>
					<tu-form-item label="店铺地址">
						<span>{{ props.row.address }}</span>
					</tu-form-item>
					<tu-form-item label="商品描述">
						<span>{{ props.row.desc }}</span>
					</tu-form-item>
				</tu-form>
			</template>
		</tu-table-column>
		<tu-table-column
			label="商品 ID"
			prop="id"
		>
		</tu-table-column>
		<tu-table-column
			label="商品名称"
			prop="name"
		>
		</tu-table-column>
		<tu-table-column
			label="描述"
			prop="desc"
		>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						id: "12987122",
						name: "好滋好味鸡蛋仔",
						category: "江浙小吃、小吃零食",
						desc: "荷兰优质淡奶,奶香浓而不腻",
						address: "合肥市蜀山区真北路",
						shop: "唐小虎夫妻店",
						shopId: "10333",
					},
					{
						id: "12987123",
						name: "好滋好味鸡蛋仔",
						category: "江浙小吃、小吃零食",
						desc: "荷兰优质淡奶,奶香浓而不腻",
						address: "合肥市蜀山区真北路",
						shop: "唐小虎夫妻店",
						shopId: "10333",
					},
					{
						id: "12987125",
						name: "好滋好味鸡蛋仔",
						category: "江浙小吃、小吃零食",
						desc: "荷兰优质淡奶,奶香浓而不腻",
						address: "合肥市蜀山区真北路",
						shop: "唐小虎夫妻店",
						shopId: "10333",
					},
					{
						id: "12987126",
						name: "好滋好味鸡蛋仔",
						category: "江浙小吃、小吃零食",
						desc: "荷兰优质淡奶,奶香浓而不腻",
						address: "合肥市蜀山区真北路",
						shop: "唐小虎夫妻店",
						shopId: "10333",
					},
				],
			};
		},
	};
</script>
<style>
	.demo-table-expand {
		font-size: 0;
	}
	.demo-table-expand label {
		width: 90px;
		color: #9baacf;
	}
	.demo-table-expand .tu-form-item {
		margin-right: 0;
		margin-bottom: 0;
		width: 50%;
	}
</style>
Expand Copy

# 树形数据与懒加载

支持树类型的数据的显示。当 row 中包含 children 字段时,被视为树形数据。渲染树形数据时,必须要指定 row-key。支持子节点数据异步加载。设置 Table 的 lazy 属性为 true 与加载函数 load 。通过指定 row 中的 hasChildren 字段来指定哪些行是包含子节点。childrenhasChildren 都可以通过 tree-props 配置。

<template>
	<div>
		<tu-table
			:data="tableData"
			style="width: 100%;margin-bottom: 20px;"
			row-key="id"
			border
			default-expand-all
			:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
		>
			<tu-table-column
				prop="date"
				label="日期"
				sortable
				width="180"
			>
			</tu-table-column>
			<tu-table-column
				prop="name"
				label="姓名"
				sortable
				width="180"
			>
			</tu-table-column>
			<tu-table-column
				prop="address"
				label="地址"
			>
			</tu-table-column>
		</tu-table>

		<tu-table
			:data="tableData1"
			style="width: 100%"
			row-key="id"
			border
			lazy
			:load="load"
			:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
		>
			<tu-table-column
				prop="date"
				label="日期"
				width="180"
			>
			</tu-table-column>
			<tu-table-column
				prop="name"
				label="姓名"
				width="180"
			>
			</tu-table-column>
			<tu-table-column
				prop="address"
				label="地址"
			>
			</tu-table-column>
		</tu-table>
	</div>
</template>
<script>
	export default {
		data() {
			return {
				tableData: [
					{
						id: 1,
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						id: 2,
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 122 号",
					},
					{
						id: 3,
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 123 号",
						children: [
							{
								id: 31,
								date: "2022-05-01",
								name: "唐小虎",
								address: "合肥市高新区创新大道 123 号",
							},
							{
								id: 32,
								date: "2022-05-01",
								name: "唐小虎",
								address: "合肥市高新区创新大道 123 号",
							},
						],
					},
					{
						id: 4,
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 124 号",
					},
				],
				tableData1: [
					{
						id: 1,
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						id: 2,
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 122 号",
					},
					{
						id: 3,
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 123 号",
						hasChildren: true,
					},
					{
						id: 4,
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 124 号",
					},
				],
			};
		},
		methods: {
			load(tree, treeNode, resolve) {
				setTimeout(() => {
					resolve([
						{
							id: 31,
							date: "2022-05-01",
							name: "唐小虎",
							address: "合肥市高新区创新大道 123 号",
						},
						{
							id: 32,
							date: "2022-05-01",
							name: "唐小虎",
							address: "合肥市高新区创新大道 123 号",
						},
					]);
				}, 1000);
			},
		},
	};
</script>
Expand Copy

# 自定义表头

表头支持自定义。

通过设置 Scoped slot (opens new window) 来自定义表头。

<template>
	<tu-table
		:data="tableData.filter(data => !search || data.name.toLowerCase().includes(search.toLowerCase()))"
		style="width: 100%"
	>
		<tu-table-column
			label="日期"
			prop="date"
		>
		</tu-table-column>
		<tu-table-column
			label="名称"
			prop="name"
		>
		</tu-table-column>
		<tu-table-column align="right">
			<template
				slot="header"
				slot-scope="scope"
			>
				<tu-input
					v-model="search"
					size="mini"
					placeholder="输入关键字搜索"
				/>
			</template>
			<template slot-scope="scope">
				<tu-button
					size="mini"
					@click="handleEdit(scope.$index, scope.row)"
					>编辑</tu-button
				>
				<tu-button
					size="mini"
					type="danger"
					style="margin-left: 4px"
					@click="handleDelete(scope.$index, scope.row)"
					>删除</tu-button
				>
			</template>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						address: "合肥市高新区创新大道 121 号",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						address: "合肥市高新区创新大道 122 号",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						address: "合肥市高新区创新大道 123 号",
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						address: "合肥市高新区创新大道 124 号",
					},
				],
				search: "",
			};
		},
		methods: {
			handleEdit(index, row) {
				console.log(index, row);
			},
			handleDelete(index, row) {
				console.log(index, row);
			},
		},
	};
</script>
Expand Copy

# 表尾合计行

若表格展示的是各类数字,可以在表尾显示各列的合计。

show-summary设置为true就会在表格尾部展示合计行。默认情况下,对于合计行,第一列不进行数据求合操作,而是显示「合计」二字(可通过sum-text配置),其余列会将本列所有数值进行求合操作,并显示出来。当然,你也可以定义自己的合计逻辑。使用summary-method并传入一个方法,返回一个数组,这个数组中的各项就会显示在合计行的各列中,具体可以参考本例中的第二个表格。

<template>
	<tu-table
		:data="tableData"
		border
		show-summary
		style="width: 100%"
	>
		<tu-table-column
			prop="id"
			label="ID"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
		>
		</tu-table-column>
		<tu-table-column
			prop="amount1"
			sortable
			label="数值 1"
		>
		</tu-table-column>
		<tu-table-column
			prop="amount2"
			sortable
			label="数值 2"
		>
		</tu-table-column>
		<tu-table-column
			prop="amount3"
			sortable
			label="数值 3"
		>
		</tu-table-column>
	</tu-table>

	<tu-table
		:data="tableData"
		border
		height="200"
		:summary-method="getSummaries"
		show-summary
		style="width: 100%; margin-top: 20px"
	>
		<tu-table-column
			prop="id"
			label="ID"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
		>
		</tu-table-column>
		<tu-table-column
			prop="amount1"
			label="数值 1(元)"
		>
		</tu-table-column>
		<tu-table-column
			prop="amount2"
			label="数值 2(元)"
		>
		</tu-table-column>
		<tu-table-column
			prop="amount3"
			label="数值 3(元)"
		>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						id: "12987122",
						name: "唐小虎",
						amount1: "234",
						amount2: "3.2",
						amount3: 10,
					},
					{
						id: "12987123",
						name: "唐小虎",
						amount1: "165",
						amount2: "4.43",
						amount3: 12,
					},
					{
						id: "12987124",
						name: "唐小虎",
						amount1: "324",
						amount2: "1.9",
						amount3: 9,
					},
					{
						id: "12987125",
						name: "唐小虎",
						amount1: "621",
						amount2: "2.2",
						amount3: 17,
					},
					{
						id: "12987126",
						name: "唐小虎",
						amount1: "539",
						amount2: "4.1",
						amount3: 15,
					},
				],
			};
		},
		methods: {
			getSummaries(param) {
				const { columns, data } = param;
				const sums = [];
				columns.forEach((column, index) => {
					if (index === 0) {
						sums[index] = "总价";
						return;
					}
					const values = data.map(item => Number(item[column.property]));
					if (!values.every(value => isNaN(value))) {
						sums[index] = values.reduce((prev, curr) => {
							const value = Number(curr);
							if (!isNaN(value)) {
								return prev + curr;
							} else {
								return prev;
							}
						}, 0);
						sums[index] += " 元";
					} else {
						sums[index] = "N/A";
					}
				});

				return sums;
			},
		},
	};
</script>
Expand Copy

# 合并行或列

多行或多列共用一个数据时,可以合并行或列。

通过给table传入span-method方法可以实现合并行或列,方法的参数是一个对象,里面包含当前行row、当前列column、当前行号rowIndex、当前列号columnIndex四个属性。该函数可以返回一个包含两个元素的数组,第一个元素代表rowspan,第二个元素代表colspan。 也可以返回一个键名为rowspancolspan的对象。

<template>
	<div>
		<tu-table
			:data="tableData"
			:span-method="arraySpanMethod"
			border
			style="width: 100%"
		>
			<tu-table-column
				prop="id"
				label="ID"
				width="180"
			>
			</tu-table-column>
			<tu-table-column
				prop="name"
				label="姓名"
			>
			</tu-table-column>
			<tu-table-column
				prop="amount1"
				sortable
				label="数值 1"
			>
			</tu-table-column>
			<tu-table-column
				prop="amount2"
				sortable
				label="数值 2"
			>
			</tu-table-column>
			<tu-table-column
				prop="amount3"
				sortable
				label="数值 3"
			>
			</tu-table-column>
		</tu-table>

		<tu-table
			:data="tableData"
			:span-method="objectSpanMethod"
			border
			style="width: 100%; margin-top: 20px"
		>
			<tu-table-column
				prop="id"
				label="ID"
				width="180"
			>
			</tu-table-column>
			<tu-table-column
				prop="name"
				label="姓名"
			>
			</tu-table-column>
			<tu-table-column
				prop="amount1"
				label="数值 1(元)"
			>
			</tu-table-column>
			<tu-table-column
				prop="amount2"
				label="数值 2(元)"
			>
			</tu-table-column>
			<tu-table-column
				prop="amount3"
				label="数值 3(元)"
			>
			</tu-table-column>
		</tu-table>
	</div>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						id: "12987122",
						name: "唐小虎",
						amount1: "234",
						amount2: "3.2",
						amount3: 10,
					},
					{
						id: "12987123",
						name: "唐小虎",
						amount1: "165",
						amount2: "4.43",
						amount3: 12,
					},
					{
						id: "12987124",
						name: "唐小虎",
						amount1: "324",
						amount2: "1.9",
						amount3: 9,
					},
					{
						id: "12987125",
						name: "唐小虎",
						amount1: "621",
						amount2: "2.2",
						amount3: 17,
					},
					{
						id: "12987126",
						name: "唐小虎",
						amount1: "539",
						amount2: "4.1",
						amount3: 15,
					},
				],
			};
		},
		methods: {
			arraySpanMethod({ row, column, rowIndex, columnIndex }) {
				if (rowIndex % 2 === 0) {
					if (columnIndex === 0) {
						return [1, 2];
					} else if (columnIndex === 1) {
						return [0, 0];
					}
				}
			},

			objectSpanMethod({ row, column, rowIndex, columnIndex }) {
				if (columnIndex === 0) {
					if (rowIndex % 2 === 0) {
						return {
							rowspan: 2,
							colspan: 1,
						};
					} else {
						return {
							rowspan: 0,
							colspan: 0,
						};
					}
				}
			},
		},
	};
</script>
Expand Copy

# 自定义索引

自定义 type=index 列的行号。

通过给 type=index 的列传入 index 属性,可以自定义索引。该属性传入数字时,将作为索引的起始值。也可以传入一个方法,它提供当前行的行号(从 0 开始)作为参数,返回值将作为索引展示。

<template>
	<tu-table
		:data="tableData"
		style="width: 100%"
	>
		<tu-table-column
			type="index"
			:index="indexMethod"
		>
		</tu-table-column>
		<tu-table-column
			prop="date"
			label="日期"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="name"
			label="姓名"
			width="180"
		>
		</tu-table-column>
		<tu-table-column
			prop="address"
			label="地址"
		>
		</tu-table-column>
	</tu-table>
</template>

<script>
	export default {
		data() {
			return {
				tableData: [
					{
						date: "2022-05-02",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 121 号",
						zip: 200333,
						tag: "家",
					},
					{
						date: "2022-05-04",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 122 号",
						zip: 200333,
						tag: "公司",
					},
					{
						date: "2022-05-01",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 123 号",
						zip: 200333,
						tag: "家",
					},
					{
						date: "2022-05-03",
						name: "唐小虎",
						province: "合肥",
						city: "蜀山区",
						address: "合肥市高新区创新大道 124 号",
						zip: 200333,
						tag: "公司",
					},
				],
			};
		},
		methods: {
			indexMethod(index) {
				return index * 2;
			},
		},
	};
</script>
Expand Copy

# Table Attributes

参数 说明 类型 可选值 默认值
data 显示的数据 array
height Table 的高度,默认为自动高度。如果 height 为 number 类型,单位 px;如果 height 为 string 类型,则这个高度会设置为 Table 的 style.height 的值,Table 的高度会受控于外部样式。 string/number
max-height Table 的最大高度。合法的值为数字或者单位为 px 的高度。 string/number
stripe 是否为斑马纹 table boolean false
border 是否带有纵向边框 boolean false
size Table 的尺寸 string medium / small / mini
fit 列的宽度是否自撑开 boolean true
show-header 是否显示表头 boolean true
highlight-current-row 是否要高亮当前行 boolean false
current-row-key 当前行的 key,只写属性 String,Number
row-class-name 行的 className 的回调方法,也可以使用字符串为所有行设置一个固定的 className。 Function({row, rowIndex})/String
row-style 行的 style 的回调方法,也可以使用一个固定的 Object 为所有行设置一样的 Style。 Function({row, rowIndex})/Object
cell-class-name 单元格的 className 的回调方法,也可以使用字符串为所有单元格设置一个固定的 className。 Function({row, column, rowIndex, columnIndex})/String
cell-style 单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有单元格设置一样的 Style。 Function({row, column, rowIndex, columnIndex})/Object
header-row-class-name 表头行的 className 的回调方法,也可以使用字符串为所有表头行设置一个固定的 className。 Function({row, rowIndex})/String
header-row-style 表头行的 style 的回调方法,也可以使用一个固定的 Object 为所有表头行设置一样的 Style。 Function({row, rowIndex})/Object
header-cell-class-name 表头单元格的 className 的回调方法,也可以使用字符串为所有表头单元格设置一个固定的 className。 Function({row, column, rowIndex, columnIndex})/String
header-cell-style 表头单元格的 style 的回调方法,也可以使用一个固定的 Object 为所有表头单元格设置一样的 Style。 Function({row, column, rowIndex, columnIndex})/Object
row-key 行数据的 Key,用来优化 Table 的渲染;在使用 reserve-selection 功能与显示树形数据时,该属性是必填的。类型为 String 时,支持多层访问:user.info.id,但不支持 user.info[0].id,此种情况请使用 Function Function(row)/String
empty-text 空数据时显示的文本内容,也可以通过 slot="empty" 设置 String 暂无数据
default-expand-all 是否默认展开所有行,当 Table 包含展开行存在或者为树形表格时有效 Boolean false
expand-row-keys 可以通过该属性设置 Table 目前的展开行,需要设置 row-key 属性才能使用,该属性为展开行的 keys 数组。 Array
default-sort 默认的排序列的 prop 和顺序。它的prop属性指定默认的排序的列,order指定默认排序的顺序 Object order: ascending, descending 如果只指定了prop, 没有指定order, 则默认顺序是 ascending
tooltip-effect tooltip effect 属性 String dark/light
show-summary 是否在表尾显示合计行 Boolean false
sum-text 合计行第一列的文本 String 合计
summary-method 自定义的合计计算方法 Function({ columns, data })
span-method 合并行或列的计算方法 Function({ row, column, rowIndex, columnIndex })
select-on-indeterminate 在多选表格中,当仅有部分行被选中时,点击表头的多选框时的行为。若为 true,则选中所有行;若为 false,则取消选择所有行 Boolean true
indent 展示树形数据时,树节点的缩进 Number 16
lazy 是否懒加载子节点数据 Boolean
load 加载子节点数据的函数,lazy 为 true 时生效,函数第二个参数包含了节点的层级信息 Function(row, treeNode, resolve)
tree-props 渲染嵌套数据的配置选项 Object { hasChildren: 'hasChildren', children: 'children' }

# Table Events

事件名 说明 参数
select 当用户手动勾选数据行的 Checkbox 时触发的事件 selection, row
select-all 当用户手动勾选全选 Checkbox 时触发的事件 selection
selection-change 当选择项发生变化时会触发该事件 selection
cell-mouse-enter 当单元格 hover 进入时会触发该事件 row, column, cell, event
cell-mouse-leave 当单元格 hover 退出时会触发该事件 row, column, cell, event
cell-click 当某个单元格被点击时会触发该事件 row, column, cell, event
cell-dblclick 当某个单元格被双击击时会触发该事件 row, column, cell, event
row-click 当某一行被点击时会触发该事件 row, column, event
row-contextmenu 当某一行被鼠标右键点击时会触发该事件 row, column, event
row-dblclick 当某一行被双击时会触发该事件 row, column, event
header-click 当某一列的表头被点击时会触发该事件 column, event
header-contextmenu 当某一列的表头被鼠标右键点击时触发该事件 column, event
sort-change 当表格的排序条件发生变化的时候会触发该事件 { column, prop, order }
filter-change 当表格的筛选条件发生变化的时候会触发该事件,参数的值是一个对象,对象的 key 是 column 的 columnKey,对应的 value 为用户选择的筛选条件的数组。 filters
current-change 当表格的当前行发生变化的时候会触发该事件,如果要高亮当前行,请打开表格的 highlight-current-row 属性 currentRow, oldCurrentRow
header-dragend 当拖动表头改变了列的宽度的时候会触发该事件 newWidth, oldWidth, column, event
expand-change 当用户对某一行展开或者关闭的时候会触发该事件(展开行时,回调的第二个参数为 expandedRows;树形表格时第二参数为 expanded) row, (expandedRows | expanded)

# Table Methods

方法名 说明 参数
clearSelection 用于多选表格,清空用户的选择
toggleRowSelection 用于多选表格,切换某一行的选中状态,如果使用了第二个参数,则是设置这一行选中与否(selected 为 true 则选中) row, selected
toggleAllSelection 用于多选表格,切换所有行的选中状态 -
toggleRowExpansion 用于可展开表格与树形表格,切换某一行的展开状态,如果使用了第二个参数,则是设置这一行展开与否(expanded 为 true 则展开) row, expanded
setCurrentRow 用于单选表格,设定某一行为选中行,如果调用时不加参数,则会取消目前高亮行的选中状态。 row
clearSort 用于清空排序条件,数据会恢复成未排序的状态
clearFilter 不传入参数时用于清空所有过滤条件,数据会恢复成未过滤的状态,也可传入由 columnKey 组成的数组以清除指定列的过滤条件 columnKey
doLayout 对 Table 进行重新布局。当 Table 或其祖先元素由隐藏切换为显示时,可能需要调用此方法
sort 手动对 Table 进行排序。参数prop属性指定排序列,order指定排序顺序。 prop: string, order: string

# Table Slot

name 说明
append 插入至表格最后一行之后的内容,如果需要对表格的内容进行无限滚动操作,可能需要用到这个 slot。若表格有合计行,该 slot 会位于合计行之上。

# Table-column Attributes

参数 说明 类型 可选值 默认值
type 对应列的类型。如果设置了 selection 则显示多选框;如果设置了 index 则显示该行的索引(从 1 开始计算);如果设置了 expand 则显示为一个可展开的按钮 string selection/index/expand
index 如果设置了 type=index,可以通过传递 index 属性来自定义索引 number, Function(index) - -
column-key column 的 key,如果需要使用 filter-change 事件,则需要此属性标识是哪个 column 的筛选条件 string
label 显示的标题 string
prop 对应列内容的字段名,也可以使用 property 属性 string
width 对应列的宽度 string
min-width 对应列的最小宽度,与 width 的区别是 width 是固定的,min-width 会把剩余宽度按比例分配给设置了 min-width 的列 string
fixed 列是否固定在左侧或者右侧,true 表示固定在左侧 string, boolean true, left, right
render-header 列标题 Label 区域渲染使用的 Function Function(h, { column, $index })
sortable 对应列是否可以排序,如果设置为 'custom',则代表用户希望远程排序,需要监听 Table 的 sort-change 事件 boolean, string true, false, 'custom' false
sort-method 对数据进行排序的时候使用的方法,仅当 sortable 设置为 true 的时候有效,需返回一个数字,和 Array.sort 表现一致 Function(a, b)
sort-by 指定数据按照哪个属性进行排序,仅当 sortable 设置为 true 且没有设置 sort-method 的时候有效。如果 sort-by 为数组,则先按照第 1 个属性排序,如果第 1 个相等,再按照第 2 个排序,以此类推 String/Array/Function(row, index)
sort-orders 数据在排序时所使用排序策略的轮转顺序,仅当 sortable 为 true 时有效。需传入一个数组,随着用户点击表头,该列依次按照数组中元素的顺序进行排序 array 数组中的元素需为以下三者之一:ascending 表示升序,descending 表示降序,null 表示还原为原始顺序 ['ascending', 'descending', null]
resizable 对应列是否可以通过拖动改变宽度(需要在 tu-table 上设置 border 属性为真) boolean true
formatter 用来格式化内容 Function(row, column, cellValue, index)
show-overflow-tooltip 当内容过长被隐藏时显示 tooltip Boolean false
align 对齐方式 String left/center/right left
header-align 表头对齐方式,若不设置该项,则使用表格的对齐方式 String left/center/right
class-name 列的 className string
label-class-name 当前列标题的自定义类名 string
selectable 仅对 type=selection 的列有效,类型为 Function,Function 的返回值用来决定这一行的 CheckBox 是否可以勾选 Function(row, index)
reserve-selection 仅对 type=selection 的列有效,类型为 Boolean,为 true 则会在数据更新之后保留之前选中的数据(需指定 row-key Boolean false
filters 数据过滤的选项,数组格式,数组中的元素需要有 text 和 value 属性。 Array[{ text, value }]
filter-placement 过滤弹出框的定位 String 与 Tooltip 的 placement 属性相同
filter-multiple 数据过滤的选项是否多选 Boolean true
filter-method 数据过滤使用的方法,如果是多选的筛选项,对每一条数据会执行多次,任意一次返回 true 就会显示。 Function(value, row, column)
filtered-value 选中的数据过滤项,如果需要自定义表头过滤的渲染方式,可能会需要此属性。 Array

# Table-column Scoped Slot

name 说明
自定义列的内容,参数为 { row, column, $index }
header 自定义表头的内容. 参数为 { column, $index }