index.js
1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import React from 'react'
import {
Table, Input, Button, Popconfirm, Form,
} from 'antd';
import ReactDOM from 'react-dom'
import styles from './table.css';
const FormItem = Form.Item;
const EditableContext = React.createContext();
const EditableRow = ({ form, index, ...props }) => (
<EditableContext.Provider value={form}>
<tr {...props} />
</EditableContext.Provider>
);
export default class EditableTable extends React.Component {
constructor(props) {
super(props);
this.state = {
dataSource: [{
key: '0',
0: '险种',
1: '保额',
2: '保费',
3:'缴费期限'
}
],
columns : [{
title: '险种',
dataIndex: '0',
width: '25%',
editable: true,
}, {
title: '保额',
dataIndex: '1',
}, {
title: '保费',
dataIndex: '2',
}, {
title: '期间',
dataIndex: '3',
}],
count: 2,
};
}
componentWillReceiveProps(nextProps){
this.setState({
dataSource:nextProps.listTable,
columns:nextProps.listTitle,
})
}
componentDidMount(){
this.setState({
dataSource:this.props.listTable,
columns:this.props.listTitle,
})
}
render() {
const { dataSource } = this.state;
const { scroll } = this.props;
const columns = this.state.columns.map((col) => {
if (!col.editable) {
return col;
}
return {
...col,
};
});
return (
<div>
<Table
bordered
dataSource={dataSource}
columns={columns}
pagination={false}
scroll={scroll}
/>
</div>
);
}
}