vue table表格序号(第二页从11开始)
2021-05-06 本文已影响0人
偶头像超凶
序号和分页组件有关
<el-table-column label="序号" width="50px" align="center">
<template slot-scope="scope">
{{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}
</template>
</el-table-column>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>