若依vue页码这里,本来在第一页,想选第五页却跳到了第二页,没办法直接到第五页只能一页一页翻,
有人遇到过这样的问题吗?怎么解决的?
举个例子,下面我目前能找到的有total的地方,还有什么地方需要修改吗
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
total: 0,
listOcl(this.queryParams).then(response => {
this.oclList = response.rows;
this.total = response.total;
this.loading = false;
});