<!-- 分页 -->
<div class="paginationClass">
<el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="getListParams.current" :page-sizes=[10,20,30,50] :page-size="getListParams.size" layout="total, sizes, prev, pager, next, jumper" :total="pageData.total">
</el-pagination>
</div>
.paginationClass {
position: fixed;
bottom: 0;
height: 40px;
width: 100%;
text-align: center;
}
05-07
1680