forked from Gitlink/forgeplus-react
update-加入项目按钮icon
This commit is contained in:
parent
da58b17ca2
commit
d3f3a673b9
|
@ -78,7 +78,7 @@ function AddProjectModal(props){
|
|||
</Form.Item>
|
||||
</Form>
|
||||
</Modal>
|
||||
<CheckProfile {...props} sureFunc={()=>setVisible(true)}><i class="iconfont icon-jiaruketang1"></i>加入项目</CheckProfile>
|
||||
<CheckProfile {...props} sureFunc={()=>setVisible(true)}>加入项目</CheckProfile>
|
||||
</React.Fragment>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -306,7 +306,10 @@ class Index extends Component {
|
|||
<CheckProfile {...this.props} sureFunc={()=>this.props.history.push("/projects/deposit/new")}>
|
||||
<i class="iconfont icon-xinjianxiangmu"></i>新建项目
|
||||
</CheckProfile>
|
||||
<AddProjectModal {...this.props} showNotification={this.props.showNotification}/>
|
||||
<a>
|
||||
<i class="iconfont icon-jiaruketang1"></i>
|
||||
<AddProjectModal {...this.props} showNotification={this.props.showNotification}/>
|
||||
</a>
|
||||
<a href="https://data.educoder.net/api/attachments/1955244?disposition=inline" target="_blank">
|
||||
<i class="iconfont icon-xinshouzhiyin"></i>新手指引
|
||||
</a>
|
||||
|
|
|
@ -54,6 +54,9 @@
|
|||
margin-top: 30px;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
&:hover a{
|
||||
color: #466AFF !important;
|
||||
}
|
||||
}
|
||||
.bannerBox .ant-btn{
|
||||
margin-top: 30px;
|
||||
|
|
|
@ -24,7 +24,7 @@ function Activity({list}) {
|
|||
list.map((i,k)=>{
|
||||
return(
|
||||
<li>
|
||||
<Link to={`/${i.user_login}`}><img src={getImageUrl(`${i.user_avatar}`)} alt="" className="aImg"/></Link>
|
||||
<Link to={`/${i.user_login}`}><img src={getImageUrl(`/${i.user_avatar}`)} alt="" className="aImg"/></Link>
|
||||
<div className="aInfos">
|
||||
<AlignCenter>
|
||||
<Link to={`/${i.user_login}`} className="name">{i.user_name}</Link>
|
||||
|
|
Loading…
Reference in New Issue