Commit 37a460e5 authored by 以墨为白's avatar 以墨为白 🎧
parents 1f531d1f c8ea7868
This diff is collapsed.
......@@ -35,7 +35,7 @@
<div class="pagination-div">
<el-pagination class="myPagination" background layout="total, sizes, prev, pager, next, jumper"
:current-page="pageObj.currentPage" :total="pageObj.total" @current-change="handleCurrentChange"
@size-change="handleSizeChange" :page-size="pageObj.everySize" :page-sizes="[10, 20, 50, 100]">
@size-change="handleSizeChange" :page-size="pageObj.pageSize" :page-sizes="[10, 20, 50, 100]">
</el-pagination>
</div>
</div>
......@@ -62,7 +62,7 @@ export default {
meetingList: [],
pageObj: {
currentPage: 1,
everySize: 10,
pageSize: 10,
total: 0
}
}
......@@ -107,7 +107,7 @@ export default {
},
handleSizeChange(pageSize) {
this.pageObj.everySize = pageSize;
this.pageObj.pageSize = pageSize;
this.searchChatList();
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment