123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <template>
- <div :class="{ hidden: hidden }" class="pagination-container">
- <!-- :background="background" -->
- <el-pagination
- :current-page.sync="currentPage"
- size="mini"
- :page-size.sync="pageSize"
- :layout="layout"
- :page-sizes="pageSizes"
- :total="total"
- v-bind="$attrs"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- />
- </div>
- </template>
- <script>
- import { scrollTo } from "@/utils/scroll-to";
- import { Searchs } from "@/helpers";
- export default {
- name: "Pagination",
- props: {
- total: {
- required: true,
- type: Number,
- },
- page: {
- type: Number,
- default: 1,
- },
- limit: {
- type: Number,
- default: 10,
- },
- pageSizes: {
- type: Array,
- default() {
- return [10, 20, 30, 50];
- },
- },
- layout: {
- type: String,
- default: "total,sizes,prev, pager, next, jumper",
- },
- background: {
- type: Boolean,
- default: true,
- },
- autoScroll: {
- type: Boolean,
- default: true,
- },
- hidden: {
- type: Boolean,
- default: false,
- },
- sync: {
- type: Boolean,
- default: false,
- },
- saveKey: {
- type: String,
- default: "",
- },
- },
- data() {
- return {
- pageInformation: null,
- };
- },
- computed: {
- currentPage: {
- get() {
- return this.page;
- },
- set(val) {
- this.$emit("update:page", val);
- },
- },
- pageSize: {
- get() {
- return this.limit;
- },
- set(val) {
- this.$emit("update:limit", val);
- },
- },
- },
- watch: {
- currentPage() {
- this.syncStore();
- },
- pageSize() {
- this.syncStore();
- },
- },
- mounted() {
- if (this.sync) {
- const searchs = new Searchs(this.saveKey || this.$route.path);
- const active = searchs.get();
- this.pageInformation = active;
- if (active && active.page) {
- for (const key in active.page) {
- if (active.page.hasOwnProperty(key)) {
- const item = active.page[key];
- this.$emit("update:" + key, item);
- }
- }
- }
- if (this.saveKey) {
- searchs.update(this.$route.path, undefined, "bind");
- }
- }
- window.addEventListener("watchStorage", this.watchStorage);
- },
- methods: {
- watchStorage() {
- let page =
- this.pageInformation && this.pageInformation.page
- ? this.pageInformation.page
- : null;
- this.currentPage = page && page.page ? page.page : 1;
- },
- syncStore() {
- if (this.sync) {
- const searchs = new Searchs(this.saveKey || this.$route.path);
- searchs.update(this._props, undefined, "page");
- }
- },
- handleSizeChange(val) {
- this.currentPage = 1;
- this.$emit("pagination", { page: this.currentPage, limit: val });
- if (this.autoScroll) {
- scrollTo(0, 800);
- }
- this.syncStore();
- },
- handleCurrentChange(val) {
- this.$emit("pagination", { page: val, limit: this.pageSize });
- if (this.autoScroll) {
- scrollTo(0, 800);
- }
- this.syncStore();
- },
- },
- destroyed() {
- window.removeEventListener("watchStorage", this.watchStorage);
- },
- };
- </script>
- <style scoped lang="scss">
- .pagination-container {
- background: #fff;
- padding: 32px 16px;
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: center;
- }
- .pagination-container.hidden {
- display: none;
- }
- ::v-deep .el-select {
- width: 100px !important;
- margin: 0 5px;
- }
- </style>
|