...
|
...
|
@@ -35,7 +35,7 @@ export default class ContentFansListCell extends Component { |
|
|
<Text style={styles.startTimeText}>{data.createTime}</Text>
|
|
|
</View>
|
|
|
<TouchableOpacity activeOpacity={1} style={styles.fanContainer} onPress={()=> {this.props.updateAttentionAction && this.props.updateAttentionAction(status,optUid)}}>
|
|
|
<Image style={styles.fanImage} source={resource}/>
|
|
|
<Image style={styles.fanImage} resizeMode="contain" source={resource}/>
|
|
|
</TouchableOpacity>
|
|
|
</View>
|
|
|
{ this.props.showLine ? <View style={styles.lineView}/> : null }
|
...
|
...
|
@@ -84,13 +84,12 @@ let styles = StyleSheet.create({ |
|
|
},
|
|
|
nicknameText: {
|
|
|
fontSize: 14,
|
|
|
fontFamily: 'PingFang-SC-Medium',
|
|
|
fontFamily: 'PingFang-SC-Regular',
|
|
|
color: 'black',
|
|
|
fontWeight: 'bold',
|
|
|
},
|
|
|
defaultReplyText :{
|
|
|
fontSize: 14,
|
|
|
fontFamily: 'PingFang-SC-Medium',
|
|
|
fontFamily: 'PingFang-SC-Regular',
|
|
|
color: '#b0b0b0',
|
|
|
},
|
|
|
fanContainer: {
|
...
|
...
|
@@ -108,7 +107,7 @@ let styles = StyleSheet.create({ |
|
|
marginLeft:15,
|
|
|
marginRight: 0,
|
|
|
width: width-15,
|
|
|
height: 1,
|
|
|
height: 0.5,
|
|
|
backgroundColor: '#e0e0e0'
|
|
|
},
|
|
|
}); |
...
|
...
|
|