import React, {Component} from 'react'; import { BrowserRouter as Router, Route, Switch } from 'react-router-dom'; import axios from 'axios'; import moment from 'moment'; import competition from './comcss/competition.css'; import {Checkbox, Input, Table, Pagination, Menu, Icon} from "antd"; const Search = Input.Search; // 团队竞赛报名无报名子组件团队 在线竞赛 > 全国高校计算机大赛-项目挑战> class RegistrationSearch extends React.Component { constructor(props) { super(props) this.state = { keywords: "" } } setdatafunsval = (e) => { this.setState({ keywords: e.target.value }) }; setdatafuns = (value) => { //console.log("setdatafuns点击了搜索"); //console.log(value); this.setState({ keywords: value }) this.props.RegistrationSearchvalue(value); }; myonPressEnter = (e) => { //console.log("点击了回车setdatafunsval点击了搜索"); //console.log(e.target.value); this.props.RegistrationSearchvalue(e.target.value); } render() { return (
搜索} onInput={(e) => this.setdatafunsval(e)} onSearch={(value) => this.setdatafuns(value)} onPressEnter={(e) => this.myonPressEnter(e)} />

战队总数:{this.props.count} 参赛总人数:{this.props.members_count}

) } } export default RegistrationSearch;