/* eslint-disable no-console,func-names,react/no-multi-comp */ import React from 'react'; import ReactDOM from 'react-dom'; import Table from 'rc-table'; import 'rc-table/assets/index.less'; const data = []; for (let i = 0; i < 10; i++) { data.push({ key: i, a: `a${i}`, b: `b${i}`, c: `c${i}`, }); } class Demo extends React.Component { state = { showBody: true, } toggleBody = () => { this.setState({ showBody: !this.state.showBody, }); } render() { const columns = [ { title: 'title1', key: 'a', dataIndex: 'a', width: 100 }, { id: '123', title: 'title2', dataIndex: 'b', key: 'b', width: 100 }, { title: 'title3', key: 'c', dataIndex: 'c', width: 200 }, { title: {this.state.showBody ? '隐藏' : '显示'}体, key: 'x', width: 200, render() { return Operations; }, }, ]; return (