bee-table7/demo/demolist/Demo3.js

121 lines
2.3 KiB
JavaScript
Raw Normal View History

2018-05-11 11:30:56 +08:00
/**
*
* @title 表头分组并自定义表头高度
2018-05-11 11:30:56 +08:00
* @description columns[n] 可以内嵌 children以渲染分组表头
* 自定义表头高度需要传headerHeight修改th的padding top和bottom置为0否则会有影响
2018-05-11 11:30:56 +08:00
*
*/
import Button from "bee-button";
import React, { Component } from "react";
import Table from "../../src";
const { ColumnGroup, Column } = Table;
const columns = [
{
title: "Name",
dataIndex: "name",
key: "name",
width: 100,
fixed: "left"
},
{
title: "Other",
2018-10-08 11:27:43 +08:00
width:600,
2018-05-11 11:30:56 +08:00
children: [
{
title: "Age",
dataIndex: "age",
key: "age",
width: 200
},
{
title: "Address",
children: [
{
title: "Street",
dataIndex: "street",
key: "street",
width: 200
},
{
title: "Block",
children: [
{
title: "Building",
dataIndex: "building",
key: "building",
width: 100
},
{
title: "Door No.",
dataIndex: "number",
key: "number",
width: 100
}
]
}
]
}
]
},
{
title: "Company",
2018-10-08 11:27:43 +08:00
width:400,
2018-05-11 11:30:56 +08:00
children: [
{
title: "Company Address",
dataIndex: "companyAddress",
2018-10-08 11:27:43 +08:00
key: "companyAddress",
width:200,
2018-05-11 11:30:56 +08:00
},
{
title: "Company Name",
dataIndex: "companyName",
2018-10-08 11:27:43 +08:00
key: "companyName",
width:200,
2018-05-11 11:30:56 +08:00
}
]
},
{
title: "Gender",
dataIndex: "gender",
key: "gender",
width: 60,
fixed: "right"
}
];
const data = [];
for (let i = 0; i < 20; i++) {
data.push({
key: i,
name: "John Brown",
age: i + 1,
street: "Lake Park",
building: "C",
number: 2035,
companyAddress: "Lake Street 42",
companyName: "SoftLake Co",
gender: "M"
});
}
class Demo3 extends Component {
render() {
return (
<Table
className={'demo3'}
2018-05-11 11:30:56 +08:00
columns={columns}
data={data}
headerHeight={40} //自定义表头高度
2018-05-11 11:30:56 +08:00
bordered
2018-10-08 11:27:43 +08:00
scroll={{ y: 240 }}
2018-05-11 11:30:56 +08:00
/>
);
}
}
export default Demo3;