vue配合el-pagination分页编辑后返回定位原来页以及删除最后一条数据页面刷新问题

1、关于el-pagination 在列表中的某一页编辑单项记录,完成编辑后返回原来页,我的处理方案是在跳转到编辑页面时将当前页码传递到编辑页面,保存完毕后再传回上一页;

     例如:

        handleEdit() {  //列表进入编辑页面的方法

     this.$parent.$router.push({

         name: 'editSchool',

         params: {

              page:this.page

         }

   });

        mounted: function() {

            if(this.$route.params.page) {

                this.page = this.$route.params.page;

            }

       //  this.getListData();    再次调用获取列表数据方法

     },

2、当有总页码超过1时,删除最后一页的最后一条数据时会遇到需要定位上一页的需求,我的处理方案是监听分页的pageObj对象,代码如下:

watch: {

      pageObj() {

          if(this.page>this.pageObj.pages) {

               this.page = this.pageObj.pages;

               this.getListData();   //再次获取列表数据

          }

      }

}

3、

@current-change="onPageChange" :current-page="page" v-if="pageObj.total != 0">

你可能感兴趣的:(Vue,ui-element,el-pagination)