Authored by 孙凯

修改 UI review by daiqiang

... ... @@ -206,7 +206,7 @@ cellHeight = Platform.OS === 'ios' ? cellHeight : cellHeight + 4;
let styles = StyleSheet.create({
content_View: {
height: rowHeight + 1,//+1 分隔线
height: rowHeight + 1,
width:width,
backgroundColor: 'white',
},
... ... @@ -224,7 +224,6 @@ let styles = StyleSheet.create({
marginLeft: 15,
borderColor: '#e0e0e0',
borderWidth: 0.5,
},
icon: {
height: rowHeight - rowsp,
... ... @@ -307,7 +306,7 @@ let styles = StyleSheet.create({
type1LookDetail: {
position: 'absolute',
bottom: 10,
right: 15,
right: 10,
width: 65,
flexDirection: 'row',
alignItems:"center",
... ...
... ... @@ -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+1,borderColor: '#e0e0e0',
<View style={{overflow: 'hidden',backgroundColor: '#f0f0f0',height: Platform.OS === 'ios'?rowHeight:rowHeight+4,width: rowWidth+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 + 1,
width: rowWidth + 22,
height: Platform.OS === 'ios'?rowHeight + 10:rowHeight+4 + 10,
marginTop: rowMarginTop,
marginBottom: rowMarginBottom,
... ... @@ -229,7 +229,7 @@ let styles = StyleSheet.create({
position: 'absolute',
marginLeft: 10,
width: 100,
bottom: 25 * DEVICE_WIDTH_RATIO,
bottom: 20 * DEVICE_WIDTH_RATIO,
},
nowPrice: {
fontSize: 12,
... ... @@ -251,14 +251,14 @@ let styles = StyleSheet.create({
alignItems:"center",
},
button: {
height: 23,
width: 40,
height: 23,
},
typeShopCar: {
position: 'absolute',
bottom: 10,
right: 10,
width: 40,
bottom: 10*DEVICE_WIDTH_RATIO,
right: 10*DEVICE_WIDTH_RATIO,
width: 40,
height: 23,
},
lookDetailText: {
... ...