...
|
...
|
@@ -247,13 +247,11 @@ export default class Product extends Component { |
|
|
return(
|
|
|
<View style={styles.rowBack}>
|
|
|
<View></View>
|
|
|
|
|
|
<TouchableOpacity activeOpacity={1} style={styles.tailContainerSub} onPress={_ => this.deleteRow(data,rowMap)}>
|
|
|
<View style={styles.tailContainer}>
|
|
|
<Text style={styles.tailText}>删除</Text>
|
|
|
</View>
|
|
|
<TouchableOpacity activeOpacity={1} onPress={_ => this.deleteRow(data,rowMap)}>
|
|
|
<View style={styles.tailContainer}>
|
|
|
<Text style={styles.tailText}>删除</Text>
|
|
|
</View>
|
|
|
</TouchableOpacity>
|
|
|
|
|
|
</View>
|
|
|
)}}
|
|
|
rightOpenValue={-70}
|
...
|
...
|
@@ -290,7 +288,7 @@ let styles = StyleSheet.create({ |
|
|
height: 130,
|
|
|
alignItems: 'center',
|
|
|
justifyContent: 'center',
|
|
|
backgroundColor: 'red'
|
|
|
backgroundColor: 'red',
|
|
|
},
|
|
|
tailContainerSub: {
|
|
|
width: 70,
|
...
|
...
|
|