若依vue页码这里,没办法直接到第五页只能一页一页翻

img

若依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;
      });

自己解决了!!原来是queryParams也要改

估计没人遇到过,你看看报啥错,如果没报错这样,那就是这个组件有问题

如果不是插件本身的问题,那就是配置出错了

事件没写对