示例修改

This commit is contained in:
wanghaoo 2018-12-22 12:07:20 +08:00
parent f4b1019c87
commit 0e4b450f79
5 changed files with 16 additions and 20 deletions

View File

@ -64,10 +64,14 @@ const columns13 = [
]; ];
const data13 = [ const data13 = [
{ a: "令狐冲", b: 43, c: 41, d: "大侠",e:90.52, key: "1" }, { a: "杨过", b: 675, c: 30, d: "内行",e:100, key: "2" },
{ a: "令狐冲", b: 43, c: 41, d: "大侠",e:90, key: "1" },
{ a: "令狐冲1", b: 43, c: 81, d: "大侠", e:120,key: "4" },
{ a: "令狐冲2", b: 43, c: 81, d: "大侠", e:130,key: "5" },
{ a: "郭靖", b: 153, c: 25, d: "大侠",e:90, key: "3" }
]; ];
//拼接成复杂功能的table组件不能在render中定义需要像此例子声明在组件的外侧不然操作state会导致功能出现异常 //拼接成复杂功能的table组件不能在render中定义需要像此例子声明在组件的外侧不然操作state会导致功能出现异常
let ComplexTable = multiSelect(sum(sort(Table, Icon)), Checkbox); let ComplexTable = multiSelect(sum(sort(Table, Icon)), Checkbox);
@ -123,7 +127,6 @@ class Demo13 extends Component {
data={this.state.data13} data={this.state.data13}
multiSelect={multiObj} multiSelect={multiObj}
sort={sortObj} sort={sortObj}
scroll={{x:'100%',y:100}}
getSelectedDataFunc={this.getSelectedDataFunc} getSelectedDataFunc={this.getSelectedDataFunc}
/> />
</div> </div>

View File

@ -21,14 +21,8 @@ const columns5 = [
fixed: "left" fixed: "left"
}, },
{ title: "Age", width: 100, dataIndex: "age", key: "age", fixed: "left" }, { title: "Age", width: 100, dataIndex: "age", key: "age", fixed: "left" },
{ title: "Column 1", dataIndex: "c1", key: "1" }, { title: "address", dataIndex: "address", key: "address" },
{ title: "Column 2", dataIndex: "c2", key: "2" },
{ title: "Column 3", dataIndex: "c3", key: "3" },
{ title: "Column 4", dataIndex: "c4", key: "4" },
{ title: "Column 5", dataIndex: "c5", key: "5" },
{ title: "Column 6", dataIndex: "c6", key: "6" },
{ title: "Column 7", dataIndex: "c7", key: "7" },
{ title: "Column 8", dataIndex: "c8", key: "8" }
]; ];
const data5 = [ const data5 = [

File diff suppressed because one or more lines are too long

13
dist/demo.js vendored

File diff suppressed because one or more lines are too long

2
dist/demo.js.map vendored

File diff suppressed because one or more lines are too long