VueコンポーネントライブラリElementUIは、表のリストの改ページ効果を実現します。
3918 ワード
ElementUIは表リストの改ページ効果教程を実現します。参考にしてください。具体的な内容は以下の通りです。
Element UIはVue 2.0をベースフレームとして実現されたコンポーネントライブラリのセットです。開発者、デザイナー、製品マネージャーのために準備されたVue 2.0ベースのコンポーネントライブラリは、セットの設計リソースを提供しています。
<el-pagination>に@size-change=“handleSizeChange、@current-change=”handle Curent Change“現在のページと現在のページ数の変更イベントを処理します。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。
Element UIはVue 2.0をベースフレームとして実現されたコンポーネントライブラリのセットです。開発者、デザイナー、製品マネージャーのために準備されたVue 2.0ベースのコンポーネントライブラリは、セットの設計リソースを提供しています。
<el-pagination>に@size-change=“handleSizeChange、@current-change=”handle Curent Change“現在のページと現在のページ数の変更イベントを処理します。
<!-- -->
<div class="formTable" id="formTable">
<el-table
ref="Table"
:data="apprItemData"
:header-cell-style="headClass"
row-key="approveItem"
:tree-props="{children: 'children'}"
height="420"
border>
<el-table-column
type="selection"
width="55">
</el-table-column>
<el-table-column
label=" "
width="60"
align="center">
<template slot-scope="scope">{{scope.$index+1}}</template>
</el-table-column>
<el-table-column
prop="itemCode"
label=" ">
</el-table-column>
<el-table-column
prop="approveName"
label=" ">
</el-table-column>
</el-table>
</div>
<!-- -->
<div class="pagination">
<el-pagination
background
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:page-sizes="[5,10, 15, 20, 25]"
:page-size="pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="totalRow">
</el-pagination>
</div>
<script type="text/babel">
var vm = new Vue({
el: '#app',
data:{
apprItemData : [],
currentPage: 1, //
totalRow: 0, //
pageSize: 10 //
},
computed: {},
watch: {},
created() {},
mounted() {
this.loadItemData();
},
methods: {
//
loadItemData () {
var pageSize = this.pageSize;
var currentPage = this.currentPage;
console.log("pageSize:"+pageSize+",currentPage:"+currentPage);
//debugger;
var geturl = '${root}/config/loadItemData.do?rows='+pageSize + '&page=' + currentPage;
$.ajax({
type: 'get',
url:geturl,
contentType: "application/json; charset=utf-8",
success: function(data) {
//debugger;
console.log("totalRow:"+data.total);
vm.apprItemData = data.rows;
vm.totalRow = Number(data.total);
},
error: function(e) {
console.log(" :",e);
}
})
}
//
headClass() {
return 'text-align: center;background:#F7F7F7;color:#1C1C1D;'
},
//
handleSizeChange(val) {
this.pageSize = val;
this.loadItemData();
},
//
handleCurrentChange(val) {
this.currentPage = val;
this.loadItemData();
}
}
});
</script>
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。