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 './../questioncss/questioncom.css'; import Contentquestionbank from "./Contentquestionbank"; import Listjihe from "./Listjihe"; const { TabPane } = Tabs; const Search = Input.Search; class Contentpart extends Component { constructor(props) { super(props); this.state = { page:1, } } //初始化 componentDidMount(){ } setdatafuns=(value)=>{ } setdatafunsval=(e)=>{ } render() { let {page}=this.state; let {defaultActiveKey}=this.props; const content = (

单选题

多选题

判断题

编程题

); const contents = (

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

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

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

); const buttonWidth = 70; console.log("Contentpart"); console.log(this.props); return (
this.props.callback(e)}>
{ defaultActiveKey===0||defaultActiveKey==="0"?

新增

:"" } this.props.handleVisibleChange(true)}>
难度
题型
this.setdatafunsval(e)} onSearch={ (value)=>this.setdatafuns(value)} />
{/*内容*/}
{ defaultActiveKey===1||defaultActiveKey==="1"? :"" } { defaultActiveKey===0||defaultActiveKey==="0"? :"" }
{/*列表集合*/}
{this.props.Contentdata.items === undefined ||this.props.Contentdata.items === null? "" : this.props.Contentdata.items.map((object, index) => { return ( this.props.showmodels()} showmodelysl={()=>this.props.showmodelysl()}> ) })}
) } } export default Contentpart