Pagination.vue
2.53 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<template>
<div class="pagination-container">
<template v-if="pages > 0">
<div>
<ul class="pagination light-theme simple-pagination">
<li class="prev" v-bind:class="{'disabled':currentPage<2}" @click="prev">
<span class="current prev">Prev</span>
</li>
<li v-if="showFirst" @click="nav('1')">
<a href="javascript:void(0)">1</a>
</li>
<li v-if="showFirst&&(+pages!=6)" class="disabled"><span class="ellipse">…</span></li>
<li v-for="n in draw" v-bind:class="{'active':n===currentPage}" @click="nav(n)">
<a href="javascript:void(0)">{{n}}</a>
</li>
<li v-if="showLast&&(+pages!=6)" class="disabled"><span class="ellipse">…</span></li>
<li v-if="showLast" @click="nav(pages)">
<a href="javascript:void(0)">{{pages}}</a>
</li>
<li class="next" v-bind:class="{'disabled':currentPage>pages-1}" @click="next">
<span class="current next">Next</span>
</li>
</ul>
</div>
</template>
</div>
</template>
<script type="text/javascript">
export default {
props: {
pageSize: {
type: Number,
default: 10
},
pages: {
type: Number,
required: true
},
currentPage: {
type: Number,
required: true
}
},
data(){
return{
showLast:true,
showFirst:true
}
},
computed:{
draw(){
var bll=this,arr=[];
let beginNum = bll.currentPage - 2;
if (beginNum > bll.pages - 4) beginNum = bll.pages - 4;
if (beginNum < 1) beginNum = 1;
let endNum = beginNum + 4;
if (endNum > bll.pages) endNum = bll.pages;
let showFirst=true,showLast=true;
for (let i = beginNum; i <= endNum; i++)
{
if(i===1){
showFirst=false;
}
if(i===bll.pages){
showLast=false;
}
arr.push(i);
}
bll.showFirst=showFirst;
bll.showLast=showLast;
return arr;
}
},
methods:{
nav(n){
this.currentPage=+n;
this.$dispatch('page', this.currentPage);
},
prev(){
if(this.currentPage>0){
this.nav(this.currentPage-1)
}
},
next(){
if (this.currentPage<this.pages) {
this.nav(this.currentPage+1);
}
}
}
}
</script>
<style>
.prev,.next{
cursor: pointer
}
</style>