本文介绍: 可以根据业务中实际需要合并的列数,增加判断,及 property字段取值满足自己业务并列效果
    merageCell({ row, column, rowIndex, columnIndex }) {
      if (columnIndex === 0 || columnIndex === 1) {
        const property = columnIndex === 0 ? 'name' : 'firstDeptName';
        // 获取当前行的property这里自己需要,改成根据哪个去判断
        const currentPropertyVal = row[property];
        // 获取当前property相同的有多少行
        const rowCount = this.deptList.filter(item => item[property] === currentPropertyVal).length;
        // 获取当前property表格数据中的第一条数据索引
        const currentRowIndex = this.deptList.findIndex(item => item[property] === currentPropertyVal);
        // 判断当前是否第一行
        const isFirstCell = rowIndex === currentRowIndex;
        // 判断当前行是否最后一行
        const isLastCell = rowIndex === (currentRowIndex + rowCount);
        // 如果是第一行,则显示一行
        if (isFirstCell) {
          return {
            rowspan: rowCount,
            colspan: 1,
          };
          // 否则隐藏一行
        } else if (!isFirstCell && !isLastCell) {
          return {
            rowspan: 0,
            colspan: 0,
          };
        }
      }
    },

可以根据业务中实际需要合并的列数,增加判断,及 property 的字段取值满足自己业务并列效果

原文地址:https://blog.csdn.net/weixin_47342624/article/details/134671438

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_33548.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注