rowSpanMethod(param,自定义参数)" /** *合并row */rowSpanMethod({row, column, rowIndex, columnIndex},item) { return { rowspan: this.mergeRows(row[column.property],item.tableData, rowIndex, _span-meth">
当前位置:   article > 正文

【elementUI中el-table中span-method 中传递自定义参数】_span-method传参

span-method传参

el-table中span-method 中传递自定义参数

elementUI中的其他组件需要传递自定义参数也可用该方法
 :span-method="(param)=>rowSpanMethod(param,item)" //item为自定义参数
 
 /**
 *合并row
 */
rowSpanMethod({row, column, rowIndex, columnIndex},item) {
	return {
            rowspan: this.mergeRows(row[column.property],item.tableData, rowIndex, column.property, row,'需求等待开发预警'),
            colspan: 1
          };
/**
* 表格单元格合并-----行
 * @param {Object} value      当前单元格的值
 * @param {Object} data       当前表格所有数据
 * @param {Object} index      当前单元格的值所在 行 索引
 * @param {Object} property  当前列的property
 * @returns {number}          待合并单元格数量
 */
mergeRows(value, data, index, property, row,title) {
      let keyName = '';
      if(title == '需求等待开发预警'){
        keyName = 'requireName';
      }else if(title == '需求任务关联表'){
        keyName = 'name';
      };
      if (index !== 0 && row[keyName] === data[index - 1][keyName]) {
        // 返回 0 使表格被跨 行 的那个单元格不会渲染
        return 0;
      };

      // 判断 当前行的该列数据 与 下一行的该列数据 是否相等
      let rowSpan = 1;
      for (let i = index + 1; i < data.length; i++) {
        if (row[keyName] != data[i][[keyName]]) {
          break;
        };
        rowSpan++;
      };
      return rowSpan;
    },
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/279842
推荐阅读
相关标签
  

闽ICP备14008679号