el-table 行合并 span-method 方法封装

getspan({ row, column, rowIndex, columnIndex }, dataSource) {
                var getSpanCount = function (dataItems, index, condition, isStart) {
                    if (index < dataItems.length
                        && (index == 0 || isStart || condition(dataItems[index - 1], dataItems[index])))
                        return 1 + getSpanCount(dataItems, index + 1, condition, false);
                    return 0;
                };
                
                var getRowSpanCount = function (rowIndex, dataItems, condition) {
                    if (rowIndex == 0 || !condition(dataItems[rowIndex - 1], dataItems[rowIndex])) {
                        return getSpanCount(dataItems, rowIndex, condition, true);
                    }
                    return 0;
                };

                if (columnIndex == 0) {  //合并第一列
                    return { rowspan: getRowSpanCount(rowIndex, dataSource, (x, y) => x.checkTypeId == y.checkTypeId), colspan: 1 }; 
                }

                return { rowspan: 1, colspan: 1 }
            }

this.result 为 el-table 绑定的数据集, 表格多行合并的条件是 x.checkTypeId == y.checkTypeId

只替换上图中三处红色地方的代码,即可实现行合并。

html:

<el-table :data="dataSource" 
          :span-method="(param)=>getspan(param,dataSource)"

因我这里的el-table个数是动态的,数据源也是动态的,所以必须加一个参数,把 table 绑定的 data 传进来,方法来自网友,这下这个方法就完美了

posted on 2022-03-31 17:22  空明流光  阅读(875)  评论(0编辑  收藏  举报

导航