import React,{ Component } from "react"; import { Input,Menu } from "antd"; import './nav.css'; const Search = Input.Search; class ListNav extends Component{ constructor(props){ super(props); this.state = { task_value:"", source_value:"", stu_new_flag:false, headIndex:2 } } inputTask=(e)=>{ this.setState({ task_value:e.target.value }) } inputSource=(e)=>{ this.setState({ source_value:e.target.value }) } render(){ let { task_value , source_value,headIndex }=this.state; return(
{ headIndex == 2 &&

毕设任务

  • 题库选用 新建
  • 全部 {this.props.isAdmin?未发布:""} 提交中 评阅中 已结束
    } { headIndex == 3 &&

    资源列表

  • 新建目录 导入资源 上传资源
  • 共 3 个资源 公共资源:0 个 私有资源:3 个

    }
    ) } } export default ListNav;