vue element实现表格合并行数据
程序员文章站
2022-03-11 10:27:24
本文实例为大家分享了vue element实现表格合并行数据的具体代码,供大家参考,具体内容如下支持不分页的表格数据,分页的表格数据还有小bug
本文实例为大家分享了vue element实现表格合并行数据的具体代码,供大家参考,具体内容如下
支持不分页的表格数据,分页的表格数据还有小bug
<template> <el-container> <el-main> <el-table :data="tabledata" border style="width: 100%" :span-method="objectspanmethod" //添加这个实现行数据合并 > <el-table-column label="序号" prop="id" align="center"></el-table-column> <el-table-column label="名字" prop="screenname" align="center"></el-table-column> <el-table-column label="时间1" prop="starttime" align="center"></el-table-column> <el-table-column label="时间2" prop="endtime" align="center"></el-table-column> </el-table> </el-main> </el-container> </template> <script> export default { name: "formtableyes", data() { return { //合并行 spanarr: [], //声明一个数组 tabledata: [ { id: 1, screenname: "lhc", starttime: "12", endtime: "1231" }, { id: 1, screenname: "lhc", starttime: "12", endtime: "123" } ] }; }, mounted: function() { this.tabledatas(); //加载数据就调用该方法 }, methods: { objectspanmethod({ row, column, rowindex, columnindex }) { if (columnindex === 0) { //合并第一列 const _row = this.spanarr[rowindex]; const _col = _row > 0 ? 1 : 0; return { rowspan: _row, colspan: _col }; } if (columnindex === 1) { //合并第二列 const _row = this.spanarr[rowindex]; const _col = _row > 0 ? 1 : 0; return { rowspan: _row, colspan: _col }; } // if (columnindex === 2) { //合并第三列 // const _row = this.spanarr[rowindex]; // const _col = _row > 0 ? 1 : 0; // return { // rowspan: _row, // colspan: _col // }; // } }, tabledatas() { let contactdot = 0; this.tabledata.foreach((item, index) => { item.index = index; if (index === 0) { this.spanarr.push(1); } else { if (item.id === this.tabledata[index - 1].id) { this.spanarr[contactdot] += 1; this.spanarr.push(0); } else { this.spanarr.push(1); contactdot = index; } } }); }, } }; </script> <style scoped> .ptselect { width: 100%; } </style>
效果如下:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 云南省首个公共资源交易区块链服务平台“昆易链”运行
下一篇: Python常用断言函数实例汇总