vue實現表格分頁功能
本文實例為大傢分享瞭vue實現表格分頁功能的具體代碼,供大傢參考,具體內容如下
直接上代碼:
這裡是這裡是template部分,主要由一個需要分頁的表格和一個分頁器組成。重點在於表格的data屬性用到瞭一個slice截取方法。
<el-table v-loading="listLoading" :data=" list.slice((currentPage - 1) * pageSize, currentPage * pageSize) " element-loading-text="Loading" highlight-current-row border > <el-table-column align="center" label="序號" width="90"> <template slot-scope="scope"> {{ scope.$index + 1 }} </template> </el-table-column> <el-table-column label="頭像" align="center" width="150"> <template slot-scope="scope"> <el-avatar :src="scope.row.avatar"></el-avatar> </template> </el-table-column> <el-table-column align="center" label="UID" width="130"> <template slot-scope="scope"> {{ scope.row.UID }} </template> </el-table-column> <el-table-column align="center" label="用戶名" width="350"> <template slot-scope="scope"> {{ scope.row.username }} </template> </el-table-column> <el-table-column align="center" label="遊戲ID" width="350"> <template slot-scope="scope"> {{ scope.row.usernick }} </template> </el-table-column> <el-table-column label="授權類型" width="110" align="center"> <template slot-scope="scope"> <el-tag :type="scope.row.authorizationType | tagTypeFilter">{{ scope.row.authorizationType | authorizationTypeFilter }}</el-tag> </template> </el-table-column> <el-table-column align="center" label="成功邀請人數" width="150"> <template slot-scope="scope">{{ scope.row.successNum }} </template> </el-table-column> <!-- <el-table-column align="center" label="操作" width="150"> <template slot-scope="scope"> <el-button type="primary" size="mini" @click="change(scope.$index, scope.row)" > 修改 </el-button> </template> </el-table-column> --> </el-table> <!-- 分頁器 --> <div class="block" style="margin-top: 15px"> <el-pagination align="right" @current-change="handleCurrentChange" :current-page="currentPage" :page-size="pageSize" layout="prev, pager, next,total" background :total="filterList.length" hide-on-single-page > </el-pagination> </div>
這裡是javascript部分:
export default{ data(){ return{ currentPage:1//當前頁碼 pageSize:10//每頁顯示條數 list:[]//要顯示的表格數據 } } methods{ handleCurrentChange(val) { this.currentPage = val; }, } }
實現如圖效果
以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。
推薦閱讀:
- Vue組件庫ElementUI實現表格列表分頁效果
- 基於element-ui表格的二次封裝實現
- vue+elementUI實現內嵌table的方法示例
- 關於el-table表格組件中插槽scope.row的使用方式
- vue中的slot-scope及scope.row用法