...
|
...
|
@@ -57,7 +57,7 @@ export default class ContentMessageCell extends Component { |
|
|
<Text style={styles.subnameText}>{subName}</Text>
|
|
|
</View>
|
|
|
<TouchableOpacity activeOpacity={1} style={styles.replyContainer} onPress={()=> this.props.jumpToShowKeyboard && this.props.jumpToShowKeyboard(rowData.userName, rowData.commentId)}>
|
|
|
<Image style={styles.replyImage} source={require('../../images/content_reply.png')}/>
|
|
|
<Image style={styles.replyImage} resizeMode="contain" source={require('../../images/content_reply.png')}/>
|
|
|
</TouchableOpacity>
|
|
|
</View>
|
|
|
|
...
|
...
|
@@ -82,7 +82,12 @@ export default class ContentMessageCell extends Component { |
|
|
<View style={ styles.originContainerView} >
|
|
|
<Text style={styles.copyText}>原文</Text>
|
|
|
<YH_Image url={imageUrl} style={styles.imageStyle} />
|
|
|
<Text style={styles.originText} numberOfLines={1}>{rowData.content}</Text>
|
|
|
{rowData.content ?
|
|
|
<Text style={styles.originText} numberOfLines={1}>{rowData.content}</Text>
|
|
|
:
|
|
|
<View style={{height: 5, backgroundColor: 'black'}} />
|
|
|
}
|
|
|
|
|
|
</View>
|
|
|
</TouchableOpacity> }
|
|
|
|
...
|
...
|
@@ -212,7 +217,7 @@ let styles = StyleSheet.create({ |
|
|
marginLeft:15,
|
|
|
marginRight: 0,
|
|
|
width: width-15,
|
|
|
height: 1,
|
|
|
height: 0.5,
|
|
|
backgroundColor: '#e0e0e0'
|
|
|
},
|
|
|
}); |
...
|
...
|
|