VUE element-ui之table表格自增序号(前端实现)
需求:表格第一列为自增序号(不受分页影响)实现方法:<el-table-column label="序号" width="70" align="left"><template slot-scope="scope">{{ (scope.$index+1)+(currentPage-1)*pageSize }}</template></el-table-col
·
需求:表格第一列为自增序号(不受分页影响)
实现方法:
<el-table-column label="序号" width="70" align="left">
<template slot-scope="scope">
{{ (scope.$index+1)+(currentPage-1)*pageSize }}
</template>
</el-table-column>
注意:需结合每页条数及当前页码运算
更多推荐



所有评论(0)