当前位置: 首页> 游戏> 攻略 > 建设工程包括什么工程_跨境电商亚马逊开店需要多少钱_福州seo网址优化公司_沈阳网络关键词排名

建设工程包括什么工程_跨境电商亚马逊开店需要多少钱_福州seo网址优化公司_沈阳网络关键词排名

时间:2025/7/27 2:31:10来源:https://blog.csdn.net/weixin_45393413/article/details/146529875 浏览次数:0次
建设工程包括什么工程_跨境电商亚马逊开店需要多少钱_福州seo网址优化公司_沈阳网络关键词排名

el-table + el-pagination 前端实现分页操作

后端返回全部列表数据,前端进行分页操作

html代码
<div><el-table :data="tableData" border><el-table-column label="序号" type="index" width="50" /><el-table-column prop="name" label="礼品名称"><template slot-scope="scope">{{ scope.row.orderInfo.itemName }}</template></el-table-column><el-table-column prop="orderNum" label="订单编号" width="120"><template slot-scope="scope">{{ scope.row.orderInfo.orderNum }}</template></el-table-column><el-table-column prop="name" label="物流编号" width="130"><template slot-scope="scope">{{ scope.row.orderInfo.expressCode }}</template></el-table-column><el-table-column prop="name" label="礼品单价" width="80"><template slot-scope="scope">{{ scope.row.orderInfo.unitPrice }}</template></el-table-column><el-table-column prop="name" label="礼品数量" width="80"><template slot-scope="scope">{{ scope.row.orderInfo.quantity }}</template></el-table-column><el-table-column prop="name" label="订单金额" width="80"><template slot-scope="scope">{{ scope.row.orderInfo.price }}</template></el-table-column><el-table-column prop="name" label="订单日期" width="130"><template slot-scope="scope">{{ scope.row.orderInfo.orderDate }}</template></el-table-column><el-table-column prop="isError" label="是否成功" width="80"><template slot-scope="scope">{{ scope.row.isError ? '否' : '是' }}</template></el-table-column><el-table-column prop="errorInfo" label="错误信息"><template slot-scope="scope">{{ scope.row.errorInfo }}</template></el-table-column></el-table><el-pagination:total="total":current-page="page":page-size="size":page-sizes="pageSizes"layout="total, sizes, prev, pager, next, jumper"@size-change="sizeChange"@current-change="currentChange"/>
</div>
js代码

两种方式:
① slice
② splice

<script>
export default {name: 'ImportLog',data() {return {page: 1, // 第几页size: 20, // 一页多少条total: 0, // 总条目数pageSizes: [20, 40, 60, 80, 100, 120, 140, 160, 180, 200], // 可选择的一页多少条tableData: [], // 表格绑定的数据allData: [], // 全部数据}},created() {this.getTabelData2()},methods: {// 获取表格数据,自行分页(slice)getTabelData() {// allData为全部数据this.tableData = this.allData.slice((this.page - 1) * this.size,this.page * this.size)this.total = this.allData.length},// 获取表格数据,自行分页(splice)getTabelData2() {const data = JSON.parse(JSON.stringify(this.allData))this.tableData = data.splice((this.page - 1) * this.size,this.size)this.total = this.allData.length},// page改变时的回调函数,参数为当前页码currentChange(val) {this.page = valthis.getTabelData2()},// size改变时回调的函数,参数为当前的sizesizeChange(val) {this.size = valthis.page = 1this.getTabelData2()}}
}
</script>
关键字:建设工程包括什么工程_跨境电商亚马逊开店需要多少钱_福州seo网址优化公司_沈阳网络关键词排名

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: