在Vue和Element UI中,可以使用<el-table>
组件实现数据的分页显示。你需要使用<el-pagination>
组件来控制分页,并监听其current-change
事件以更新表格数据。
以下是一个简单的例子,展示如何结合Vue和Element UI实现树形结构和数据表格的分页功能:
<template>
<div>
<!-- 树形控件 -->
<el-tree
:data="treeData"
:props="defaultProps"
@node-click="handleNodeClick"
></el-tree>
<!-- 表格控件 -->
<el-table :data="tableData" style="width: 100%">
<el-table-column prop="date" label="日期" width="180"></el-table-column>
<el-table-column prop="name" label="姓名" width="180"></el-table-column>
<el-table-column prop="address" label="地址"></el-table-column>
</el-table>
<!-- 分页控件 -->
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="currentPage"
:page-sizes="[10, 20, 30, 40]"
:page-size="pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="total">
</el-pagination>
</div>
</template>
<script>
export default {
data() {
return {
treeData: [...], // 树形结构数据
defaultProps: {
children: 'children',
label: 'label'
},
tableData: [], // 表格数据
currentPage: 1, // 当前页
pageSize: 10, // 每页显示条数
total: 0, // 总条目数
};
},
methods: {
handleNodeClick(data) {
// 节点点击事件,更新表格数据
this.fetchTableData(data.id);
},
fetchTableData(id) {
// 模拟请求数据
const start = (this.currentPage - 1) * this.pageSize;
const end = start + this.pageSize;
this.tableData = yourDataFetchFunction(id, start, end);
this.total = yourTotalCountFunction(id);
},
handleSizeChange(val) {
this.pageSize = val;
this.fetchTableData(this.currentCategoryId);
},
handleCurrentChange(val) {
this.currentPage = val;
this.fetchTableData(this.currentCategoryId);
},
},
// 初始化时加载第一页数据
created() {
this.fetchTableData('root');
},
};
</script>
在这个例子中,当你点击树形控件的节点时,handleNodeClick
方法会被调用,并通过fetchTableData
方法请求相应分类的数据。<el-pagination>
组件的size-change
和current-change
事件会分别在页面大小改变或页码改变时触发,并通过调用fetchTableData
方法更新表格数据。
注意:\`yourDataFetchFunctio