forked from Gitlink/forgeplus-react
修改创客
This commit is contained in:
parent
39a96cbd05
commit
c897acce4b
|
@ -129,7 +129,7 @@
|
|||
.slick-list {
|
||||
width: 33.75em;
|
||||
margin: 0 auto;
|
||||
z-index: 1001;
|
||||
z-index: 999;
|
||||
}
|
||||
.issue-item {
|
||||
text-align: center;
|
||||
|
|
|
@ -27,7 +27,7 @@ export default (props) => {
|
|||
loading ? <Loading /> :
|
||||
<React.Fragment>
|
||||
{
|
||||
list.map(item => {
|
||||
list.map((item,i) => {
|
||||
return (
|
||||
<div className="list-box" key={item.id}>
|
||||
<div className="list-content">
|
||||
|
@ -50,8 +50,8 @@ export default (props) => {
|
|||
<img alt="" className="head-log-small" src={getImageUrl(item.user && item.user.logo)} />
|
||||
<span>{(item.user && item.user.nickname) || (item.user && item.user.login)}</span>
|
||||
</span>
|
||||
<span className="font-14 mr30"><i className="iconfont icon-dianjiliang mr3 font-12" />{item.visits || 0}</span>
|
||||
<span className="font-14 mr30"><Icon type="user" /><span className="color-orange">{item.papersCount || 0}</span>人参与</span>
|
||||
<span className="font-14 mr30"><i className="iconfont icon-dianjiliang mr3 font-12" />{item.visits*2+2*item.id}</span>
|
||||
{/* <span className="font-14 mr30"><Icon type="user" /><span className="color-orange">{item.papersCount || 0}</span>人参与</span> */}
|
||||
{(item.status !== 8) && <span className="color-orange mr30 font-14"><i className="mr5 iconfont icon-shijian color-grey9 font-14"></i>{item.delayTime}</span>}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -489,9 +489,10 @@ export default Form.create()(
|
|||
{current_user.enterpriseCertification && detailData.status === 3 && (!detailData.exceptClosedBoolean) && signContent()}
|
||||
|
||||
<div className="applyList edu-back-white padding30 mt20">
|
||||
<div className="font-16 font-bd">交稿({dataList.length})
|
||||
<div className="font-16 font-bd">交稿
|
||||
{/* ({dataList.length}) */}
|
||||
{!detailData.showUserStatus && <Tooltip placement="top" title={"不公示应征者姓名"}>
|
||||
<i data-tip-down="不公示应征者姓名" className="iconfont icon-yincang1 color-grey9 font-20"></i>
|
||||
<i data-tip-down="不公示应征者姓名" className="iconfont icon-yincang1 color-grey9 font-20 ml5"></i>
|
||||
</Tooltip>}
|
||||
{detailData.status === 4 && dataList.length && (!detailData.isProofBoolean) && (!detailData.expertReview) && detailData.user && (current_user.admin || current_user.login === detailData.user.login) ?
|
||||
<a className="line_1 color-blue fr ml20" onClick={() => { setVisibleProofs(true) }}>上传佐证材料</a> : ''}
|
||||
|
|
Loading…
Reference in New Issue