Ant design 去除展开按钮与按钮触发行展开

可以通过属性控制

expandIconAsCell={false}   // 去除表格标题栏+号

expandIconColumnIndex={-1} // 去除表格body里的+号

 

或者通过属性 expandedRowKeys 来控制

// 只允许当行展开逻辑
      if (this.curExpandedRowKeys.length > 0) {
        let index = this.curExpandedRowKeys.indexOf(rowkey);
        if (index > -1) {
          this.curExpandedRowKeys.splice(index, 1);
        } else {
          this.curExpandedRowKeys.splice(0, this.curExpandedRowKeys.length);
          this.curExpandedRowKeys.push(rowkey);
        }
      } else {
        this.curExpandedRowKeys.push(rowkey);
      }
    }

参考链接1 或者 参考链接2

posted @ 2020-04-24 10:07  leo!  阅读(1381)  评论(0编辑  收藏  举报