base.jsx 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. import React from 'react';
  2. import { Input, Button, Select, Form, Radio, Upload, Icon, DatePicker, Spin } from 'antd';
  3. import './base.less';
  4. const FormItem = Form.Item;
  5. const Option = Select.Option;
  6. const RadioGroup = Radio.Group;
  7. const edulvlArr = ["高中", "大专", "本科", "硕士研究生", "博士研究生"];
  8. import weixin from '../../../../image/weixin-w.png';
  9. import qq from '../../../../image/qq-w.png';
  10. import weibo from '../../../../image/weibo-w.png';
  11. import card1 from '../../../../image/idcard1.jpg';
  12. import card2 from '../../../../image/idcard2.jpg';
  13. const BaseFrom = Form.create()(React.createClass({
  14. handleSubmit(e) {
  15. e.preventDefault();
  16. this.props.form.validateFields((err, values) => {
  17. if (!err) {
  18. console.log('Received values of form: ', values);
  19. }
  20. });
  21. },
  22. normFile(e) {
  23. if (Array.isArray(e)) {
  24. return e;
  25. }
  26. return e && e.fileList;
  27. },
  28. checkidNum(rule, value, callback) {
  29. const form = this.props.form;
  30. if (value && value !== form.getFieldValue('password')) {
  31. callback('Two passwords that you enter is inconsistent!');
  32. } else {
  33. callback();
  34. }
  35. },
  36. checkUpload(file) {
  37. const isJPG = file.type === 'image/jpeg';
  38. if (!isJPG) {
  39. callback('You can only upload JPG file!');
  40. }
  41. const isLt2M = file.size / 1024 / 1024 < 2;
  42. if (!isLt2M) {
  43. callback('Image must smaller than 2MB!');
  44. }
  45. return isJPG && isLt2M;
  46. },
  47. render() {
  48. const { getFieldDecorator } = this.props.form;
  49. const formItemLayout = {
  50. labelCol: { span: 3 },
  51. wrapperCol: { span: 12 },
  52. };
  53. return (
  54. <Form horizontal onSubmit={this.handleSubmit} className="base-form">
  55. <FormItem
  56. labelCol={{ span: 3 }}
  57. wrapperCol={{ span: 8 }}
  58. label="学历"
  59. >
  60. {getFieldDecorator('edulvl', {
  61. rules: [{
  62. required: true, message: '请选择您的学历!',
  63. }],
  64. })(
  65. <Select className="acc-edu-lvl">
  66. {
  67. edulvlArr.map(function (item, i) {
  68. return <Option key={i} value={item} >{item}</Option>
  69. })
  70. }
  71. </Select>
  72. )}
  73. </FormItem>
  74. <FormItem
  75. {...formItemLayout}
  76. label="出生日期"
  77. >
  78. {getFieldDecorator('birth', {
  79. rules: [{ type: 'object', required: true, message: '请选择日期!' }],
  80. })(
  81. <DatePicker />
  82. )}
  83. </FormItem>
  84. <FormItem wrapperCol={{ span: 21, offset: 3 }}>
  85. <p>请上传清晰的个人身份证正反面原件照片/扫描件 (不能截图、图片内容要求完整 ),</p>
  86. <p>要求2M 以下的jpg、jpeg、gif、png格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
  87. </FormItem>
  88. <FormItem
  89. {...formItemLayout}
  90. label="身份证"
  91. >
  92. {getFieldDecorator('upload', {
  93. rules: [{
  94. required: true, message: '请上传身份证照片!',
  95. }, {
  96. validator: this.checkUpload,
  97. }],
  98. valuePropName: 'fileList',
  99. normalize: this.normFile,
  100. })(
  101. <Upload name="idcard" action="/upload.do" listType="picture" onChange={this.handleUpload}>
  102. <Button type="ghost">
  103. <Icon type="upload" /> 点击选择文件
  104. </Button>
  105. </Upload>
  106. )}
  107. </FormItem>
  108. <FormItem wrapperCol={{ span: 21, offset: 3 }}>
  109. <p className="acc-title">示例:</p>
  110. <div className="idcard-img clearfix">
  111. <div>
  112. <div className="idcard-imgbox">
  113. <img src={card1} alt="" />
  114. </div>
  115. </div>
  116. <div>
  117. <div className="idcard-imgbox">
  118. <img src={card2} alt="" />
  119. </div>
  120. </div>
  121. </div>
  122. </FormItem>
  123. <FormItem wrapperCol={{ span: 12, offset: 3 }}>
  124. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  125. </FormItem>
  126. </Form >
  127. );
  128. },
  129. }));
  130. const Base = React.createClass({
  131. getInitialState() {
  132. return {
  133. loading: false,
  134. userid: '1234567',
  135. userphone: '13512345678'
  136. };
  137. },
  138. render() {
  139. return (
  140. <Spin spinning={this.state.loading} className='spin-box'>
  141. <div className="set-base">
  142. <div className="acc-detail">
  143. <p className="acc-title">您登录的账号</p>
  144. <p>阿凡提号: <span>{this.state.userid}</span></p>
  145. <p>登录手机号: <span>{this.state.userphone}</span></p>
  146. <div>
  147. <Button type="ghost">更换手机</Button>
  148. <Button type="primary">修改密码</Button>
  149. </div>
  150. </div>
  151. <div className="acc-bind">
  152. <p className="acc-title">绑定账号 <span>绑定后,可使用第三方账号直接登录阿凡提网</span></p>
  153. <p>
  154. <Button className="relateqq"><img src={qq} alt="" /> QQ账号登录</Button>
  155. <Button className="relateweibo"><img src={weibo} alt="" />微博账号登录</Button>
  156. <Button className="relateweixin"><img src={weixin} alt="" />微信账号登录</Button>
  157. </p>
  158. </div>
  159. <div className="acc-info">
  160. <p className="acc-title">身份信息 <span>提供正确的身份信息,有助于进行身份验证,提升信用形象</span></p>
  161. <BaseFrom />
  162. </div>
  163. </div>
  164. </Spin>
  165. )
  166. }
  167. });
  168. export default Base;