...
|
...
|
@@ -140,7 +140,10 @@ export default class UserLogoutReason extends Component { |
|
|
<View style={styles.modalContainer}>
|
|
|
<TouchableOpacity
|
|
|
activeOpacity={1.0}
|
|
|
style={{width:width,height:height, flex: 1, justifyContent: 'center',alignItems: 'center'}}>
|
|
|
style={{width:width,height:height, flex: 1, justifyContent: 'center',alignItems: 'center'}}
|
|
|
onPress={() => {
|
|
|
this.refs.codeInput.blur();
|
|
|
}}>
|
|
|
<View style={styles.modalView}>
|
|
|
<View style={{marginTop:15,marginBottom:10}}>
|
|
|
<Text style={styles.modalTitle}>请输入短信验证码</Text>
|
...
|
...
|
@@ -154,6 +157,7 @@ export default class UserLogoutReason extends Component { |
|
|
|
|
|
<View style={[styles.modalTextInputContainer,{flexDirection:'row', marginTop: 20,justifyContent:'space-between'}]}>
|
|
|
<TextInput
|
|
|
ref="codeInput"
|
|
|
style={[styles.modalTextInput,{width:151}]}
|
|
|
placeholder="请输入手机验证码"
|
|
|
placeholderTextColor='#b0b0b0'
|
...
|
...
|
|