项目需求:添加分页后序号累计
效果图:
研究了很长时间发现了官方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 }
然后就搞定