vue+Element-ui實現分頁效果

小周sri的碼農發表於2018-07-31

當我們向後臺請求大量資料的時候,並要在頁面展示出來,請求的資料可能上百條資料或者更多的時候,並不想在一個頁面展示,這就需要使用分頁功能來去完成了。

1.本次所使用的是vue2.0+element-ui實現一個分頁功能,element-ui這個元件特別豐富,分頁中給我提供了一個Pagination 分頁,使用Pagination 快速完成分頁功能

 

最終效果展示

<div class="deit">
    <div class="crumbs">
      <el-breadcrumb separator="/">
            <el-breadcrumb-item><i class="el-icon-date"></i> 資料管理</el-breadcrumb-item>
            <el-breadcrumb-item>使用者列表</el-breadcrumb-item>
        </el-breadcrumb>
        <div class="cantainer">
                    <el-table style="width: 100%;"
                    :data="userList.slice((currentPage-1)*pagesize,currentPage*pagesize)"  //對資料請求的處理,最為重要的一句話
                    >
                        <el-table-column type="index" width="50">    
                        </el-table-column>
                        <el-table-column label="日期" prop="date" width="180">    
                        </el-table-column>
                        <el-table-column label="使用者姓名" prop="name" width="180">    
                        </el-table-column>
                        <el-table-column label="郵箱" prop="email" width="180">    
                        </el-table-column>
                        <el-table-column label="地址" prop="address" width="200">    
                        </el-table-column>    
                    </el-table>
                        <el-pagination
                            @size-change="handleSizeChange"
                            @current-change="handleCurrentChange"
                            :current-page="currentPage"
                            :page-sizes="[5, 10, 20, 40]" //這是下拉框可以選擇的,每選擇一行,要展示多少內容
                            :page-size="pagesize"         //顯示當前行的條數
                            layout="total, sizes, prev, pager, next, jumper"
                            :total="userList.length">    //這是顯示總共有多少資料,
                    </el-pagination>
        </div>
    </div>
  </div>

需要data定義一些,userList定義一個空陣列,請求的資料都是存放這裡面

data () {
      return {
                currentPage:1, //初始頁
                pagesize:10,    //    每頁的資料
                userList: []
      }
  },

對一些資料,方法處理,資料的來源是自己通過json-server搭建的本地資料,通過vue-resource請求資料,

created() {
        this.handleUserList()
    },
    methods: {
        // 初始頁currentPage、初始每頁資料數pagesize和資料data
        handleSizeChange: function (size) {
                this.pagesize = size;
                console.log(this.pagesize)  //每頁下拉顯示資料
        },
        handleCurrentChange: function(currentPage){
                this.currentPage = currentPage;
                console.log(this.currentPage)  //點選第幾頁
        },
        handleUserList() {
            this.$http.get('http://localhost:3000/userList').then(res => {  //這是從本地請求的資料介面,
                this.userList = res.body
            })
        }
    }

 

以上都是分頁所需的功能,也是自己在自己寫案例中所遇到的,並總結下方便檢視,喜歡的可以關注一下

可以關注一下https://github.com/MrZHLF/vue-admin-system,這個案例還在完善當中,功能還在增加

相關文章