美文网首页
el-table前面加序号

el-table前面加序号

作者: 秀萝卜 | 来源:发表于2020-12-10 11:08 被阅读0次
<template>
  <el-table
    :data="list"
    class="bg-fff"
    :row-class-name="rowIndex"
    >
    <el-table-column
      :formatter="order"
      label="序号"
      width="100">
    </el-table-column>
  </el-table>
</template>


methods: {
    rowIndex({row, rowIndex}) {
      row.rowIndex = rowIndex;
    },
    order(row) {
      return this.pageBeanInter.pageSize * (this.pageBeanInter.pageNum - 1) + row.rowIndex + 1;
    }
  }

相关文章

网友评论

      本文标题:el-table前面加序号

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