Authored by 盖剑秋

Fix few UI issues of order list. reivewed by Boss Hai.

... ... @@ -54,7 +54,7 @@ let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
container: {
width: width,
height: 63,
height: 60,
flexDirection: 'row',
backgroundColor: 'white',
borderColor: '#f0f0f0',
... ... @@ -63,9 +63,10 @@ let styles = StyleSheet.create({
},
codeText: {
fontSize: 14,
fontSize: 12,
marginBottom: 0,
marginLeft: 4,
fontWeight: '800',
color: '#444444'
},
topPart: {
... ... @@ -81,7 +82,7 @@ let styles = StyleSheet.create({
},
otherText: {
fontSize: 12,
fontSize: 10,
marginLeft: 15,
marginTop: 8,
color: '#b0b0b0',
... ...
... ... @@ -200,7 +200,7 @@ class ListContainer extends Component {
<ScrollableTabView
initialPage={initialPage}
renderTabBar={() => <DefaultTabBar
style={{height:38, borderWidth: 0.5, borderBottomColor: '#ededed'}}
style={{height:38, borderWidth: 0.5, borderBottomColor: '#ededed', backgroundColor: 'white'}}
textStyle={{paddingTop:10, fontFamily: 'STHeitiSC-Light', fontSize: 14, fontWeight: 'normal'}}
underlineHeight={0}
activeTextColor={'black'}
... ... @@ -243,6 +243,7 @@ let styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
backgroundColor: '#ededed'
},
});
... ...