2019-04-23 20:11:38 +08:00
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @title 单元格内容居中
|
|
|
|
|
* @parent 基础 Basic
|
|
|
|
|
* @description 在columns数据中设置`textAlign:'center'`,可实现单元格内容居中展示的效果。默认是居左显示。
|
|
|
|
|
* demo0106
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import React, { Component } from "react";
|
|
|
|
|
import {Button,Tooltip} from "tinper-bee";
|
|
|
|
|
import Table from "../../src";
|
|
|
|
|
|
|
|
|
|
const columns = [
|
|
|
|
|
{
|
|
|
|
|
title: "员工编号", dataIndex: "a", key: "a", width: 120, className: "rowClassName",
|
|
|
|
|
fixed:'left',
|
|
|
|
|
textAlign:'center',
|
|
|
|
|
render: (text, record, index) => {
|
|
|
|
|
return (
|
|
|
|
|
<Tooltip inverse overlay={text}>
|
|
|
|
|
<span tootip={text} style={{
|
2019-04-25 14:12:43 +08:00
|
|
|
|
display: "block",
|
2019-04-23 20:11:38 +08:00
|
|
|
|
width: "80px",
|
|
|
|
|
textOverflow: "ellipsis",
|
|
|
|
|
overflow: "hidden",
|
|
|
|
|
whiteSpace: "nowrap",
|
2019-04-25 14:12:43 +08:00
|
|
|
|
verticalAlign: "bottom",
|
2019-04-23 20:11:38 +08:00
|
|
|
|
}}>{text}</span>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{ title: "员工姓名", dataIndex: "b", key: "b", width:100,textAlign:'center'},
|
|
|
|
|
{ title: "性别", dataIndex: "c", key: "c", width: 100,textAlign:'center'},
|
|
|
|
|
{ title: "部门", dataIndex: "d", key: "d", width: 100,textAlign:'center' },
|
|
|
|
|
{ title: "职级", dataIndex: "e", key: "e", width: 100,textAlign:'center' }
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const data = [
|
|
|
|
|
{ a: "ASVAL_201903280005", b: "小张", c: "男", d: "财务二科", e: "M1", key: "1" },
|
|
|
|
|
{ a: "ASVAL_201903200004", b: "小明", c: "男", d: "财务一科", e: "T1", key: "2" },
|
|
|
|
|
{ a: "ASVAL_201903120002", b: "小红", c: "女", d: "财务一科", e: "T2", key: "3" }
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
class Demo06 extends Component {
|
|
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
this.state = {
|
|
|
|
|
data: data
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
handleClick = () => {
|
|
|
|
|
console.log('这是第' , this.currentIndex , '行');
|
|
|
|
|
console.log('内容:' , this.currentRecord);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<Table
|
|
|
|
|
columns={columns}
|
|
|
|
|
data={data}
|
|
|
|
|
bordered
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Demo06;
|