account.jsx 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. import React from 'react';
  2. import { Form, Input, Tooltip, Icon, Cascader, Select, Row, Col, Checkbox, Button, Spin } from 'antd';
  3. import "./account.less";
  4. import ajax from 'jquery/src/ajax/xhr.js'
  5. import $ from 'jquery/src/ajax';
  6. import weixin from '../../../image/weixin-w.png';
  7. import qq from '../../../image/qq-w.png';
  8. import weibo from '../../../image/weibo-w.png';
  9. const FormItem = Form.Item;
  10. const Option = Select.Option;
  11. const LoginContent = Form.create()(React.createClass({
  12. getInitialState() {
  13. return {
  14. passwordDirty: false,
  15. loading: false
  16. };
  17. },
  18. handleSubmit(e) {
  19. e.preventDefault();
  20. this.props.form.validateFieldsAndScroll((err, values) => {
  21. debugger
  22. if (!err) {
  23. this.setState({
  24. loading: true
  25. });
  26. $.ajax({
  27. method: "POST",
  28. dataType: "json",
  29. crossDomain: false,
  30. url: globalConfig.context + "/signin",
  31. data: { email: this.state.user, pwd: this.state.password }
  32. }).done(function (data) {
  33. if (!data.error.length) {
  34. window.location.href = "warning.html"
  35. } else {
  36. this.tips(data.error[0].message);
  37. }
  38. }.bind(this)).always(function () {
  39. this.setState({
  40. loading: false
  41. });
  42. }.bind(this));
  43. }
  44. });
  45. },
  46. handlePasswordBlur(e) {
  47. const value = e.target.value;
  48. this.setState({ passwordDirty: this.state.passwordDirty || !!value });
  49. },
  50. checkPassowrd(rule, value, callback) {
  51. const form = this.props.form;
  52. if (value && value !== form.getFieldValue('password')) {
  53. callback('两次密码输入必须相同!');
  54. } else {
  55. callback();
  56. }
  57. },
  58. checkPhone(rule, value, callback) {
  59. const form = this.props.form;
  60. if (!(/^1[34578]\d{9}$/.test(value))) {
  61. callback('请输入正确的手机号码!');
  62. } else {
  63. callback();
  64. }
  65. },
  66. checkConfirm(rule, value, callback) {
  67. const form = this.props.form;
  68. if (value.length < 6) {
  69. callback('密码长度必须大于或者等于6位!');
  70. };
  71. if (value && this.state.passwordDirty) {
  72. form.validateFields(['confirm'], { force: true });
  73. }
  74. callback();
  75. },
  76. render() {
  77. const { getFieldDecorator } = this.props.form;
  78. const formItemLayout = {
  79. labelCol: { span: 6 },
  80. wrapperCol: { span: 14 },
  81. };
  82. const tailFormItemLayout = {
  83. wrapperCol: {
  84. span: 14,
  85. offset: 6,
  86. },
  87. };
  88. return (
  89. <div className="account-content clearfix">
  90. <Spin spinning={this.state.loading} >
  91. <Form className="account-left" horizontal onSubmit={this.handleSubmit}>
  92. <FormItem
  93. {...formItemLayout}
  94. label="密码"
  95. extra={<span><Icon type="exclamation-circle" /> 建议字母、数字和符号两种以上组合,6-20个字符</span>}
  96. hasFeedback
  97. >
  98. {getFieldDecorator('password', {
  99. rules: [{
  100. required: true, message: '请输入密码!',
  101. }, {
  102. validator: this.checkConfirm,
  103. }],
  104. })(
  105. <Input type="password" onBlur={this.handlePasswordBlur} />
  106. )}
  107. </FormItem>
  108. <FormItem
  109. {...formItemLayout}
  110. label="确认密码"
  111. extra={<span><Icon type="exclamation-circle" /> 请再次输入密码</span>}
  112. hasFeedback
  113. >
  114. {getFieldDecorator('confirm', {
  115. rules: [{
  116. required: true, message: '请再次输入密码!',
  117. }, {
  118. validator: this.checkPassowrd,
  119. }],
  120. })(
  121. <Input type="password" />
  122. )}
  123. </FormItem>
  124. <FormItem
  125. {...formItemLayout}
  126. label="手机号码"
  127. extra={<span><Icon type="exclamation-circle" /> 请输入正确的手机号码</span>}
  128. hasFeedback
  129. >
  130. {getFieldDecorator('phone', {
  131. rules: [{ required: true, message: '请输入手机号码!' },
  132. {
  133. validator: this.checkPhone,
  134. }],
  135. })(
  136. <Input size="large" />
  137. )}
  138. </FormItem>
  139. <FormItem
  140. {...formItemLayout}
  141. label="验证码"
  142. extra={<span className="redFont"><Icon type="exclamation-circle" /> 看不清?点击图片更换验证码</span>}
  143. >
  144. <Row gutter={8}>
  145. <Col span={16}>
  146. {getFieldDecorator('captcha', {
  147. rules: [{ required: true, message: '请输入图片中的验证码' }],
  148. })(
  149. <Input size="large" />
  150. )}
  151. </Col>
  152. <Col span={8}>
  153. <Button size="large">图片</Button>
  154. </Col>
  155. </Row>
  156. </FormItem>
  157. <FormItem
  158. {...formItemLayout}
  159. label="手机验证码"
  160. extra={<span><Icon type="exclamation-circle" /> 点击获取后我们将发送验证码到上面手机号</span>}
  161. >
  162. <Row gutter={8}>
  163. <Col span={16}>
  164. {getFieldDecorator('phonecaptcha', {
  165. rules: [{ required: true, message: '请输入手机获取到的验证码' }],
  166. })(
  167. <Input size="large" />
  168. )}
  169. </Col>
  170. <Col span={8}>
  171. <Button size="large">获取验证码</Button>
  172. </Col>
  173. </Row>
  174. </FormItem>
  175. <FormItem {...tailFormItemLayout} style={{ marginBottom: 8 }}>
  176. {getFieldDecorator('agreement', {
  177. valuePropName: 'checked',
  178. })(
  179. <Checkbox>同意 <a> 阿凡提会员服务协议条款</a></Checkbox>
  180. )}
  181. </FormItem>
  182. <FormItem {...tailFormItemLayout}>
  183. <Button type="primary" htmlType="submit" size="large">提 交</Button>
  184. </FormItem>
  185. </Form>
  186. <div className="account-right">
  187. <p className="haveID title">已有账号 <Icon type="right" /> <a href="./login.html">直接登录</a></p>
  188. <div className="relateID">
  189. <p className="title">关联账号</p>
  190. <p><Button className="relateqq"><img src={qq} alt="" /> QQ账号登录</Button></p>
  191. <p><Button className="relateweibo"><img src={weibo} alt="" />微博账号登录</Button></p>
  192. <p><Button className="relateweixin"><img src={weixin} alt="" />微信账号登录</Button></p>
  193. </div>
  194. <div className="about">
  195. <p className="title">关于阿凡提通行证</p>
  196. <p className="about-content">
  197. 阿凡提通行证推出的统一账号管理系统,注册阿凡提通行证的用户可以使用同一通行证账号及密码登录阿凡提网及其他关联互联网平台。
  198. </p>
  199. </div>
  200. </div>
  201. </Spin>
  202. </div>
  203. );
  204. },
  205. }));
  206. export default LoginContent;