提交 aed5f88a 编写于 作者: yi.li's avatar yi.li

查看已选居民列表分页获取数据问题修复

上级 97333dd5
......@@ -89,9 +89,12 @@
},
methods: {
getPageList(list){
const pageNum = this.paginationSet.pageNum -1
const pageSize = this.paginationSet.pageSize
return list.slice(pageNum,pageSize)
const pageNum = this.paginationSet.pageNum -1;
const pageSize = this.paginationSet.pageSize;
const startIndex = pageNum * pageSize;
const endIndex = this.paginationSet.pageNum * pageSize;
// return list.slice(pageNum,pageSize)
return list.slice(startIndex, endIndex)
},
clickClose() {
this.$emit('closeSelectedDialog',false)
......@@ -100,7 +103,8 @@
this.$emit('continueAdd', false)
},
handleSizeChangePre(val) {
console.log(val)
this.paginationSet.pageSize = val
this.eachHasSelectedList = this.getPageList(this.hasSelectedList)
},
handleCurrentChangePre(val) {
this.paginationSet.pageNum = val
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册