【Web前端问题】iview 分页的问题
iview 分页 比如我搜索后有45页的数据, 然后我在次按其他条件搜索只有13页数据, 这里就会出现如图一一样的效果,试过了重新设置current 还是一样的。 有什么解决方案吗?
回答:
解决了
<template>
<Page ref="pages" :total="pageTotal" show-elevator show-total :page-size="row" @on-change="pageData"></Page>
</template>
//分页初始化为第一页
this.$nextTick(function(){
this.$refs['pages'].currentPage = 1;
})
回答:
传送门就绪 https://segmentfault.com/a/11...
以上是 【Web前端问题】iview 分页的问题 的全部内容, 来源链接: utcz.com/a/140022.html