...
|
...
|
@@ -88,7 +88,7 @@ export default class AlreadyOpenedHeader extends React.Component { |
|
|
}
|
|
|
<TouchableOpacity activeOpacity={0.5} onPress={() => {this.props.gotoRepayListPageWithDays &&this.props.gotoRepayListPageWithDays('7')}} >
|
|
|
<View style={{width:95*DEVICE_WIDTH_RATIO,height:30*DEVICE_WIDTH_RATIO,borderRadius:15*DEVICE_WIDTH_RATIO,alignItems:'center',backgroundColor:'rgba(69, 74, 76, 0.5)',marginTop:15*DEVICE_WIDTH_RATIO}}>
|
|
|
<Text style={[styles.imageText,{lineHeight:20*DEVICE_WIDTH_RATIO}]}>明细</Text>
|
|
|
<Text style={[styles.imageText,{lineHeight:Math.ceil(20 * DEVICE_WIDTH_RATIO)}]}>明细</Text>
|
|
|
</View>
|
|
|
</TouchableOpacity>
|
|
|
</View>
|
...
|
...
|
@@ -183,7 +183,7 @@ let styles = StyleSheet.create({ |
|
|
width: tabBtnWidth,
|
|
|
height: 44 * DEVICE_WIDTH_RATIO,
|
|
|
fontSize: 16 * DEVICE_WIDTH_RATIO,
|
|
|
lineHeight: 31 * DEVICE_WIDTH_RATIO,
|
|
|
lineHeight: Math.ceil(31 * DEVICE_WIDTH_RATIO),
|
|
|
backgroundColor: 'transparent',
|
|
|
color: 'white',
|
|
|
},
|
...
|
...
|
@@ -192,7 +192,7 @@ let styles = StyleSheet.create({ |
|
|
width: tabBtnWidth,
|
|
|
height: 44 * DEVICE_WIDTH_RATIO,
|
|
|
fontSize: 16 * DEVICE_WIDTH_RATIO,
|
|
|
lineHeight: 30 * DEVICE_WIDTH_RATIO,
|
|
|
lineHeight: Math.ceil(30 * DEVICE_WIDTH_RATIO),
|
|
|
backgroundColor: 'transparent',
|
|
|
color: '#b0b0b0',
|
|
|
},
|
...
|
...
|
@@ -222,7 +222,7 @@ let styles = StyleSheet.create({ |
|
|
backgroundColor: 'transparent',
|
|
|
color: '#d4031a',
|
|
|
fontSize: 11 * DEVICE_WIDTH_RATIO,
|
|
|
lineHeight: 16 * DEVICE_WIDTH_RATIO,
|
|
|
lineHeight: Math.ceil(16 * DEVICE_WIDTH_RATIO),
|
|
|
textAlign: 'right',
|
|
|
},
|
|
|
imageText: {
|
...
|
...
|
@@ -251,7 +251,7 @@ let styles = StyleSheet.create({ |
|
|
justifyContent: 'center',
|
|
|
height: 42 * DEVICE_WIDTH_RATIO,
|
|
|
fontSize: 16 * DEVICE_WIDTH_RATIO,
|
|
|
lineHeight: 29 * DEVICE_WIDTH_RATIO,
|
|
|
lineHeight: Math.ceil(29 * DEVICE_WIDTH_RATIO),
|
|
|
textAlign:'center',
|
|
|
textAlignVertical:'center',
|
|
|
backgroundColor: 'white',
|
...
|
...
|
|