| | |
| | | position: absolute;
|
| | | }
|
| | |
|
| | | @media ( max-width : 768px) {
|
| | | .pagination-container .el-pagination > .el-pagination__jump {
|
| | | display: none !important;
|
| | | }
|
| | | .pagination-container .el-pagination > .el-pagination__sizes {
|
| | | display: none !important;
|
| | | }
|
| | | }
|
| | |
|
| | | .el-table .fixed-width .el-button--mini {
|
| | | padding-left: 0;
|
| | | padding-right: 0;
|
| | |
| | | :page-size.sync="pageSize"
|
| | | :layout="layout"
|
| | | :page-sizes="pageSizes"
|
| | | :pager-count="pagerCount"
|
| | | :total="total"
|
| | | v-bind="$attrs"
|
| | | @size-change="handleSizeChange"
|
| | |
| | | return [10, 20, 30, 50]
|
| | | }
|
| | | },
|
| | | // 移动端页码按钮的数量端默认值5
|
| | | pagerCount: {
|
| | | type: Number,
|
| | | default: document.body.clientWidth < 992 ? 5 : 7
|
| | | },
|
| | | layout: {
|
| | | type: String,
|
| | | default: 'total, sizes, prev, pager, next, jumper'
|