vue实现分页

1 新建 pager.js 文件

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
/**
  * [pagination 分页组件]
  * @param  {Number} total         [数据总条数]
  * @param  {Number} display     [每页显示条数 default:10]
  * @param  {Number} current     [当前页码 default:1]
  * @param  {Number} pagegroup     [分页条数(奇数) default:5]
  * @param  {Event} pagechange     [页码改动时 dispatch ]
  * @return {[type]}   [description]
  */
Vue.component( 'pagination' , {
     template:  '#template_pagination' ,
     props: {
         total: {             // 数据总条数
             type: Number,
             default : 0
         },
         display: {             // 每页显示条数
             type: Number,
             default : 10
         },
         current: {             // 当前页码
             type: Number,
             default : 1
         },
         pagegroup: {         // 分页条数 -- 奇数
             type: Number,
             default : 5,
             coerce:  function  (v) {
                 v = v > 0 ? v : 5;
                 return  v % 2 === 1 ? v : v + 1;
             }
         }
     },
     computed: {
         page:  function  () {  // 总页数
             return  Math.ceil( this .total /  this .display);
         },
         grouplist:  function  () {  // 获取分页页码
             var  len =  this .page, temp = [], list = [], count = Math.floor( this .pagegroup / 2), center =  this .current;
             if  (len <=  this .pagegroup) {
                 while  (len--) { temp.push({ text:  this .page - len, val:  this .page - len }); };
                 return  temp;
             }
             while  (len--) { temp.push( this .page - len); };
             var  idx = temp.indexOf(center);
             (idx < count) && (center = center + count - idx);
             ( this .current >  this .page - count) && (center =  this .page - count);
             temp = temp.splice(center - count - 1,  this .pagegroup);
             do  {
                 var  t = temp.shift();
                 list.push({
                     text: t,
                     val: t
                 });
             while  (temp.length);
             if  ( this .page >  this .pagegroup) {
                 ( this .current > count + 1) && list.unshift({ text:  '...' , val: list[0].val - 1 });
                 ( this .current <  this .page - count) && list.push({ text:  '...' , val: list[list.length - 1].val + 1 });
             }
             return  list;
         }
     },
     methods: {
         setCurrent:  function  (idx) {
             if  ( this .current != idx && idx > 0 && idx <  this .page + 1) {
                 this .current = idx;
                 this .$emit( 'pagechange' this .current);
             }
         }
     }
    
 
     
});

 2 前端:

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
@{
     ViewBag.Title = "About";
}
< script  src="~/Scripts/vue.min.js"></ script >
< script  src="~/Scripts/pager/Pager.js"></ script >
<!-- 模板 -->
< script  type="text/template" id="template_pagination">
     < nav >
         < ul  class="pagination">
             < li  :class="{'disabled': current == 1}">< a  href="javascript:;" v-on:click="setCurrent(1)"> 首页 </ a ></ li >
             < li  :class="{'disabled': current == 1}">< a  href="javascript:;" v-on:click="setCurrent(current - 1)"> 上一页 </ a ></ li >
             < li  v-for="p in grouplist" :class="{'active': current == p.val}">< a  href="javascript:;" v-on:click="setCurrent(p.val)"> {{ p.text }} </ a ></ li >
             < li  :class="{'disabled': current == page}">< a  href="javascript:;" v-on:click="setCurrent(current + 1)"> 下一页</ a ></ li >
             < li  :class="{'disabled': current == page}">< a  href="javascript:;" v-on:click="setCurrent(page)"> 尾页 </ a ></ li >
         </ ul >
         < ul  class="pagination pull-right">
             < li >< span > 共 {{ total }}  条数据 </ span ></ li >
             < li >< span > 每页显示 {{ display }}  条数据 </ span ></ li >
             < li >< span > 共 {{ page }} 页 </ span ></ li >
             < li >< span > 当前第 {{ current }} 页 </ span ></ li >
         </ ul >
     </ nav >
</ script >
 
 
 
< div >
     < div  id="app">
         < div  class="container">
             < h1 >  Vue 分页组件 </ h1 >
             < pagination  :total="total" :current.sync="current" v-on:pagechange="pagechange"></ pagination >
             < pre >{{ $data|json }}</ pre >
             < pre >{{ current }}</ pre >
         </ div >
     </ div >
 
 
     < div  id="app01">
         < div  class="container">
             < h1 >  Vue 分页组件 </ h1 >
             < pagination  :total="total" :current.sync="current" v-on:pagechange="pagechange"></ pagination >
             < pre >{{ $data|json }}</ pre >
             < pre >{{ current }}</ pre >
             < code >sasasasas</ code >
         </ div >
     </ div >
 
 
 
</ div >
< script >
     new Vue({
         el: '#app',
         data: {
             total: 81,     // 记录总条数
             display: 10,   // 每页显示条数
             current: 1     // 当前第n页 , 也可以 watch current 的变化
         },
         methods: {
             pagechange: function (p) {
                 this.current = p;// 页码改变event , p 为新的 current
                 console.log('pagechange', p);
             }
         }
     });
 
     new Vue({
         el: '#app01',
         data: {
             total: 81,     // 记录总条数
             display: 10,   // 每页显示条数
             current: 1     // 当前第n页 , 也可以 watch current 的变化
         },
         methods: {
             pagechange: function (p) {
                 this.current = p;// 页码改变event , p 为新的 current
                 console.log('pagechange', p);
             }
         }
     });
</ script >

  展示:

 

之后莫名其妙抱一个错误:Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value. Prop being mutated: "current"

这个报是因为在子组件改变了接收到的值。---------子组件接收后,赋值给一个新变量,然后再使用赋值后的变量(this.currentIndex) 就行了,或者直接去掉组件中的 this.current = idx

转载于:https://www.cnblogs.com/i6010/articles/11359585.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值