edu.jsx 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. import React from 'react';
  2. import { Input, Button, Form, Select, Upload, Icon, Spin, message } from 'antd';
  3. import './edu.less';
  4. import EduPfsSelect from './eduPfsSelect.jsx';
  5. import YearSelect from '../../yearSelect.jsx';
  6. const FormItem = Form.Item;
  7. const Option = Select.Option;
  8. const edulvlArr = ["高中", "大专", "本科", "硕士研究生", "博士研究生"];
  9. function getBase64(img, callback) {
  10. const reader = new FileReader();
  11. reader.addEventListener('load', () => callback(reader.result));
  12. reader.readAsDataURL(img);
  13. };
  14. function beforeUpload(file) {
  15. const isJPG = file.type === 'image/jpeg';
  16. if (!isJPG) {
  17. message.error('You can only upload JPG file!');
  18. }
  19. const isLt2M = file.size / 1024 / 1024 < 2;
  20. if (!isLt2M) {
  21. message.error('Image must smaller than 2MB!');
  22. }
  23. return isJPG && isLt2M;
  24. };
  25. class Avatar extends React.Component {
  26. constructor(props) {
  27. super(props);
  28. this.state = {
  29. imageUrl: ''
  30. }
  31. }
  32. handleChange(info) {
  33. if (info.file.status === 'done') {
  34. // Get this url from response in real world.
  35. getBase64(info.file.originFileObj, imageUrl => this.setState({ imageUrl }));
  36. }
  37. }
  38. render() {
  39. const imageUrl = this.state.imageUrl;
  40. return (
  41. <Upload
  42. className="avatar-uploader"
  43. name={this.props.name}
  44. showUploadList={false}
  45. action="/upload.do"
  46. beforeUpload={beforeUpload}
  47. onChange={this.handleChange}
  48. >
  49. {
  50. imageUrl ?
  51. <img src={imageUrl} role="presentation" id={this.props.name} /> :
  52. <Icon type="plus" className="avatar-uploader-trigger" />
  53. }
  54. </Upload>
  55. );
  56. }
  57. };
  58. const EduFrom = Form.create()(React.createClass({
  59. getInitialState() {
  60. return {
  61. loading: false,
  62. };
  63. },
  64. handleSubmit(e) {
  65. e.preventDefault();
  66. this.props.form.validateFields((err, values) => {
  67. if (!err) {
  68. console.log('Received values of form: ', values);
  69. }
  70. });
  71. },
  72. handleyear(e){
  73. console.log(e);
  74. },
  75. normFile(e) {
  76. if (Array.isArray(e)) {
  77. return e;
  78. }
  79. return e && e.fileList;
  80. },
  81. introChange(e) {
  82. console.log(e);
  83. },
  84. professional(e1,e2){
  85. console.log(e1,e2);
  86. },
  87. render() {
  88. const { getFieldDecorator } = this.props.form;
  89. const formItemLayout = {
  90. labelCol: { span: 4 },
  91. wrapperCol: { span: 12 },
  92. };
  93. const _me = this;
  94. return (
  95. <Form horizontal onSubmit={this.handleSubmit} className="edu-form">
  96. <FormItem
  97. labelCol={{ span: 4 }}
  98. wrapperCol={{ span: 6 }}
  99. label="学历"
  100. >
  101. {getFieldDecorator('edulvl')(
  102. <Select className="acc-edu-lvl">
  103. {
  104. edulvlArr.map(function (item, i) {
  105. return <Option key={i} value={item} >{item}</Option>
  106. })
  107. }
  108. </Select>
  109. )}
  110. </FormItem>
  111. <FormItem
  112. {...formItemLayout}
  113. label="专业"
  114. >
  115. {getFieldDecorator('edupfs')(
  116. <EduPfsSelect Professional={this.professional}/>
  117. )}
  118. </FormItem>
  119. <FormItem
  120. {...formItemLayout}
  121. label="毕业学校"
  122. >
  123. {getFieldDecorator('schoolname')(
  124. <Input />
  125. )}
  126. </FormItem>
  127. <FormItem
  128. {...formItemLayout}
  129. labelCol={{ span: 4 }}
  130. wrapperCol={{ span: 4 }}
  131. label="毕业时间"
  132. >
  133. {getFieldDecorator('schooltime')(
  134. <YearSelect handleyear={this.handleyear}/>
  135. )}
  136. </FormItem>
  137. <FormItem
  138. {...formItemLayout}
  139. label="学历证书"
  140. hasFeedback
  141. >
  142. {getFieldDecorator('eduimg')(
  143. <Avatar name="eduimg"/>
  144. )}
  145. </FormItem>
  146. <FormItem
  147. {...formItemLayout}
  148. label="学历证书编号"
  149. >
  150. {getFieldDecorator('edunum')(
  151. <Input />
  152. )}
  153. </FormItem>
  154. <FormItem
  155. {...formItemLayout}
  156. label="学位证书"
  157. hasFeedback
  158. >
  159. {getFieldDecorator('degreeimg')(
  160. <Avatar name="degreeimg"/>
  161. )}
  162. </FormItem>
  163. <FormItem
  164. {...formItemLayout}
  165. label="学历证书编号"
  166. >
  167. {getFieldDecorator('degreenum')(
  168. <Input />
  169. )}
  170. </FormItem>
  171. <div className="set-explain">
  172. <p>要求2M 以下的jpg、jpeg格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
  173. </div>
  174. <FormItem wrapperCol={{ span: 12, offset: 3 }}>
  175. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  176. </FormItem>
  177. </Form >
  178. );
  179. },
  180. }));
  181. const Person = React.createClass({
  182. getInitialState() {
  183. return {
  184. loading: false
  185. };
  186. },
  187. render() {
  188. return (
  189. <Spin spinning={this.state.loading} className='spin-box'>
  190. <div className="set-edu">
  191. <div className="acc-detail">
  192. <p className="acc-title">最高学历</p>
  193. <EduFrom />
  194. </div>
  195. </div>
  196. </Spin>
  197. )
  198. }
  199. });
  200. export default Person;