展示得分

This commit is contained in:
何童崇 2022-01-13 17:16:23 +08:00
parent 46942d8b59
commit 514bdbc972
2 changed files with 18 additions and 6 deletions

View File

@ -157,6 +157,8 @@ export default Form.create()((props) => {
</span>
<span className="color-grey9">{timeAgo(item.createdAt)}</span>
{item.status === 2 ? <img alt="胜出" className="mr5" src={winpng} /> : <span className="color-blue ml10">{item.checkStatus !== 1 ? paperCheckStatus[item.checkStatus] : applyStatusAllNameArr[item.status]}</span>}
{[5,6,7,8].includes(detailStatus) && item &&<span className='paper-grades'>评审得分<span className='paper-grades-num'>{item.reviewFinalGrades}</span></span>}
</li>
<li className="fr">
{((item.needComplain && detailStatus === 3) || (detailStatus === 5 && item.publicTaskComplain && item.checkStatus === 1 && item.status !== 2)) && (current_user.login === item.user.login) &&

View File

@ -20,11 +20,11 @@
.fileCommentsList {
background: #fafafa;
padding-top: .25rem;
padding-top: 0.25rem;
}
.comments-item{
margin-top:1rem;
.comments-item {
margin-top: 1rem;
}
.comments-content {
text-align: left;
@ -36,11 +36,21 @@
background-color: #fff;
}
.small-head{
.small-head {
max-width: 2rem;
}
.clickable:hover{
.clickable:hover {
color: #4cacff;
cursor: pointer;
}
}
.paper-grades {
margin-left:4rem;
font-size: 1rem;
color: #333333;
.paper-grades-num{
color: #FF0000;
}
}