|
@@ -215,7 +215,7 @@ const SubContent = React.createClass({
|
|
|
</Row> : <div></div>}
|
|
|
<Row className="search-criteria">
|
|
|
<Col className="search-title" span={2}>
|
|
|
- <span>伙伴名称</span>
|
|
|
+ <span>行家名称</span>
|
|
|
</Col>
|
|
|
<Col span={6}>
|
|
|
<div className="nav-search" style={{ float: 'none', marginBottom: '10px' }}>
|
|
@@ -231,19 +231,22 @@ const SubContent = React.createClass({
|
|
|
{this.state.dataSource.map((item, i) => {
|
|
|
return <li key={i} className="org-detail clearfix" onClick={() => { _me.tableRowClick(item); }}>
|
|
|
<div className="logo">
|
|
|
- <img src={(item.personPortraitUrl || item.logoUrl) ?
|
|
|
- (globalConfig.avatarHost + "/upload" + (item.logoUrl))
|
|
|
+ <img src={item.personPortraitUrl ?
|
|
|
+ (globalConfig.avatarHost + "/upload" + (item.personPortraitUrl))
|
|
|
: avatarImg} alt="头像" />
|
|
|
</div>
|
|
|
<div className="detail-right">
|
|
|
<div className="name">
|
|
|
- {item.unitName || 'UserName'}
|
|
|
- </div>
|
|
|
- <div className="text" style={{fontSize:'14px'}}>
|
|
|
- {(item.workUnit || '单位') + ' ' + (item.position || '职位')}
|
|
|
+ {item.username || 'UserName'}
|
|
|
</div>
|
|
|
- <div className="text" style={{fontSize:'12px'}}>
|
|
|
- {getTechField(item.engagedField[0],item.engagedField[1],item.engagedField[2])}
|
|
|
+ <div className="text" style={{ fontSize: '14px' }}>
|
|
|
+ {item.workUnit || '单位'}
|
|
|
+ </div>
|
|
|
+ <div className="text" style={{ fontSize: '14px' }}>
|
|
|
+ {item.position || '职位'}
|
|
|
+ </div>
|
|
|
+ <div className="text" style={{ fontSize: '12px' }}>
|
|
|
+ {getTechField(item.engagedField[0], item.engagedField[1], item.engagedField[2])}
|
|
|
</div>
|
|
|
<div className="detail-text">
|
|
|
<div className="text">
|
|
@@ -260,7 +263,7 @@ const SubContent = React.createClass({
|
|
|
<div className="text">
|
|
|
<span style={{ letterSpacing: '32px' }}>粉</span>
|
|
|
<span>丝: </span>
|
|
|
- <span className="text-address"> {Math.round(Math.random() * 1000)}</span>
|
|
|
+ <span className="text-address"> {0}</span>
|
|
|
<span className="text-unit"> 位</span>
|
|
|
</div>
|
|
|
</div>
|