PhoneBind.js 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. /*
  2. * 登录
  3. */
  4. import React, { Component } from 'react';
  5. import {
  6. StyleSheet,
  7. Text,
  8. View,
  9. Image,
  10. TouchableOpacity,
  11. ToastAndroid,
  12. StatusBar,
  13. TextInput,
  14. BackHandler
  15. } from 'react-native';
  16. import BasePage from './BasePage';
  17. import Dimensions from './utils/dimensions';
  18. import http_user from './services/user';
  19. import commonutil from './utils/commonutil';
  20. export default class PhoneBind extends BasePage {
  21. state = {
  22. type: '',
  23. phone_num: '',
  24. verification_text: '获取验证码',
  25. verification_code: '',
  26. http_verification_code: '',
  27. page_title_text: '绑定手机号',
  28. click_ok_text: '绑 定',
  29. phone_bind_result: false
  30. };
  31. render() {
  32. return (
  33. <View style={styles.wrapper}>
  34. <StatusBar backgroundColor={'white'} translucent={true} barStyle={'dark-content'} />
  35. <View style={{ flex: 2 }}>
  36. <View style={{ marginTop: '6%', flex: 2, flexDirection: 'row' }}>
  37. <TouchableOpacity
  38. style={{ marginLeft: '5%' }}
  39. activeOpacity={1}
  40. onPress={this.backresult.bind(this)}
  41. >
  42. <Image source={require('./images/schedulePage/back_black.png')} />
  43. </TouchableOpacity>
  44. </View>
  45. <View style={styles.jump}>
  46. <TouchableOpacity style={styles.jumpBtn}>
  47. <Text style={styles.jumpText}>{this.state.page_title_text}</Text>
  48. </TouchableOpacity>
  49. </View>
  50. </View>
  51. <View style={styles.phoneNumberBox}>
  52. <Text style={styles.phoneNumber}>手机号</Text>
  53. <TextInput
  54. style={styles.phoneText}
  55. maxLength={11}
  56. onChangeText={(text) => this.setState({ phone_num: text })}
  57. value={this.state.phone_num}
  58. placeholder={'请输入手机号'}
  59. />
  60. </View>
  61. <View style={styles.signNumberBox}>
  62. <Text style={styles.phoneNumber}>验证码</Text>
  63. <View style={styles.signNumberLine2}>
  64. <TextInput
  65. style={styles.signText}
  66. maxLength={4}
  67. onChangeText={(text) => this.setState({ verification_code: text })}
  68. value={this.state.verification_code}
  69. placeholder={'请输入验证码'}
  70. />
  71. <TouchableOpacity>
  72. <Text style={styles.getSign} onPress={this.getVerification.bind(this)}>
  73. {this.state.verification_text}
  74. </Text>
  75. </TouchableOpacity>
  76. </View>
  77. </View>
  78. <View style={styles.loginIn}>
  79. <Text style={styles.loginText} onPress={this.clickOK.bind(this)}>
  80. {this.state.click_ok_text}
  81. </Text>
  82. </View>
  83. <View style={styles.wechatLogin}>
  84. {/* <Image source={require('./images/common/wechat.png')} /> */}
  85. <Text style={styles.wechatLoginText} />
  86. {/* <Image source={require('./images/common/arrowRight.png')} /> */}
  87. </View>
  88. </View>
  89. );
  90. }
  91. componentWillMount() {
  92. BackHandler.addEventListener('hardwareBackPress', this.onBackAndroid);
  93. var type;
  94. if (this.props.navigation.state.params == undefined) {
  95. type = 1;
  96. } else {
  97. type = this.props.navigation.state.params.type;
  98. }
  99. switch (type) {
  100. case 1:
  101. this.setState({
  102. type: type,
  103. page_title_text: '绑定手机号',
  104. click_ok_text: '绑 定'
  105. });
  106. break;
  107. case 2:
  108. this.setState({
  109. type: type,
  110. page_title_text: '修改手机号',
  111. click_ok_text: '修 改'
  112. });
  113. break;
  114. }
  115. }
  116. componentWillUnmount() {
  117. clearTimeout(this.countdow);
  118. BackHandler.removeEventListener('hardwareBackPress', this.onBackAndroid);
  119. }
  120. onBackAndroid = () => {
  121. this.props.navigation.state.params.bind_phone_back(this.state.phone_num, this.state.phone_bind_result);
  122. this.props.navigation.goBack();
  123. return true;
  124. };
  125. getVerification() {
  126. if (this.state.verification_text === '获取验证码') {
  127. if (commonutil.isPoneAvailable(this.state.phone_num)) {
  128. http_user.getVerificationCode(this.state.phone_num).then((result) => {
  129. if (result.code != 200) {
  130. ToastAndroid.show(result.message, ToastAndroid.SHORT);
  131. return;
  132. } else {
  133. console.log('====================================');
  134. console.log(result.data);
  135. console.log('====================================');
  136. this.setState({
  137. http_verification_code: result.data
  138. });
  139. }
  140. this.setState({
  141. verification_text: '60'
  142. });
  143. this.CountDown();
  144. });
  145. } else {
  146. ToastAndroid.show('请输入正确的手机号', ToastAndroid.SHORT);
  147. }
  148. } else {
  149. }
  150. }
  151. CountDown() {
  152. if (parseInt(this.state.verification_text) == 0) {
  153. this.setState({
  154. verification_text: '获取验证码'
  155. });
  156. } else {
  157. this.countdown = setTimeout(() => {
  158. this.setState({
  159. verification_text: parseInt(this.state.verification_text) - 1 + ''
  160. });
  161. this.CountDown();
  162. }, 1000);
  163. }
  164. }
  165. //绑定手机号
  166. clickOK() {
  167. if (!commonutil.isPoneAvailable(this.state.phone_num)) {
  168. ToastAndroid.show('请输入正确的手机号', ToastAndroid.SHORT);
  169. return;
  170. }
  171. if (this.state.verification_code == '') {
  172. ToastAndroid.show('请输入验证码', ToastAndroid.SHORT);
  173. return;
  174. }
  175. if (this.state.http_verification_code == this.state.verification_code) {
  176. let option = {
  177. method: 'PUT', //请求方法
  178. //请求体
  179. body: {
  180. mobile: this.state.phone_num,
  181. sign: this.state.verification_code
  182. }
  183. };
  184. http_user.bind_phone(option).then((result) => {
  185. if (result.code == 200) {
  186. this.setState({
  187. phone_bind_result: true
  188. });
  189. ToastAndroid.show(result.message, ToastAndroid.SHORT);
  190. } else {
  191. this.setState({
  192. phone_bind_result: false
  193. });
  194. ToastAndroid.show(result.message, ToastAndroid.SHORT);
  195. }
  196. });
  197. } else {
  198. ToastAndroid.show('验证码不正确', ToastAndroid.SHORT);
  199. }
  200. }
  201. backresult() {
  202. this.props.navigation.state.params.bind_phone_back(this.state.phone_num, this.state.phone_bind_result);
  203. this.props.navigation.goBack();
  204. }
  205. }
  206. const styles = StyleSheet.create({
  207. wrapper: {
  208. flex: 1
  209. },
  210. jumpText: {
  211. color: '#3e3e3e',
  212. fontSize: 16,
  213. marginRight: 4
  214. },
  215. jump: {
  216. // width: Dimensions.width,
  217. flex: 2,
  218. alignItems: 'center',
  219. justifyContent: 'center',
  220. paddingHorizontal: '8%'
  221. },
  222. jumpBtn: {
  223. flexDirection: 'row',
  224. alignItems: 'center',
  225. justifyContent: 'center'
  226. },
  227. phoneNumberBox: {
  228. flex: 2,
  229. paddingHorizontal: '8%'
  230. },
  231. phoneNumber: {
  232. color: '#3e3e3e',
  233. fontSize: 18,
  234. marginBottom: 10
  235. },
  236. phoneText: {
  237. width: '100%',
  238. height: Dimensions.getHeight(50),
  239. borderRadius: 25,
  240. backgroundColor: '#f3f3f3'
  241. },
  242. signNumberBox: {
  243. flex: 2,
  244. paddingHorizontal: '8%'
  245. },
  246. signNumberLine2: {
  247. flexDirection: 'row',
  248. width: Dimensions.width
  249. },
  250. signText: {
  251. width: '54%',
  252. height: Dimensions.getHeight(50),
  253. borderRadius: 25,
  254. backgroundColor: '#f3f3f3',
  255. marginRight: 9
  256. },
  257. getSign: {
  258. width: 105,
  259. height: Dimensions.getHeight(50),
  260. borderRadius: 25,
  261. backgroundColor: '#38da84',
  262. lineHeight: Dimensions.getHeight(50),
  263. color: '#fff',
  264. fontSize: 16,
  265. textAlign: 'center'
  266. },
  267. loginIn: {
  268. flex: 3,
  269. paddingHorizontal: '8%'
  270. },
  271. loginText: {
  272. width: '100%',
  273. height: Dimensions.getHeight(50),
  274. backgroundColor: '#63aeff',
  275. textAlign: 'center',
  276. lineHeight: Dimensions.getHeight(50),
  277. color: '#fff',
  278. fontSize: 20,
  279. borderRadius: 25
  280. },
  281. wechatLogin: {
  282. flex: 3,
  283. flexDirection: 'row',
  284. paddingHorizontal: '33.6%',
  285. alignItems: 'center',
  286. justifyContent: 'center'
  287. },
  288. wechatLoginText: {
  289. fontSize: 16,
  290. color: '#3e3e3e',
  291. marginHorizontal: 6
  292. }
  293. });