| | |
| | | <template> |
| | | <div :class="{'hidden':hidden}" class="pagination-container"> |
| | | <div :class="{ hidden: hidden }" class="pagination-container"> |
| | | <el-pagination |
| | | :background="background" |
| | | :current-page.sync="currentPage" |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import { scrollTo } from '@/utils/scroll-to' |
| | | import { scrollTo } from "@/utils/scroll-to"; |
| | | |
| | | export default { |
| | | name: 'Pagination', |
| | | name: "Pagination", |
| | | props: { |
| | | total: { |
| | | required: true, |
| | |
| | | pageSizes: { |
| | | type: Array, |
| | | default() { |
| | | return [10, 20, 30, 50] |
| | | return [10, 20, 30, 50]; |
| | | } |
| | | }, |
| | | layout: { |
| | | type: String, |
| | | default: 'total, sizes, prev, pager, next, jumper' |
| | | default: "total, sizes, prev, pager, next, jumper" |
| | | }, |
| | | background: { |
| | | type: Boolean, |
| | |
| | | computed: { |
| | | currentPage: { |
| | | get() { |
| | | return this.page |
| | | return this.page; |
| | | }, |
| | | set(val) { |
| | | this.$emit('update:page', val) |
| | | this.$emit("update:page", val); |
| | | } |
| | | }, |
| | | pageSize: { |
| | | get() { |
| | | return this.limit |
| | | return this.limit; |
| | | }, |
| | | set(val) { |
| | | this.$emit('update:limit', val) |
| | | this.$emit("update:limit", val); |
| | | } |
| | | } |
| | | }, |
| | | methods: { |
| | | handleSizeChange(val) { |
| | | this.$emit('pagination', { page: this.currentPage, limit: val }) |
| | | this.$emit("pagination", { page: this.currentPage, limit: val }); |
| | | if (this.autoScroll) { |
| | | scrollTo(0, 800) |
| | | scrollTo(0, 800); |
| | | } |
| | | }, |
| | | handleCurrentChange(val) { |
| | | this.$emit('pagination', { page: val, limit: this.pageSize }) |
| | | this.$emit("pagination", { page: val, limit: this.pageSize }); |
| | | if (this.autoScroll) { |
| | | scrollTo(0, 800) |
| | | scrollTo(0, 800); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | }; |
| | | </script> |
| | | |
| | | <style scoped> |
| | | .pagination-container { |
| | | background: #fff; |
| | | padding: 32px 16px; |
| | | background: transparent; |
| | | padding: 12px 20px; |
| | | position: relative; |
| | | } |
| | | .pagination-container.hidden { |
| | | display: none; |
| | | } |
| | | .el-pagination__total { |
| | | color: #fff !important; |
| | | } |
| | | .el-pagination__jump { |
| | | color: #fff; |
| | | } |
| | | </style> |