| | |
| | | this.props.match.params.boolean == 'true'? |
| | | { |
| | | title: '评分意见', dataIndex: 'meritsContent', width: '13%', render: (cur, item, index) => { |
| | | return <TextArea autoSize={{ minRows: 3, maxRows: 10 }} value={cur} onChange={(value) => { |
| | | item['meritsContent'] = value.targrt.value; |
| | | return <TextArea autoSize={{ minRows: 3, maxRows: 10 }} value={cur} onChange={({ target: { value } }) => { |
| | | console.log('value', value); |
| | | item['meritsContent'] = value; |
| | | this.refs['table-view'].onSetDataSource({ index, data: item }) |
| | | }} /> |
| | | } |