Authored by 孙凯

add 分割线 review by daiqiang

@@ -74,6 +74,8 @@ export default class GroupProductCell extends React.Component { @@ -74,6 +74,8 @@ export default class GroupProductCell extends React.Component {
74 </View> 74 </View>
75 </View> 75 </View>
76 </View> 76 </View>
  77 + <View style={styles.line}/>
  78 +
77 </TouchableOpacity> 79 </TouchableOpacity>
78 </View> 80 </View>
79 ); 81 );
@@ -204,4 +206,10 @@ let styles = StyleSheet.create({ @@ -204,4 +206,10 @@ let styles = StyleSheet.create({
204 height: 1, 206 height: 1,
205 backgroundColor: '#b0b0b0', 207 backgroundColor: '#b0b0b0',
206 }, 208 },
  209 + line: {
  210 + width,
  211 + height: 1,
  212 + marginLeft: 15*DEVICE_WIDTH_RATIO,
  213 + backgroundColor: '#E0E0E0',
  214 + },
207 }); 215 });