...
|
...
|
@@ -56,7 +56,7 @@ export default class Data extends Component { |
|
|
<View style={styles.amountView}>
|
|
|
<View style={styles.textView}>
|
|
|
<Text
|
|
|
style={styles.amountText}>{this.props.settlementInfo.settlementInfoData.settlementAmount}</Text>
|
|
|
style={styles.amountText}><Text style={{fontSize:30}}>¥</Text>{this.props.settlementInfo.settlementInfoData.settlementAmount}</Text>
|
|
|
<View style={styles.reminderView}>
|
|
|
<Image style={styles.reminderImage} source={require('../images/reminder.png')}/>
|
|
|
<Text style={styles.reminderText}>每月15日统一打款,节假日顺延</Text>
|
...
|
...
|
@@ -87,9 +87,9 @@ export default class Data extends Component { |
|
|
this.props.jumpWithUrl && this.props.jumpWithUrl('提现记录', 'withdrawalRecord');
|
|
|
}}>
|
|
|
<Text style={styles.hasWithDrawText}>已提现金额</Text>
|
|
|
<View style={[styles.textView, {flexDirection: 'row', paddingRight: 15}]}>
|
|
|
<View style={[styles.textView, {flexDirection: 'row', paddingRight: 15, marginTop: 5}]}>
|
|
|
<Text
|
|
|
style={styles.hasWithDrawText}>{this.props.settlementInfo.settlementInfoData.historySettlementAmount}</Text>
|
|
|
style={[styles.hasWithDrawText,{marginTop: -2}]}>¥{this.props.settlementInfo.settlementInfoData.historySettlementAmount}</Text>
|
|
|
<Image style={styles.arrowImage} source={require('../images/arrow.png')}/>
|
|
|
</View>
|
|
|
</TouchableOpacity>
|
...
|
...
|
@@ -110,9 +110,9 @@ export default class Data extends Component { |
|
|
renderTabBar={() => <TabStatistics tabNames={tabTitles}/>}
|
|
|
onChangeTab={(obj) => {this.props.changeTab && this.props.changeTab(obj.i + 1);}}
|
|
|
>
|
|
|
<Statistics statisticsInfo={statisticsInfo}/>
|
|
|
<Statistics statisticsInfo={statisticsInfo}/>
|
|
|
<Statistics statisticsInfo={statisticsInfo}/>
|
|
|
<Statistics statisticsInfo={statisticsInfo} jumpWithUrl={this.props.jumpWithUrl}/>
|
|
|
<Statistics statisticsInfo={statisticsInfo} jumpWithUrl={this.props.jumpWithUrl}/>
|
|
|
<Statistics statisticsInfo={statisticsInfo} jumpWithUrl={this.props.jumpWithUrl}/>
|
|
|
</ScrollableTabView>
|
|
|
</ScrollView>
|
|
|
);
|
...
|
...
|
@@ -156,7 +156,7 @@ let styles = StyleSheet.create({ |
|
|
width: width,
|
|
|
height: 128,
|
|
|
backgroundColor: '#FFFFFF',
|
|
|
paddingTop: 28,
|
|
|
paddingTop: 23,
|
|
|
paddingLeft: 15,
|
|
|
paddingBottom: 25,
|
|
|
position: 'relative'
|
...
|
...
|
@@ -166,6 +166,8 @@ let styles = StyleSheet.create({ |
|
|
fontFamily: 'PingFang-SC-Regular',
|
|
|
fontSize: 12,
|
|
|
color: '#B0B0B0',
|
|
|
marginBottom:5,
|
|
|
|
|
|
},
|
|
|
amountView: {
|
|
|
width: width,
|
...
|
...
|
|