其他分享
首页 > 其他分享> > portable实现嵌套表格

portable实现嵌套表格

作者:互联网

使用的是expandable={{expandedRowRender}}

const expandedRowRender = (expand,record) => {      

      console.log('这一行是=',expand)
      var data = []
      data.push({
        description:expand.description
      })
      
      // console.log('提取出来的data=',data)
      const columns=[
        { title: '描述', dataIndex: 'description'},
        
      ]
      return (
        <ProTable
          columns={columns}
          headerTitle={false}
          search={false}
          options={false}
          dataSource={data}
          pagination={false}
        />
      );
    };

标签:false,portable,表格,嵌套,expandedRowRender,data,expand,description
来源: https://blog.csdn.net/weixin_43911378/article/details/121129856