Authored by 张文文

间隙调整

... ... @@ -41,7 +41,7 @@ export default class ContentFansListCell extends Component {
<View style={styles.headerBackground}>
<TouchableOpacity style={{marginLeft: 15, marginRight: 15, flexDirection:'row'}} activeOpacity={1} onPress={()=> this.props.jumpToPersonalGrassPage && this.props.jumpToPersonalGrassPage(data)}>
<YH_Image style={styles.headIcon} url={data.headIco} circle={true}/>
<Image style={styles.iconImage} resizeMode="contain" source={source}/>
{showIcon ? <Image style={styles.iconImage} resizeMode="contain" source={source}/> : null}
</TouchableOpacity>
<View style={styles.textView}>
... ...
... ... @@ -46,7 +46,7 @@ export default class ContentLikedListCell extends Component {
<View style={styles.headerBackground}>
<TouchableOpacity style={{marginLeft: 15, marginRight: 10, flexDirection:'row'}} activeOpacity={1} onPress={()=> this.props.jumpToPersonalGrassPage && this.props.jumpToPersonalGrassPage(rowData)}>
<YH_Image style={styles.headIcon} url={rowData.headIco} circle={true}/>
<Image style={styles.iconImage} resizeMode="contain" source={source}/>
{showIcon ? <Image style={styles.iconImage} resizeMode="contain" source={source}/> : null}
</TouchableOpacity>
<View style={styles.textView}>
... ...
... ... @@ -48,7 +48,7 @@ export default class ContentMessageCell extends Component {
<View style={styles.headerBackground}>
<TouchableOpacity style={{marginLeft: 15, marginRight: 10, flexDirection:'row'}} activeOpacity={1} onPress={()=> this.props.jumpToPersonalGrassPage && this.props.jumpToPersonalGrassPage(rowData)}>
<YH_Image style={styles.headIcon} url={rowData.headIco} circle={true}/>
<Image style={styles.iconImage} resizeMode="contain" source={source}/>
{showIcon ? <Image style={styles.iconImage} resizeMode="contain" source={source}/> : null}
</TouchableOpacity>
<View style={styles.textView}>
... ...