Skip to content
On this page

BaseTable-表格

html
<!-- 封装了el-table + pagination -->
<BaseTable
  @pageChange="pageChange"
  :data="tableData"
  :hidePagenation="props.tableOptions.hidePagenation"
  :pageInfo="props.tableOptions.pageInfo"
>
  <el-table-column align="center" prop="dictName" label="字典名称" />
  <el-table-column align="center" prop="dictType" label="字典类型" />
</BaseTable>
1
2
3
4
5
6
7
8
9
10

属性

名称描述可选值
data列表值[列表值]
pageInfo分页信息对象{ total: 0, base:{limit: 8,current: 1} }
hidePagenation是否隐藏分页true/false

事件

名称描述可选值
pageChange页码发生改变Function(pageInfo)