import React from 'react'; import './index.less'; import { Icon } from 'antd'; import Page from '@src/containers/Page'; import UserLayout from '../../../layouts/User'; import UserTable from '../../../components/UserTable'; import UserFilter from '../../../components/UserFilter'; import UserAction from '../../../components/UserAction'; import menu from '../index'; import Tabs from '../../../components/Tabs'; const columns = [ { key: '', title: '题型' }, { key: '', title: '题目ID' }, { key: '', title: '内容' }, { key: '', title: '耗时' }, { key: '', title: '错误率' }, { key: '', title: '最近做题' }, { key: '', title: '' }, ]; export default class extends Page { initState() { return { filterMap: {}, }; } onFilter(value) { this.setState({ filterMap: value }); } renderView() { const { config } = this.props; return ; } renderTable() { const { filterMap = {} } = this.state; return (
this.onFilter(value)} /> 2019-06-03 15:30 组卷50题,做对30题。移除正确题目
} /> ); } }