|
|
|
@ -324,6 +324,9 @@ class CompetitionContents extends Component{
|
|
|
|
|
.col10{
|
|
|
|
|
width: 10%;
|
|
|
|
|
}
|
|
|
|
|
.col6{
|
|
|
|
|
width: 6%;
|
|
|
|
|
}
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -341,9 +344,11 @@ class CompetitionContents extends Component{
|
|
|
|
|
<Col className="textleft" span={9} order={3}>
|
|
|
|
|
{/*{item.team_name}*/}
|
|
|
|
|
</Col>
|
|
|
|
|
<Col span={3} order={4} className={"col10"}>
|
|
|
|
|
{item.cost_time=== "--"?<Col span={3} order={4} className={"col6"}>
|
|
|
|
|
{this.props&&this.props.mode===1?item.cost_time:""}
|
|
|
|
|
</Col>
|
|
|
|
|
</Col>:<Col span={3} order={4} className={"col10"}>
|
|
|
|
|
{this.props&&this.props.mode===1?item.cost_time:""}
|
|
|
|
|
</Col>}
|
|
|
|
|
<Col className="textright" span={3} order={5} className={"col15"}>
|
|
|
|
|
<span className={"ranknameslast"}>{item.score<50?"< 50 分":item.score}</span>
|
|
|
|
|
</Col>
|
|
|
|
|