portable实现嵌套表格
作者:互联网
使用的是expandable={{expandedRowRender}}
- expand
- 将父表格的信息传递过来
- record
- 是当前行的index
- 字表格的数据
- 定义新的空列表
- 将数据push,以键值对的形式
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