...
|
...
|
@@ -106,6 +106,7 @@ export default class Data extends Component { |
|
|
<ScrollableTabView
|
|
|
style={{backgroundColor: 'white'}}
|
|
|
locked={true}
|
|
|
contentProps={{style: {minHeight: 181}}}
|
|
|
scrollWithoutAnimation={true}
|
|
|
renderTabBar={() => <TabStatistics tabNames={tabTitles}/>}
|
|
|
onChangeTab={(obj) => {this.props.changeTab && this.props.changeTab(obj.i + 1);}}
|
...
|
...
|
@@ -171,12 +172,13 @@ let styles = StyleSheet.create({ |
|
|
},
|
|
|
amountView: {
|
|
|
width: width,
|
|
|
height: 58,
|
|
|
height: 72,
|
|
|
marginTop: 1,
|
|
|
flexDirection: 'row',
|
|
|
justifyContent: 'space-between'
|
|
|
},
|
|
|
amountText: {
|
|
|
lineHeight: 48,
|
|
|
fontSize: 48,
|
|
|
color: '#444444',
|
|
|
fontWeight: 'bold',
|
...
|
...
|
|