forked from Gitlink/forgeplus-react
修改竞赛专家评审issue之文本显示优化
This commit is contained in:
parent
7da80ad561
commit
f71137b8f1
|
@ -65,6 +65,8 @@ function ReviewResult({ history, match, mygetHelmetapi}) {
|
|||
return record.isWin ? <div className="sucess df"><img src={sucess}/>胜出</div> : status == 4 ? <Checkbox onChange={(e)=>{changeIsWin(record.applicantInfo.id, e.target.checked)}}>胜出</Checkbox> : '未胜出';
|
||||
}
|
||||
});
|
||||
}else{
|
||||
columns[1].title = "战队昵称";
|
||||
}
|
||||
|
||||
useEffect(()=>{
|
||||
|
@ -197,7 +199,7 @@ function ReviewResult({ history, match, mygetHelmetapi}) {
|
|||
</p>
|
||||
</div>
|
||||
{status > 3 ? <React.Fragment>
|
||||
<p className="font-16 font-w mb10">应征者排名</p>
|
||||
<p className="font-16 font-w mb10">{containerType ==1 ? '应征者':'战队'}排名</p>
|
||||
<PaginationTable
|
||||
dataSource= {dataList}
|
||||
columns= {columns}
|
||||
|
@ -206,7 +208,7 @@ function ReviewResult({ history, match, mygetHelmetapi}) {
|
|||
<div className="openResult">
|
||||
{status == 4 && <button className={(containerType ==1 && winIds && taskModeId == 1 && winIds.length >1) || result === null ? 'disableBut': 'but41_fill'} onClick={openResult}>公示结果</button>}
|
||||
</div>
|
||||
</React.Fragment>:<div className="nodata font-20">暂无数据,此任务暂未进入成果评选阶段。</div>}
|
||||
</React.Fragment>:<div className="nodata font-20">暂无数据,此任务暂未进入{containerType ==1 ? '成果':'竞赛'}评选阶段。</div>}
|
||||
<Modal
|
||||
title= "请确认公示范围"
|
||||
visible= {openResultVisible}
|
||||
|
|
Loading…
Reference in New Issue