...
|
...
|
@@ -35,8 +35,15 @@ export default class CheckSettleModal extends React.Component { |
|
|
<Text style={styles.allPriceText}>{data.afterTaxAmountStr}</Text>
|
|
|
</Text>
|
|
|
|
|
|
<Text style={styles.priceText}>提现总金额:{data.settlementAmountStr}</Text>
|
|
|
<Text style={styles.priceText}>扣税总金额:{data.taxAmountStr}</Text>
|
|
|
<Text>
|
|
|
<Text style={styles.priceText}>提现总金额:</Text>
|
|
|
<Text style={styles.otherText}>{data.settlementAmountStr}</Text>
|
|
|
</Text>
|
|
|
|
|
|
<Text>
|
|
|
<Text style={styles.priceText}>扣税总金额:</Text>
|
|
|
<Text style={styles.otherText}>{data.taxAmountStr}</Text>
|
|
|
</Text>
|
|
|
|
|
|
<TouchableOpacity onPress={() => {
|
|
|
this.props.jumpWithActivityUrl && this.props.jumpWithActivityUrl();
|
...
|
...
|
@@ -130,6 +137,13 @@ let styles = StyleSheet.create({ |
|
|
lineHeight: 23,
|
|
|
letterSpacing: -0.09,
|
|
|
},
|
|
|
otherText:{
|
|
|
fontFamily: 'PingFang-SC-Regular',
|
|
|
fontSize: 14,
|
|
|
color: '#444444',
|
|
|
lineHeight: 23,
|
|
|
letterSpacing: -0.09,
|
|
|
},
|
|
|
priceText: {
|
|
|
fontFamily: 'PingFang-SC-Regular',
|
|
|
fontSize: 14,
|
...
|
...
|
|