vue table排序 (正序&倒序
程序员文章站
2022-03-21 21:34:50
...
vue table排序 (正序&倒序
正序
(page - 1) * pageSize + scope.$index + 1 // (当前页 - 1) * 当前显示数据条数 + 当前行数据的索引 + 1
<el-table-column label="序号" width="50px" align="center">
<template slot-scope="scope">
{{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}
</template>
</el-table-column>
倒序
{{total - ((currentPage-1)*pageSize) - scope.$index}} // 总条数 - (当前页 - 1) * 当前显示数据条数 - 当前行数据的索引
<el-table-column
label="序号"
type="index"
width="80px">
<template slot-scope="scope">
<span>{{total - ((queryParams.pageNum-1)*queryParams.pageSize) - scope.$index}}</span>
</template>
</el-table-column>
页码代码
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
表格无翻页排序
list.length - scope.$index
<el-table stripe
v-loading="loading"
:data="resultList">
<el-table-column width="35"
align="center" />
<el-table-column label="Step"
width="60"
type="index">
<template slot-scope="scope">
<span>{{resultList.length - scope.$index}}</span>
</template>
</el-table >
上一篇: typescript
下一篇: 前端实现背景虚化但内容清晰且自适应
推荐阅读
-
php foreach正序倒序输出示例代码
-
javascript select列表内容按字母倒序排序与按列表倒序排列
-
详解JavaScript对数组操作(添加/删除/截取/排序/倒序)
-
javascript select列表内容按字母倒序排序与按列表倒序排列
-
【转载】 C#中List集合使用OrderByDescending方法对集合进行倒序排序
-
TreeMap中文排序,TreeMap倒序输出排列
-
Java字符串倒序输出 + 数组的排序
-
Java字符串倒序输出 + 数组的排序
-
php foreach正序倒序输出示例代码
-
MapReduce 之流量汇总案例三+将统计结果将统计结果按照总流量正序排序(全排序)