|
|
|
@ -154,7 +154,12 @@ class Messagerouting extends Component{
|
|
|
|
|
{/*头像*/}
|
|
|
|
|
<div className="mb20 edu-back-white pt40 pb40 edu-txt-center">
|
|
|
|
|
<a >
|
|
|
|
|
<img className="person radius myw120 myh120" src={this.props.current_user&&this.props.current_user.image_url}/>
|
|
|
|
|
{
|
|
|
|
|
this.props.current_user!== undefined?
|
|
|
|
|
<img className="person radius myw120 myh120" src={getImageUrl("/images/"+this.props.current_user.image_url)}/>
|
|
|
|
|
:""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
<p className="font-24 lineh-25 mt10" >{this.props.current_user&&this.props.current_user.username}</p>
|
|
|
|
|
<p className="color-grey-6 mt5" >{this.props.current_user&&this.props.current_user.user_identity}</p>
|
|
|
|
|