赞
踩
已知 page = 1(当前页); limit = 10(每页展示条数); total = 47(列表总数);后端分页
需求:列表的数据需要从1开始排序到47;
上代码:
<el-table-column
min-width="60"
align="center"
label="序号"
:show-overflow-tooltip="true">
<template scope="scope">
<span>{{(page - 1) * limit + scope.$index + 1}}</span>
</template>
</el-table-column>
查看效果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。