Authored by 于良

个人中心文字背景调整 review by linen

... ... @@ -171,14 +171,6 @@ export default class MineListHeader extends React.Component {
globalOrderData
} = this.props;
if (Platform.OS === 'ios') {
let systemVersion = DeviceInfo.getSystemVersion();
systemVersion = parseFloat(systemVersion);
if (systemVersion >= 9.0) {
fontFamilyStyle = {fontFamily: 'PingFang SC'};
}
}
let oHigh = 0;
if (this.props.certificationInfo && this.props.certificationInfo.isBindedOrRelated === 'N') {
oHigh = oHigh + subRowHeight;
... ... @@ -201,7 +193,7 @@ export default class MineListHeader extends React.Component {
}
oHigh = topHeight + oHigh;
return (
<View style={[styles.container,{height:oHigh}]}>
<View style={[styles.container,{height:oHigh,}]}>
<Image source={require('../../image/mine_banner_boy.jpg')}
style={{width: width, height: 175,paddingTop:45, }}
resizeMode={'stretch'}>
... ... @@ -228,6 +220,7 @@ export default class MineListHeader extends React.Component {
justifyContent: 'center',
color: 'white',
fontSize:17,
backgroundColor: 'transparent',
}} numberOfLines={1}>
{profile.profile_name}
</Text>
... ... @@ -274,6 +267,7 @@ export default class MineListHeader extends React.Component {
color: 'white',
fontSize:14,
marginRight:4,
backgroundColor: 'transparent',
}} numberOfLines={1}>
设置收货地址
</Text>
... ... @@ -851,7 +845,7 @@ let styles = StyleSheet.create({
fontSize: 13,
textAlignVertical: 'center',
textAlign: 'center',
backgroundColor: 'transparent',
},
login_text: {
alignItems: 'center',
... ...