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:一页显示的条数
2023-12-17 08:42:45
第一种
<template slot-scope="scope">
{{ scope.$index + 1}}
</template>
此方法在切换页码时,还是1,2,…10
第二种:结合页码+条数
<template slot-scope="scope">
{{ (page - 1)*pageSize+scope.$index+1 }}
</template>
//page:页码
//pageSize:一页显示的条数
下一篇:分页工具类