bee-table/demo/demolist/Demo11.js

65 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-05-11 11:30:56 +08:00
/**
*
* @title 列排序
*
*/
import React, { Component } from 'react';
import Table from '../../src';
import Icon from "bee-icon";
2018-09-26 16:36:49 +08:00
import sort from "../../src/lib/sort.js";
let ComplexTable = sort(Table, Icon);
2018-05-11 11:30:56 +08:00
const columns11 = [
{
title: "名字",
dataIndex: "a",
key: "a",
width: 100
},
{
title: "性别",
dataIndex: "b",
key: "b",
width: 100
},
{
title: "年龄",
dataIndex: "c",
key: "c",
width: 200,
sorter: (a, b) => a.c - b.c
},
{
title: "武功级别",
dataIndex: "d",
key: "d"
}
];
const data11 = [
{ a: "杨过", b: "男", c: 30,d:'内行', key: "2" },
{ a: "令狐冲", b: "男", c: 41,d:'大侠', key: "1" },
{ a: "郭靖", b: "男", c: 25,d:'大侠', key: "3" }
];
const defaultProps11 = {
prefixCls: "bee-table"
};
class Demo11 extends Component {
constructor(props) {
super(props);
this.state = {
sortOrder: "",
data: data11
};
}
render() {
2018-09-26 16:36:49 +08:00
return <ComplexTable columns={columns11} data={this.state.data} />;
2018-05-11 11:30:56 +08:00
}
}
Demo11.defaultProps = defaultProps11;
export default Demo11;