dev_auth
杨树明 6 years ago
parent d4cd12cf2c
commit 41daa10280

@ -364,4 +364,14 @@
line-height: 50px; line-height: 50px;
text-align: center; text-align: center;
padding-left: 20px; padding-left: 20px;
}
.ranknames{
font-size: 16px;
color: rgba(62,62,62,1);
}
.ranknameslast{
font-size:16px;
color:rgba(12,158,254,1);
} }

@ -242,7 +242,7 @@ class CompetitionContents extends Component{
return( return(
<Row type="flex" key={key}> <Row type="flex" key={key}>
<Col span={4} order={1}> <Col span={4} order={1}>
您当前排名:{item.rank} <span className={"ranknames"}>您当前排名:{item.rank}</span>
</Col> </Col>
<Col span={4} order={2}> <Col span={4} order={2}>
{item.user_name} {item.user_name}
@ -254,7 +254,7 @@ class CompetitionContents extends Component{
{item.cost_time} {item.cost_time}
</Col> </Col>
<Col span={4} order={5}> <Col span={4} order={5}>
{item.score} <span className={"ranknameslast"}>{item.score}</span>
</Col> </Col>
</Row> </Row>
) )

Loading…
Cancel
Save