
Conflicts: pom.xml ruoyi-common/src/main/java/com/ruoyi/common/constant/Constants.java ruoyi-common/src/main/java/com/ruoyi/common/core/page/PageDomain.java ruoyi-common/src/main/java/com/ruoyi/common/utils/file/FileUtils.java ruoyi-generator/src/main/java/com/ruoyi/generator/service/GenTableServiceImpl.java ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysDeptServiceImpl.java ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml ruoyi-ui/.env.development ruoyi-ui/.env.production ruoyi-ui/.env.staging ruoyi-ui/package.json ruoyi-ui/src/App.vue ruoyi-ui/src/assets/styles/ruoyi.scss ruoyi-ui/src/components/Pagination/index.vue ruoyi-ui/src/layout/components/Settings/index.vue ruoyi-ui/src/layout/components/Sidebar/Logo.vue ruoyi-ui/src/main.js ruoyi-ui/src/permission.js ruoyi-ui/src/settings.js ruoyi-ui/src/store/modules/settings.js ruoyi-ui/src/views/monitor/logininfor/index.vue ruoyi-ui/src/views/monitor/operlog/index.vue ruoyi-ui/src/views/system/user/index.vue ruoyi-ui/vue.config.js
108 lines
2.0 KiB
Vue
108 lines
2.0 KiB
Vue
<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
|
|
}
|
|
},
|
|
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) {
|
|
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>
|