1.默认当前页为第一页,页容量为10条

data(){
    return{
      current:1,
      size:10
    }
}

 2.再点击删除的时候进行如下配置

      // 为了在删除最后一页的最后一条数据时能成功跳转回最后一页的上一页(pageSize=1时不生效)
          let totalPage = Math.ceil((this.total - 1) / this.size)
          let currentPage =this.current > totalPage ? totalPage : this.current
          this.current = currentPage < 1 ? 1 : currentPage

Logo

前往低代码交流专区

更多推荐