From 568e2a9337a77187d856962077ef28e3a907cfd3 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子li <15040126243@163.com> Date: 星期四, 24 二月 2022 15:30:20 +0800 Subject: [PATCH] Merge branch 'master' of https://gitee.com/y_project/RuoYi-Vue into dev --- ruoyi-ui/src/components/Pagination/index.vue | 233 ++++++++++++++++++++++++++++----------------------------- 1 files changed, 114 insertions(+), 119 deletions(-) diff --git a/ruoyi-ui/src/components/Pagination/index.vue b/ruoyi-ui/src/components/Pagination/index.vue index 4d86211..56f5a6b 100644 --- a/ruoyi-ui/src/components/Pagination/index.vue +++ b/ruoyi-ui/src/components/Pagination/index.vue @@ -1,119 +1,114 @@ -<template> - <div :class="{'hidden':hidden}" class="pagination-container"> - <el-pagination - v-if="pageShow" - :background="background" - :current-page.sync="currentPage" - :page-size.sync="pageSize" - :layout="layout" - :page-sizes="pageSizes" - :pager-count="pagerCount" - :total="total" - v-bind="$attrs" - @size-change="handleSizeChange" - @current-change="handleCurrentChange" - /> - </div> -</template> - -<script> -import { scrollTo } from '@/utils/scroll-to' - -export default { - name: 'Pagination', - props: { - total: { - required: true, - type: Number - }, - page: { - type: Number, - default: 1 - }, - limit: { - type: Number, - default: 20 - }, - pageSizes: { - type: Array, - default() { - 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' - }, - background: { - type: Boolean, - default: true - }, - autoScroll: { - type: Boolean, - default: true - }, - hidden: { - type: Boolean, - default: false - } - }, - data() { - return { - pageShow: true - }; - }, - 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) - } - } - }, - methods: { - handleSizeChange(val) { - if (this.currentPage * val > this.total) { - this.pageShow = false; - this.$nextTick(() => { - this.pageShow = true - }) - } - this.$emit('pagination', { page: this.currentPage, limit: val }) - if (this.autoScroll) { - scrollTo(0, 800) - } - }, - handleCurrentChange(val) { - this.$emit('pagination', { page: val, limit: this.pageSize }) - if (this.autoScroll) { - scrollTo(0, 800) - } - } - } -} -</script> - -<style scoped> -.pagination-container { - background: #fff; - padding: 32px 16px; -} -.pagination-container.hidden { - display: none; -} -</style> +<template> + <div :class="{'hidden':hidden}" class="pagination-container"> + <el-pagination + :background="background" + :current-page.sync="currentPage" + :page-size.sync="pageSize" + :layout="layout" + :page-sizes="pageSizes" + :pager-count="pagerCount" + :total="total" + v-bind="$attrs" + @size-change="handleSizeChange" + @current-change="handleCurrentChange" + /> + </div> +</template> + +<script> +import { scrollTo } from '@/utils/scroll-to' + +export default { + name: 'Pagination', + props: { + total: { + required: true, + type: Number + }, + page: { + type: Number, + default: 1 + }, + limit: { + type: Number, + default: 20 + }, + pageSizes: { + type: Array, + default() { + 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' + }, + background: { + type: Boolean, + default: true + }, + autoScroll: { + type: Boolean, + default: true + }, + hidden: { + type: Boolean, + default: false + } + }, + data() { + return { + }; + }, + 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) + } + } + }, + methods: { + handleSizeChange(val) { + if (this.currentPage * val > this.total) { + this.currentPage = 1 + } + this.$emit('pagination', { page: this.currentPage, limit: val }) + if (this.autoScroll) { + scrollTo(0, 800) + } + }, + handleCurrentChange(val) { + this.$emit('pagination', { page: val, limit: this.pageSize }) + if (this.autoScroll) { + scrollTo(0, 800) + } + } + } +} +</script> + +<style scoped> +.pagination-container { + background: #fff; + padding: 32px 16px; +} +.pagination-container.hidden { + display: none; +} +</style> -- Gitblit v1.9.3