You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.0 KiB
107 lines
2.0 KiB
import React, {Component} from 'react';
|
|
import {
|
|
BrowserRouter as Router,
|
|
Route,
|
|
Switch
|
|
} from 'react-router-dom';
|
|
import axios from 'axios';
|
|
import moment from 'moment';
|
|
import {SnackbarHOC, WordsBtn} from 'educoder';
|
|
import {TPMIndexHOC} from '../tpm/TPMIndexHOC';
|
|
import competition from './comcss/competition.css';
|
|
import {Button} from 'antd';
|
|
|
|
// 团队竞赛报名无报名子组件团队 竞赛报名-已创建战队
|
|
class RegisListviewdata extends React.Component {
|
|
constructor(props) {
|
|
super(props)
|
|
|
|
|
|
}
|
|
|
|
|
|
render() {
|
|
return (
|
|
|
|
<div className="regitem">
|
|
<div className="regitemimg1 borders">
|
|
<div className="regitemimg2">
|
|
|
|
</div>
|
|
<p>小猫头像</p>
|
|
</div>
|
|
<div className="borders" style={{
|
|
marginTop: "29px",
|
|
marginLeft: "37px"
|
|
}}>
|
|
<p style={{
|
|
border: "1px solid",
|
|
color: "#05101A",
|
|
fontSize: "16px",
|
|
width: "160px",
|
|
textAlign: "center"
|
|
}}>重庆邮电大学</p>
|
|
</div>
|
|
<div className="borders" style={{
|
|
marginLeft: "37px",
|
|
display: "flex",
|
|
flexDirection: "initial",
|
|
width: "487px"
|
|
}}>
|
|
<div className="regitemimgs">
|
|
|
|
</div>
|
|
<div className="regitemimgs2">
|
|
|
|
</div>
|
|
<div className="regitemimgs2">
|
|
|
|
</div>
|
|
<div className="regitemimgs2">
|
|
|
|
</div>
|
|
<div className="regitemimgs2">
|
|
|
|
</div>
|
|
<div className="regitemimgs2">
|
|
|
|
</div>
|
|
<div className="regitemimgs22">
|
|
|
|
</div>
|
|
</div>
|
|
<div className="borders" style={{
|
|
marginLeft: "37px",
|
|
width: "134px",
|
|
marginTop: "29px",
|
|
}}>
|
|
<p style={{
|
|
color: "#05101A",
|
|
fontSize: "16px",
|
|
textAlign: "center"
|
|
}}>重庆邮电大学</p>
|
|
</div>
|
|
<div className="borders" style={{
|
|
marginLeft: "37px",
|
|
width: "151px",
|
|
marginTop: "29px",
|
|
|
|
}}>
|
|
<p style={{
|
|
color: "#999999",
|
|
fontSize: "16px",
|
|
textAlign: "center"
|
|
}}>2019-09-07 08:33</p>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
}
|
|
|
|
}
|
|
|
|
export default RegisListviewdata;
|