美文网首页
vue table表格序号(第二页从11开始)

vue table表格序号(第二页从11开始)

作者: 偶头像超凶 | 来源:发表于2021-05-06 16:17 被阅读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"
        />
    

    相关文章

      网友评论

          本文标题:vue table表格序号(第二页从11开始)

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