Authored by lixia.zhang

注销页面UI调整

... ... @@ -144,7 +144,7 @@ export default class UserLogoutReason extends Component {
style={styles.check}
source={this.state.readedClause == false ? require('../../images/weixuan.png'): require('../../images/xuanze.png')}
/>
<Text style={{color:'#444444'}}>我已阅读并同意以下协议</Text>
<Text style={{color:'#444444',fontSize:12}}>我已阅读并同意以下协议</Text>
</TouchableOpacity>
<TouchableOpacity
style={{paddingTop:5, paddingBottom:5}}
... ... @@ -152,7 +152,7 @@ export default class UserLogoutReason extends Component {
onPress={() => {
this.props.onPressLogoutClause && this.props.onPressLogoutClause();
}}>
<Text style={{color:'#4a90e2'}}>《有货注销条款》</Text>
<Text style={{color:'#4a90e2',fontSize:12}}>《有货注销条款》</Text>
</TouchableOpacity>
</View>
<TouchableOpacity
... ... @@ -201,7 +201,7 @@ export default class UserLogoutReason extends Component {
this.props.hiddenTipModalstate && this.props.hiddenTipModalstate();
this.props.naviBackAction && this.props.naviBackAction();
}}>
<Text style={{fontSize:17,color:'#d0021b',letterSpacing:-0.41}}>返回</Text>
<Text style={{fontSize:17,color:'#d0021b',letterSpacing:-0.41,fontWeight:'500'}}>返回</Text>
</TouchableOpacity>
</View>
</View>
... ... @@ -222,7 +222,7 @@ export default class UserLogoutReason extends Component {
this.props.hiddenTipModalstate && this.props.hiddenTipModalstate();
this.props.naviBackAction && this.props.naviBackAction();
}}>
<Text style={{fontSize:17,color:'#d0021b',letterSpacing:-0.41}}>暂不</Text>
<Text style={{fontSize:17,color:'#d0021b',letterSpacing:-0.41,fontWeight:'500'}}>暂不</Text>
</TouchableOpacity>
<View style={{width:0.5,height:45,backgroundColor:'#e0e0e0'}}/>
<TouchableOpacity
... ... @@ -291,7 +291,7 @@ export default class UserLogoutReason extends Component {
this.setState({image0Degree,image1Degree,image2Degree,image3Degree})
this.props.changeImageCode && this.props.changeImageCode();
}}>
<Text style={{textAlign:'right',fontSize:12,color:'#d0021b',letterSpacing:-0.34}}>换一批</Text>
<Text style={{textAlign:'right',fontSize:12,color:'#d0021b',letterSpacing:-0.34,}}>换一批</Text>
</TouchableOpacity>
</View>
:null
... ... @@ -362,7 +362,7 @@ export default class UserLogoutReason extends Component {
onPress={() => {
this.props.showLogoutReasonModalAction && this.props.showLogoutReasonModalAction(false)
}}>
<Text style={{fontSize:17,color:'#d0021b',letterSpacing:-0.41}}>取消</Text>
<Text style={{fontSize:17,color:'#d0021b',letterSpacing:-0.41,fontWeight:'500'}}>取消</Text>
</TouchableOpacity>
<View style={{width:0.5,height:45,backgroundColor:'#e0e0e0'}}/>
<TouchableOpacity
... ... @@ -506,7 +506,8 @@ let styles = StyleSheet.create({
flexDirection: 'row',
marginTop: 25,
justifyContent:'flex-start',
marginLeft: 10
marginLeft: 10,
alignItems:'center'
},
check: {
width: 14,
... ...
... ... @@ -58,11 +58,11 @@ export default class UserLogoutFailed extends Component {
<View style={{flexDirection:'row', marginTop:10}}>
<Text style={styles.reasonBottomText}>如有疑问请联系</Text>
<TouchableOpacity
style={{borderBottomWidth:1.0,borderColor:'#4a90e2'}}
onPress={() => {
this.props.gotoOnlineService && this.props.gotoOnlineService();
}}>
<Text style={[styles.reasonBottomText,{color:'#4a90e2'}]}>人工客服</Text>
<View style={{height:1, backgroundColor:'#4a90e2',width:56,marginTop:-4}}></View>
</TouchableOpacity>
</View>
</View>
... ... @@ -96,7 +96,7 @@ let styles = StyleSheet.create({
},
textReasonContainer: {
marginTop: 15,
justifyContent: 'flex-start'
justifyContent: 'flex-start',
},
reasonText:{
fontFamily: 'PingFang-HK-Regular',
... ... @@ -112,7 +112,7 @@ let styles = StyleSheet.create({
submitBtn: {
marginLeft: 15,
marginRight: 15,
marginTop: 30,
marginTop: 55,
height: 44,
borderRadius: 5,
alignItems: 'center',
... ...
... ... @@ -31,9 +31,9 @@ export default class UserLogoutStatus extends Component {
source={require('../../images/gou.png')}
/>
<Text style={{fontFamily: 'PingFang-SC-Medium', fontSize: 16, color: '#444444'}}>
请耐心等待,我们将尽快审核您的请求
请耐心等待,我们将尽快审核您的申请
</Text>
<Text style={{fontFamily: 'PingFang-SC-Medium', fontSize: 16, color: '#444444'}}>
<Text style={[styles.bottomText,{marginTop: 40}]}>
注销结果将会通过短信或站内信告知
</Text>
<Text style={styles.bottomText}>申请驳回可在该页面查询原因,请及时关注进度</Text>
... ... @@ -52,12 +52,11 @@ let styles = StyleSheet.create({
width: 54,
height: 54,
marginTop: 30,
marginBottom: 34,
marginBottom: 30,
},
bottomText: {
fontFamily: 'PingFang-SC-Regular',
fontSize: 14,
color: '#B0B0B0',
marginTop: 15
}
});
... ...