...
|
...
|
@@ -30,6 +30,8 @@ export default class WithdrawalRecord extends Component { |
|
|
let uploadStatus = this.props.identityCardInfo.data;
|
|
|
return (<View>
|
|
|
|
|
|
<View style={{width: width, height: 0.5, backgroundColor: '#e0e0e0'}}/>
|
|
|
|
|
|
{ uploadStatus ?
|
|
|
null
|
|
|
:
|
...
|
...
|
@@ -44,8 +46,8 @@ export default class WithdrawalRecord extends Component { |
|
|
}
|
|
|
|
|
|
<View style={styles.withdrawContainer}>
|
|
|
<Text style={styles.tipStyle}>{'每月20日结算上个月预估佣金并预扣个税'}</Text>
|
|
|
<TouchableOpacity style={{flexDirection: 'row', alignItems: 'center'}} onPress={()=> {
|
|
|
<Text style={[styles.tipStyle, {marginTop: 15}]}>{'每月20日结算上个月预估佣金并预扣个税'}</Text>
|
|
|
<TouchableOpacity style={{flexDirection: 'row', alignItems: 'center', marginTop: 8}} onPress={()=> {
|
|
|
this.props.jumpWithActivityUrl && this.props.jumpWithActivityUrl();
|
|
|
}}>
|
|
|
<Text style={styles.tipStyle}>{'结算说明 '}</Text>
|
...
|
...
|
@@ -65,7 +67,7 @@ export default class WithdrawalRecord extends Component { |
|
|
<Text style={styles.numberText}>处理编号:{rowData.get("settlementCode")}</Text>
|
|
|
<Text style={styles.statusText}>{rowData.get("settlementStatus")}</Text>
|
|
|
</View>
|
|
|
<View style={{width: width, height: 0.5, backgroundColor: '#f0f0f0'}}></View>
|
|
|
<View style={{width: width, height: 0.5, backgroundColor: '#e0e0e0'}}></View>
|
|
|
<View style={styles.detailView}>
|
|
|
<Text>
|
|
|
<Text style={styles.priceText}>税后总收益:</Text>
|
...
|
...
|
@@ -136,7 +138,7 @@ let styles = StyleSheet.create({ |
|
|
},
|
|
|
detailView: {
|
|
|
width: width,
|
|
|
paddingTop: 9,
|
|
|
paddingTop: 15,
|
|
|
paddingLeft: 15,
|
|
|
paddingRight: 15,
|
|
|
paddingBottom: 20,
|
...
|
...
|
@@ -168,12 +170,10 @@ let styles = StyleSheet.create({ |
|
|
},
|
|
|
statusText: {
|
|
|
fontFamily: 'PingFang-SC-Regular',
|
|
|
fontSize: 12,
|
|
|
fontSize: 14,
|
|
|
color: '#D0021B',
|
|
|
letterSpacing: -0.29,
|
|
|
},
|
|
|
|
|
|
|
|
|
uploadContainer: {
|
|
|
width: width,
|
|
|
backgroundColor: 'transparent',
|
...
|
...
|
@@ -195,7 +195,7 @@ let styles = StyleSheet.create({ |
|
|
width: 80,
|
|
|
height: 30,
|
|
|
marginTop: 10,
|
|
|
borderRadius: 5,
|
|
|
borderRadius: 4,
|
|
|
backgroundColor: '#D0021B',
|
|
|
alignItems: 'center',
|
|
|
justifyContent: 'center',
|
...
|
...
|
@@ -220,6 +220,5 @@ let styles = StyleSheet.create({ |
|
|
color: '#B0B0B0',
|
|
|
backgroundColor: 'transparent',
|
|
|
textAlign: 'center',
|
|
|
lineHeight: 40,
|
|
|
},
|
|
|
}); |
...
|
...
|
|