ModifyPassword.js
3.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
'use strict';
import React from 'react';
import ReactNative from 'react-native';
import Button from 'apsl-react-native-button';
import LoadingIndicator from './indicator/LoadingIndicator';
const {
Component,
} = React;
const {
StyleSheet,
View,
Image,
Text,
Dimensions,
TextInput,
Platform,
TouchableWithoutFeedback,
} = ReactNative;
export default class ModifyPassword extends Component {
constructor(props) {
super(props);
}
static propTypes = {
oldPwd: React.PropTypes.string,
newPwd: React.PropTypes.string,
repeatPwd: React.PropTypes.string,
onModifyOldPwd:React.PropTypes.func,
onModifyNewPwd:React.PropTypes.func,
onModifyRepeatPwd:React.PropTypes.func,
onModifySubmitPress:React.PropTypes.func,
};
render() {
return (
<View style={styles.container}>
<View style={styles.accountContainer }>
<Text style={styles.text}>
原密码
</Text>
<TextInput
style={styles.pwd}
secureTextEntry={true}
underlineColorAndroid='transparent'
onChangeText={this.props.onModifyOldPwd}
value={this.props.oldPwd}
/>
</View>
<View style={styles.line}/>
<View style={styles.accountContainer }>
<Text style={styles.text}>
现密码
</Text>
<TextInput
style={styles.pwd}
secureTextEntry={true}
underlineColorAndroid='transparent'
onChangeText={this.props.onModifyNewPwd}
value={this.props.newPwd}
/>
</View>
<View style={styles.line}/>
<View style={styles.accountContainer }>
<Text style={styles.text}>
再输一次
</Text>
<TextInput
style={styles.pwd}
secureTextEntry={true}
underlineColorAndroid='transparent'
onChangeText={this.props.onModifyRepeatPwd}
value={this.props.repeatPwd}
/>
</View>
<Button style={styles.button}
textStyle={styles.buttonText}
onPress={this.props.onModifySubmitPress}
>
确定
</Button>
<LoadingIndicator
isVisible={this.props.isFetching}
/>
</View>
);
}
}
let {height, width} = Dimensions.get('window');
let textPaddingTop = height * 7 / 10;
let buttonMargin = (width - 320) / 2;
var styles = StyleSheet.create({
container:{
flex: 1,
flexDirection: 'column',
alignItems: 'center',
width: width,
height: height,
top:(Platform.OS === 'android') ? 50 : 64,
backgroundColor: '#f0f0f0'
},
accountContainer:{
flexDirection: 'row',
width: width,
height: 40,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'white'
},
text:{
flex:1,
marginLeft: 10,
color:'black',
},
pwd: {
flex: 4,
borderColor: 'gray',
textAlignVertical:'center',
},
button: {
marginLeft: 20,
marginRight: 20,
marginTop: 20,
backgroundColor: '#d0021b',
borderRadius:5,
borderWidth:0,
},
buttonText: {
color: '#ffffff',
fontSize: 18,
},
line:{
width: width,
height: 1,
}
});