记录使用elementUI->el-table添加分页后翻页序号累计问题

项目需求:添加分页后序号累计

效果图:

 

 研究了很长时间发现了官方API自带index

直接帖代码VUE:

<el-table-column
          type="index"
          :label="$t('common.no')"
          width="55"
          :index="tableIndex">
</el-table-column>

JS:

tableIndex(index) {
      return (this.currentPage - 1) * this.pageSize + index + 1
    }

然后就搞定

posted @ 2021-09-08 09:30  逝去的初夏c  阅读(550)  评论(0)    收藏  举报