美文网首页
el-table 序号逐次、逐页累加,解决每页都不从1开始编号

el-table 序号逐次、逐页累加,解决每页都不从1开始编号

作者: 柏龙 | 来源:发表于2019-04-23 10:27 被阅读0次

    解决办法

    <el-table-column
        fixed="left" 
        label="序号"
        type="index"
        width="50"
        align="center">
        <template scope="scope">
            {{ scope.$index + (pageNumber - 1) * pageSize + 1 }}
        </template>
    </el-table-column>
    
    • scope.$index 当前序号
    • pageNumber 当前页码 (1)
    • pageSize 一页显示多少条 (10)

    相关文章

      网友评论

          本文标题:el-table 序号逐次、逐页累加,解决每页都不从1开始编号

          本文链接:https://www.haomeiwen.com/subject/wfbmgqtx.html