groupAccount.jsx 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. import React from 'react';
  2. import { Form, Input, Tooltip, Icon, Cascader, Select, Row, Col, Checkbox, Button } from 'antd';
  3. import "./group.less";
  4. const FormItem = Form.Item;
  5. const Option = Select.Option;
  6. const Group = Form.create()(React.createClass({
  7. getInitialState() {
  8. return {
  9. passwordDirty: false,
  10. };
  11. },
  12. handleSubmit(e) {
  13. e.preventDefault();
  14. this.props.form.validateFieldsAndScroll((err, values) => {
  15. if (!err) {
  16. console.log('Received values of form: ', values);
  17. }
  18. });
  19. },
  20. handlePasswordBlur(e) {
  21. const value = e.target.value;
  22. this.setState({ passwordDirty: this.state.passwordDirty || !!value });
  23. },
  24. checkPassowrd(rule, value, callback) {
  25. const form = this.props.form;
  26. if (value && value !== form.getFieldValue('password')) {
  27. callback('两次密码输入必须相同!');
  28. } else {
  29. callback();
  30. }
  31. },
  32. checkPhone(rule, value, callback){
  33. const form = this.props.form;
  34. if ( !(/^1[34578]\d{9}$/.test(value))) {
  35. callback('请输入正确的手机号码!');
  36. } else {
  37. callback();
  38. }
  39. },
  40. checkConfirm(rule, value, callback) {
  41. const form = this.props.form;
  42. if ( value.length < 6) {
  43. callback('密码长度必须大于或者等于6位!');
  44. };
  45. if (value && this.state.passwordDirty) {
  46. form.validateFields(['confirm'], { force: true });
  47. }
  48. callback();
  49. },
  50. render() {
  51. const { getFieldDecorator } = this.props.form;
  52. const formItemLayout = {
  53. labelCol: { span: 6 },
  54. wrapperCol: { span: 14 },
  55. };
  56. const tailFormItemLayout = {
  57. wrapperCol: {
  58. span: 14,
  59. offset: 6,
  60. },
  61. };
  62. return (
  63. <div className="group clearfix">
  64. <Form className="account-left" horizontal onSubmit={this.handleSubmit}>
  65. <FormItem
  66. {...formItemLayout}
  67. label="密码"
  68. extra={<span><Icon type="exclamation-circle" /> 建议字母、数字和符号两种以上组合,6-20个字符</span>}
  69. hasFeedback
  70. >
  71. {getFieldDecorator('password', {
  72. rules: [{
  73. required: true, message: '请输入密码!',
  74. }, {
  75. validator: this.checkConfirm,
  76. }],
  77. })(
  78. <Input type="password" onBlur={this.handlePasswordBlur} />
  79. )}
  80. </FormItem>
  81. <FormItem
  82. {...formItemLayout}
  83. label="确认密码"
  84. extra={<span><Icon type="exclamation-circle" /> 请再次输入密码</span>}
  85. hasFeedback
  86. >
  87. {getFieldDecorator('confirm', {
  88. rules: [{
  89. required: true, message: '请再次输入密码!',
  90. }, {
  91. validator: this.checkPassowrd,
  92. }],
  93. })(
  94. <Input type="password" />
  95. )}
  96. </FormItem>
  97. <FormItem
  98. {...formItemLayout}
  99. label="手机号码"
  100. hasFeedback
  101. extra={<span><Icon type="exclamation-circle" /> 请输入正确的手机号码</span>}
  102. >
  103. {getFieldDecorator('phone', {
  104. rules: [{ required: true, message: '请输入手机号码!' },{
  105. validator: this.checkPhone,
  106. }],
  107. })(
  108. <Input size="large" />
  109. )}
  110. </FormItem>
  111. <FormItem
  112. {...formItemLayout}
  113. label="验证码"
  114. extra={<span className="redFont"><Icon type="exclamation-circle" /> 看不清?点击图片更换验证码</span>}
  115. >
  116. <Row gutter={8}>
  117. <Col span={16}>
  118. {getFieldDecorator('captcha', {
  119. rules: [{ required: true, message: '请输入图片中的验证码' }],
  120. })(
  121. <Input size="large" />
  122. )}
  123. </Col>
  124. <Col span={8}>
  125. <Button size="large">图片</Button>
  126. </Col>
  127. </Row>
  128. </FormItem>
  129. <FormItem
  130. {...formItemLayout}
  131. label="手机验证码"
  132. extra={<span><Icon type="exclamation-circle" /> 点击获取后我们将发送验证码到上面手机号</span>}
  133. >
  134. <Row gutter={8}>
  135. <Col span={16}>
  136. {getFieldDecorator('phonecaptcha', {
  137. rules: [{ required: true, message: '请输入手机获取到的验证码' }],
  138. })(
  139. <Input size="large" />
  140. )}
  141. </Col>
  142. <Col span={8}>
  143. <Button size="large">获取验证码</Button>
  144. </Col>
  145. </Row>
  146. </FormItem>
  147. <FormItem
  148. {...formItemLayout}
  149. label="单位名称"
  150. hasFeedback
  151. extra={<span><Icon type="exclamation-circle" /> 请填写工商局注册的全称</span>}
  152. >
  153. {getFieldDecorator('company', {
  154. rules: [{ required: true, message: '请填写公司全称!' }],
  155. })(
  156. <Input size="large" />
  157. )}
  158. </FormItem>
  159. <FormItem
  160. {...formItemLayout}
  161. label="联系人"
  162. hasFeedback
  163. >
  164. {getFieldDecorator('user', {
  165. rules: [{ required: true, message: '请输入联系人姓名!' }],
  166. })(
  167. <Input size="large" />
  168. )}
  169. </FormItem>
  170. <FormItem {...tailFormItemLayout} style={{ marginBottom: 8 }}>
  171. {getFieldDecorator('agreement', {
  172. valuePropName: 'checked',
  173. })(
  174. <Checkbox>同意 <a> 阿凡提会员服务协议条款</a></Checkbox>
  175. )}
  176. </FormItem>
  177. <FormItem {...tailFormItemLayout}>
  178. <Button type="primary" htmlType="submit" size="large">提 交</Button>
  179. </FormItem>
  180. </Form>
  181. </div>
  182. );
  183. },
  184. }));
  185. export default Group;