ant-design / pro-table

🏆 Use Ant Design Table like a Pro!
https://protable.ant.design/
MIT License
562 stars 151 forks source link

🐛[BUG]expandable嵌套表格会出现显示bug #208

Open zlyyyy opened 4 years ago

zlyyyy commented 4 years ago

image

//"@ant-design/pro-table": "^2.1.4",
const expandedRowRender = (record) => {
    const _columns = [
      {
        title: 'test',
        dataIndex: 'dictCode',
      },
      ...
    ];
    return <Table rowKey="id" columns={_columns} dataSource={record.children} pagination={false} />;
  };

<ProTable expandable={{ expandedRowRender }} ... />

如图所示,自定义expandable就会出现这种状态

zlyyyy commented 4 years ago

rowSelection={{}}不加就没事,加了就会出现这种

WuJiY commented 4 years ago

不加前面就没有选择框 ☑️ 家里如果有自分类的话 会多出一行

截屏2020-04-22 上午11 18 35
zlyyyy commented 4 years ago

@WuJiY 你这个应该是css问题吧

WuJiY commented 4 years ago

我构造的数据是有子级菜单 就是有children 字段 这样子 是不是应该出现点击➕的icon 然后出现错位了

WuJiY commented 4 years ago
截屏2020-04-22 下午2 02 48
zlyyyy commented 4 years ago

好像是,你也是自定义嵌套组件嘛

mordy-huang commented 3 years ago

诶 我也碰到这个问题