element-ui 分页修改current-page后,视图上还是没改变

设置了分页 current-page

  <el-pagination background
                 layout="prev, pager, next"
                 :total="pagination.total"
                 :page-size="filterForm.maxResultCount"
                 :current-page="pagination.currentPage"
                 @current-change="getPageNumber">  </el-pagination>

然后点击搜索后需要改成第一页

    //  开始搜索
    searTenantHouseList() {      this.pagination.currentPage = 1
      this.GetTenantHouseList()
    }

但点击搜索后 this.pagination.currentPage还是没修改
并且点击页码跳转时 this.pagination.currentPage 还是没改变
求指教


月关宝盒
浏览 7486回答 3
3回答

三国纷争

:current-page.sync="currentPage3"这样会生效

纸扇折袖丶

要把searTenantHouseList放到watch里的吧

汪汪一只猫

一般有了total当你点击的时候就会有分页效果,自己仔细检查一下
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js