element之分页

Posted liujiajiablog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了element之分页相关的知识,希望对你有一定的参考价值。

一,html

<el-pagination
                @current-change="handleCurrentChange"
                @size-change="handleSizeChange"
                :page-size="pageSize"
                background
                layout="prev, pager, next"
                :total="this.allpage"
                :current-page.sync="currentPage"
                >
</el-pagination>

二,script    

<script>
    export default{

      name:app,
      data(){
         pageSize:4,  //每页显示多少条
         allpage:‘‘,
         currentPage:1 //页数

      },
      methods:{
          handleCurrentChange(val){
               this.currentPage = val
           this.list(); //显示列表的接口
       },
       /**当前条数***/
     handleSizeChange(size){
             this.pageSize = size;
             this.list();
     },
         /**显示列表接口**/
    list(){
        let obj = this.qs.stringify({
               page:this.currentPage,
               count:this.pageSize
        })
        this.$axios.post(l接口名称, obj, res => {
            console.log(res);
        }, f => {
        console.log(f)
        }, e => {
        console.log(e)
        }) 
      }

    }
  }
</script>

 图示:

    技术图片

 

                          

                                                                                                                                                                                                              --------END

 

以上是关于element之分页的主要内容,如果未能解决你的问题,请参考以下文章

php之分页类代码

13.django之分页

TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段

MongoDB动态条件之分页查询

视频学习笔录---ThinkPHP---TP功能类之分页

django之分页cookie装饰器