import React, {Component} from "react"; import {Link, NavLink} from 'react-router-dom'; import {WordsBtn, ActionBtn,SnackbarHOC,getImageUrl} from 'educoder'; import axios from 'axios'; import { notification, Spin, Table, Pagination, Tabs, Input, Popover } from "antd"; import './../testioncss/testioncss.css'; import NoneDatas from '../component/NoneDatas'; import Contentquestionbank from "./Contentquestionbank"; import LoadingSpin from '../../../common/LoadingSpin'; import Listjihe from "./Listjihe"; const { TabPane } = Tabs; const Search = Input.Search; class Contentpart extends Component { constructor(props) { super(props); this.state = { page:1, } } //初始化 componentDidMount(){ } //跳转人工组卷 Mantegeneration=()=>{ this.props.history.push('/question'); } render() { let {page}=this.state; let {defaultActiveKey}=this.props; const contents = (

this.props.setdifficulty(null)}>全部

this.props.setdifficulty(1)}>简单

this.props.setdifficulty(2)}>适中

this.props.setdifficulty(3)}>困难

); return (
this.props.callback(e)}>
this.props.setdatafunsval(e)} onSearch={ (value)=>this.props.setdatafuns(value)} value={this.props.keywords} />
{/*内容*/} { this.props.Contentdata.exams === undefined ||this.props.Contentdata.exams === null||this.props.Contentdata.exams.length===0 ?
:
{ defaultActiveKey===1||defaultActiveKey==="1"? :"" } { defaultActiveKey===0||defaultActiveKey==="0"? :"" }
}
{/*列表集合*/}
{ this.props.booljupyterurls===true? : this.props.Contentdata.exams === undefined ||this.props.Contentdata.exams === null||this.props.Contentdata.exams.length===0? : this.props.Contentdata.exams.map((object, index) => { return ( this.props.Testpapereditor(e)} showmodels={(e)=>this.props.showmodels(e)} showmodelysl={(e)=>this.props.showmodelysl(e)} > ) })}
) } } export default Contentpart