...
|
...
|
@@ -39,12 +39,12 @@ export default class ContentFansListCell extends Component { |
|
|
return (
|
|
|
<View>
|
|
|
<View style={styles.headerBackground}>
|
|
|
<TouchableOpacity 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}/>
|
|
|
<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}/>
|
|
|
</TouchableOpacity>
|
|
|
|
|
|
<View style={[styles.textView, {marginLeft:showIcon?20:15}]}>
|
|
|
<View style={styles.textView}>
|
|
|
<TouchableOpacity style={styles.toubleView} activeOpacity={1} onPress={()=> this.props.jumpToPersonalGrassPage && this.props.jumpToPersonalGrassPage(data)}>
|
|
|
<Text style={styles.nicknameText} numberOfLines={1}>{userName}</Text>
|
|
|
<Text style={styles.defaultReplyText}>关注了你</Text>
|
...
|
...
|
@@ -74,7 +74,6 @@ let styles = StyleSheet.create({ |
|
|
headIcon: {
|
|
|
width: 50,
|
|
|
height: 50,
|
|
|
marginLeft: 15,
|
|
|
marginTop: 15,
|
|
|
overflow: 'hidden',
|
|
|
borderRadius: 25,
|
...
|
...
|
@@ -82,9 +81,8 @@ let styles = StyleSheet.create({ |
|
|
iconImage: {
|
|
|
width: 25,
|
|
|
height: 25,
|
|
|
position: 'absolute',
|
|
|
top: 42,
|
|
|
left: 52,
|
|
|
marginLeft: -10,
|
|
|
marginTop: 40,
|
|
|
},
|
|
|
textView: {
|
|
|
flexDirection: 'column',
|
...
|
...
|
|