41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
| /* eslint-disable no-console,func-names */
 | |
| import Table from '../index';
 | |
| import '../assets/index.less';
 | |
| 
 | |
| const data = [
 | |
|   { a: '123', key: '1' },
 | |
|   { a: 'cdd', b: 'edd', key: '2' },
 | |
|   { a: '1333', c: 'eee', d: 2, key: '3' },
 | |
| ];
 | |
| export default {
 | |
|   render() {
 | |
|     const columns = [
 | |
|       { title: 'title1', dataIndex: 'a', class: 'a', key: 'a', width: 100 },
 | |
|       { id: '123', title: 'title2', dataIndex: 'b', className: 'b', key: 'b', width: 100 },
 | |
|       { title: 'title3', dataIndex: 'c', className: 'c', key: 'c', width: 200 },
 | |
|       {
 | |
|         title: 'Operations',
 | |
|         dataIndex: '',
 | |
|         className: 'd',
 | |
|         key: 'd',
 | |
|         customRender: () => {
 | |
|           return <a href="#">Operations</a>;
 | |
|         },
 | |
|       },
 | |
|     ];
 | |
|     return (
 | |
|       <div>
 | |
|         <h2>rowClassName and className</h2>
 | |
|         <Table
 | |
|           columns={columns}
 | |
|           rowClassName={(record, i) => `row-${i}`}
 | |
|           expandedRowRender={record => <p>extra: {record.a}</p>}
 | |
|           expandedRowClassName={(record, i) => `ex-row-${i}`}
 | |
|           data={data}
 | |
|           class="table"
 | |
|         />
 | |
|       </div>
 | |
|     );
 | |
|   },
 | |
| };
 |