import React,{ Component } from "react"; import {Checkbox,Input,Table, Pagination,Menu,Icon} from "antd"; import {Link,NavLink} from 'react-router-dom'; import { WordsBtn ,ActionBtn,SnackbarHOC} from 'educoder'; const Search = Input.Search; import axios from 'axios'; import './searchc.css' import {TPMIndexHOC} from "../modules/tpm/TPMIndexHOC"; class SearchPage extends Component{ constructor(props) { super(props); this.state={ tab:"0", count:0, } } //切换tab changeTab=(e)=>{ this.setState({ tab:e.key }) } componentDidMount(){ // const query =this.props.location.search; // const type = query.split('?tab='); // let sum = [] // sum.push(type[1]) // // console.log("componentDidMountcomponentDidMount"); // // console.log(sum); // this.setState({ // tab:sum, // }) } setdatafuns =(value)=>{ } render(){ let {tab,count}=this.state; console.log(tab); return(
搜索} onSearch={ (value)=>this.setdatafuns(value)} />
开发社区 实践课程 翻转课堂 交流问答

共找到相关结果{count}

) } } export default SnackbarHOC() (TPMIndexHOC ( SearchPage ));