...
|
...
|
@@ -136,7 +136,7 @@ export default class GuangDetailProductCell extends Component { |
|
|
this.props.onPressProduct && this.props.onPressProduct(data, rowID);
|
|
|
}}
|
|
|
>
|
|
|
<View style={{overflow: 'hidden',backgroundColor: '#f0f0f0',height: Platform.OS === 'ios'?rowHeight:rowHeight+4,borderColor: '#e0e0e0',
|
|
|
<View style={{overflow: 'hidden',backgroundColor: '#f0f0f0',height: Platform.OS === 'ios'?rowHeight:rowHeight+4+1,borderColor: '#e0e0e0',
|
|
|
borderWidth: 0.5}} >
|
|
|
{this._renderImages()}
|
|
|
<View style={styles.nameContainer}>
|
...
|
...
|
@@ -182,7 +182,7 @@ let gpSoldOutImageHeight = Math.ceil(25 * DEVICE_WIDTH_RATIO); |
|
|
|
|
|
let styles = StyleSheet.create({
|
|
|
container: {
|
|
|
width: rowWidth,
|
|
|
width: rowWidth + 1,
|
|
|
height: Platform.OS === 'ios'?rowHeight + 10:rowHeight+4 + 10,
|
|
|
marginTop: rowMarginTop,
|
|
|
marginBottom: rowMarginBottom,
|
...
|
...
|
@@ -191,7 +191,6 @@ let styles = StyleSheet.create({ |
|
|
rowContainer: {
|
|
|
width: rowWidth,
|
|
|
height: Platform.OS === 'ios'?rowHeight:rowHeight+4,
|
|
|
|
|
|
},
|
|
|
imageContainer: {
|
|
|
width: rowWidth,
|
...
|
...
|
@@ -218,7 +217,7 @@ let styles = StyleSheet.create({ |
|
|
},
|
|
|
nameContainer: {
|
|
|
marginLeft: 10,
|
|
|
marginTop: 16,
|
|
|
marginTop: 25 * DEVICE_WIDTH_RATIO,
|
|
|
width: rowWidth - 20,
|
|
|
},
|
|
|
name: {
|
...
|
...
|
@@ -230,7 +229,7 @@ let styles = StyleSheet.create({ |
|
|
position: 'absolute',
|
|
|
marginLeft: 10,
|
|
|
width: 100,
|
|
|
bottom: Platform.OS === 'ios'? 16 : 14,
|
|
|
bottom: 25 * DEVICE_WIDTH_RATIO,
|
|
|
},
|
|
|
nowPrice: {
|
|
|
fontSize: 12,
|
...
|
...
|
@@ -245,7 +244,7 @@ let styles = StyleSheet.create({ |
|
|
},
|
|
|
typeLookDetail: {
|
|
|
position: 'absolute',
|
|
|
bottom: Platform.OS === 'ios'? 16 : 14,
|
|
|
bottom: 25 * DEVICE_WIDTH_RATIO,
|
|
|
right: 10,
|
|
|
width: 65,
|
|
|
flexDirection: 'row',
|
...
|
...
|
|