1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
| <template>
| <div :class="boxClass">
| <a-pagination
| :disabled="disabled"
| v-bind="bindProps"
| @change="handleChange"
| @showSizeChange="handleShowSizeChange"
| />
| </div>
| </template>
|
| <script>
| import PropTypes from 'ant-design-vue/es/_util/vue-types'
|
| export default {
| name: 'JVxePagination',
| props: {
| size: String,
| disabled: PropTypes.bool,
| pagination: PropTypes.object.def({}),
| },
| data() {
| return {
| defaultPagination: {
| current: 1,
| pageSize: 10,
| pageSizeOptions: ['10', '20', '30'],
| showTotal: (total, range) => {
| return range[0] + '-' + range[1] + ' 共 ' + total + ' 条'
| },
| showQuickJumper: true,
| showSizeChanger: true,
| total: 100
| }
| }
| },
| computed: {
| bindProps() {
| return {
| ...this.defaultPagination,
| ...this.pagination,
| size: this.size === 'tiny' ? 'small' : ''
| }
| },
| boxClass() {
| return {
| 'j-vxe-pagination': true,
| 'show-quick-jumper': !!this.bindProps.showQuickJumper
| }
| },
| },
| methods: {
| handleChange(current, pageSize) {
| this.$set(this.pagination, 'current', current)
| this.$emit('change', {current, pageSize})
| },
| handleShowSizeChange(current, pageSize) {
| this.$set(this.pagination, 'pageSize', pageSize)
| this.$emit('change', {current, pageSize})
| },
| },
| }
| </script>
|
| <style lang="less" scoped>
|
| </style>
|
|