Login.js 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. /*
  2. * 登录
  3. */
  4. import React, { Component } from 'react';
  5. import { StyleSheet, Text, View, Image, TouchableOpacity, StatusBar, ToastAndroid, TextInput } from 'react-native';
  6. import BasePage from './BasePage';
  7. import Dimensions from './utils/dimensions';
  8. import ShopBox from './components/ShopBox';
  9. import TopicTitle from './components/TopicTitle';
  10. import ScrollRow from './components/ScrollRow';
  11. import DeviceInfo from 'react-native-device-info';
  12. import commonutil from './utils/commonutil';
  13. import http_user from './services/user';
  14. import wechat from './utils/wechat';
  15. export default class Login extends BasePage {
  16. state = {
  17. phone_num: '',
  18. verification_text: '获取验证码',
  19. verification_code: '9999',
  20. http_verification_code: '9999',
  21. deviceCode: ''
  22. };
  23. render() {
  24. return (
  25. <View style={styles.wrapper}>
  26. <StatusBar backgroundColor={'white'} translucent={true} barStyle={'dark-content'} />
  27. <View style={styles.jump}>
  28. <TouchableOpacity style={styles.jumpBtn}>
  29. <Text style={styles.jumpText}>跳过</Text>
  30. <Image source={require('./images/common/arrowRight.png')} />
  31. </TouchableOpacity>
  32. </View>
  33. <View style={styles.phoneNumberBox}>
  34. <Text style={styles.phoneNumber}>手机号</Text>
  35. <TextInput
  36. style={styles.phoneText}
  37. onChangeText={(text) => this.setState({ phone_num: text })}
  38. value={this.state.phone_num}
  39. placeholder={'请输入手机号'}
  40. />
  41. </View>
  42. <View style={styles.signNumberBox}>
  43. <Text style={styles.phoneNumber}>验证码</Text>
  44. <View style={styles.signNumberLine2}>
  45. <TextInput
  46. style={styles.signText}
  47. onChangeText={(text) => this.setState({ verification_code: text })}
  48. value={this.state.verification_code}
  49. placeholder={'请输入验证码'}
  50. />
  51. <TouchableOpacity onPress={this.getVerification.bind(this)}>
  52. <Text style={styles.getSign}> {this.state.verification_text}</Text>
  53. </TouchableOpacity>
  54. </View>
  55. </View>
  56. <View style={styles.loginIn}>
  57. <Text style={styles.loginText} onPress={this.clickOK.bind(this)}>
  58. 登录
  59. </Text>
  60. </View>
  61. <View style={styles.wechatLogin}>
  62. <Image source={require('./images/common/wechat.png')} />
  63. <Text style={styles.wechatLoginText} onPress={this.wechatLogin.bind(this)}>
  64. 微信登录
  65. </Text>
  66. <Image source={require('./images/common/arrowRight.png')} />
  67. </View>
  68. </View>
  69. );
  70. }
  71. componentWillMount() {
  72. console.log('================================================'); // e.g US
  73. console.log('Device getUniqueID', DeviceInfo.getUniqueID()); // e.g US
  74. console.log('Device getSerialNumber', DeviceInfo.getSerialNumber()); // e.g US
  75. console.log('================================================'); // e.g US
  76. this.setState({
  77. deviceCode: DeviceInfo.getUniqueID() + DeviceInfo.getSerialNumber()
  78. });
  79. }
  80. getVerification() {
  81. if (this.state.verification_text === '获取验证码') {
  82. if (commonutil.isPoneAvailable(this.state.phone_num)) {
  83. http_user.getVerificationCode(this.state.phone_num).then((result) => {
  84. if (result.code != 200) {
  85. ToastAndroid.show(result.message, ToastAndroid.SHORT);
  86. return;
  87. } else {
  88. console.log('====================================');
  89. console.log(result.data);
  90. console.log('====================================');
  91. this.setState({
  92. http_verification_code: result.data
  93. });
  94. }
  95. this.setState({
  96. verification_text: '60'
  97. });
  98. this.CountDown();
  99. });
  100. } else {
  101. ToastAndroid.show('请输入正确的手机号', ToastAndroid.SHORT);
  102. }
  103. } else {
  104. }
  105. }
  106. CountDown() {
  107. if (parseInt(this.state.verification_text) == 0) {
  108. this.setState({
  109. verification_text: '获取验证码'
  110. });
  111. } else {
  112. setTimeout(() => {
  113. this.setState({
  114. verification_text: parseInt(this.state.verification_text) - 1 + ''
  115. });
  116. this.CountDown();
  117. }, 1000);
  118. }
  119. }
  120. clickOK() {
  121. if (!commonutil.isPoneAvailable(this.state.phone_num)) {
  122. ToastAndroid.show('请输入正确的手机号', ToastAndroid.SHORT);
  123. return;
  124. }
  125. if (this.state.verification_code == '') {
  126. ToastAndroid.show('请输入验证码', ToastAndroid.SHORT);
  127. return;
  128. }
  129. if (this.state.http_verification_code == this.state.verification_code) {
  130. let option = {
  131. method: 'POST', //请求方法
  132. //请求体
  133. body: {
  134. mobile: this.state.phone_num,
  135. sign: this.state.verification_code,
  136. channel: '006',
  137. deviceCode: this.state.deviceCode
  138. }
  139. };
  140. http_user.mobileLoginAndReg(option).then((result) => {
  141. if (result.code == 200) {
  142. //登陆成功了,可以存储用户数据到本地
  143. this.clearPageToNext('SchoolAge');
  144. } else {
  145. ToastAndroid.show(result.message, ToastAndroid.SHORT);
  146. }
  147. });
  148. } else {
  149. ToastAndroid.show('验证码不正确', ToastAndroid.SHORT);
  150. }
  151. }
  152. wechatLogin() {
  153. console.log('this.state.deviceCode:' + this.state.deviceCode);
  154. wechat.wechatLogin((user) => {
  155. let option = {
  156. method: 'POST',
  157. body: {
  158. channel: '006',
  159. deviceCode: this.state.deviceCode,
  160. openId: user['openid'],
  161. unionId: user['unionid'],
  162. avatar: user['province'] + user['city'],
  163. sex: +user['sex'],
  164. nickName: user['nickname']
  165. }
  166. };
  167. http_user.wechatLogin(option).then((result) => {
  168. if (result.code == 200) {
  169. //登陆成功了,可以存储用户数据到本地
  170. this.clearPageToNext('SchoolAge');
  171. } else {
  172. ToastAndroid.show(result.message, ToastAndroid.SHORT);
  173. }
  174. console.log('result-------:' + result);
  175. });
  176. });
  177. }
  178. }
  179. const styles = StyleSheet.create({
  180. wrapper: {
  181. flex: 1
  182. },
  183. jumpText: {
  184. color: '#3e3e3e',
  185. fontSize: 16,
  186. marginRight: 4
  187. },
  188. jump: {
  189. // width: Dimensions.width,
  190. flex: 2,
  191. alignItems: 'flex-end',
  192. justifyContent: 'center',
  193. paddingHorizontal: '8%'
  194. },
  195. jumpBtn: {
  196. flexDirection: 'row',
  197. alignItems: 'center',
  198. justifyContent: 'center'
  199. },
  200. phoneNumberBox: {
  201. flex: 2,
  202. paddingHorizontal: '8%'
  203. },
  204. phoneNumber: {
  205. color: '#3e3e3e',
  206. fontSize: 18,
  207. marginBottom: 10
  208. },
  209. phoneText: {
  210. width: '100%',
  211. height: Dimensions.getHeight(50),
  212. borderRadius: 25,
  213. backgroundColor: '#f3f3f3'
  214. },
  215. signNumberBox: {
  216. flex: 2,
  217. paddingHorizontal: '8%'
  218. },
  219. signNumberLine2: {
  220. flexDirection: 'row',
  221. width: Dimensions.width
  222. },
  223. signText: {
  224. width: '54%',
  225. height: Dimensions.getHeight(50),
  226. borderRadius: 25,
  227. backgroundColor: '#f3f3f3',
  228. marginRight: 9
  229. },
  230. getSign: {
  231. width: 105,
  232. height: Dimensions.getHeight(50),
  233. borderRadius: 25,
  234. backgroundColor: '#38da84',
  235. lineHeight: Dimensions.getHeight(50),
  236. color: '#fff',
  237. fontSize: 16,
  238. textAlign: 'center'
  239. },
  240. loginIn: {
  241. flex: 3,
  242. paddingHorizontal: '8%'
  243. },
  244. loginText: {
  245. width: '100%',
  246. height: Dimensions.getHeight(50),
  247. backgroundColor: '#63aeff',
  248. textAlign: 'center',
  249. lineHeight: Dimensions.getHeight(50),
  250. color: '#fff',
  251. fontSize: 20,
  252. borderRadius: 25
  253. },
  254. wechatLogin: {
  255. flex: 3,
  256. flexDirection: 'row',
  257. paddingHorizontal: '33.6%',
  258. alignItems: 'center',
  259. justifyContent: 'center'
  260. },
  261. wechatLoginText: {
  262. fontSize: 16,
  263. color: '#3e3e3e',
  264. marginHorizontal: 6
  265. }
  266. });