vue 项目表格(el-table)列表添加序号

vue 项目表格列表添加序号

第一种

<template slot-scope="scope">
	{{ scope.$index + 1}}
</template>

此方法在切换页码时,还是1,2,…10

第二种:结合页码+条数

<template slot-scope="scope">
	{{ (page - 1)*pageSize+scope.$index+1 }}
</template>
//page:页码
//pageSize:一页显示的条数
上一篇:数据分流写入Excel


下一篇:分页工具类