elementUI 分页器遇到的 bug

问题描述:页面共有11条数据,每页10条,当删除第二页的1条数据,页面显示空白。组件上的currentPage显示1,但是请求的还是第二页,


// totalNum 数据总数

// currentPage 当前页

// pageSize 每页显示的数据条数



watch: { totalNum(){

        if(this.totalNum==(this.currentPage-1)*this.pageSize&&this.totalNum!=0){ //关键代码,倍数关系

            this.currentPage -=1

            this.geiList()   //获取表格数据的方法

        }

      }

    }

你可能感兴趣的:(elementUI 分页器遇到的 bug)