tech.jsx 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. import React from 'react';
  2. import { Input, Button, Form, Select, Icon, Spin, InputNumber, Tag } from 'antd';
  3. import './tech.less';
  4. import TechSelect from './techSelect.jsx';
  5. const FormItem = Form.Item;
  6. const Option = Select.Option;
  7. const edulvlArr = ["高中", "大专", "本科", "硕士研究生", "博士研究生"];
  8. const TechFrom = Form.create()(React.createClass({
  9. getInitialState() {
  10. return {
  11. loading: false,
  12. techzoneArr: [],
  13. havetechzone: [],
  14. skillArr: [],
  15. haveskill: []
  16. };
  17. },
  18. handleSubmit(e) {
  19. e.preventDefault();
  20. this.props.form.validateFields((err, values) => {
  21. if (!err) {
  22. console.log('Received values of form: ', values);
  23. }
  24. });
  25. },
  26. techzone(x, y, z) {
  27. this.state.selecttech = x + '/' + y + '/' + z;
  28. },
  29. addtechzone(e) {
  30. let _me = this;
  31. let newArr = _me.state.techzoneArr;
  32. if (this.state.selecttech !== undefined) {
  33. if (_me.state.techzoneArr.length > 0) {
  34. let thebool = true;
  35. _me.state.techzoneArr.map(function (item, i) {
  36. if (item === _me.state.selecttech) {
  37. thebool = false
  38. };
  39. });
  40. if (thebool) {
  41. newArr = _me.state.techzoneArr.concat(_me.state.selecttech);
  42. }
  43. } else if (_me.state.techzoneArr.length === 0) {
  44. newArr = _me.state.techzoneArr.concat(_me.state.selecttech);
  45. }
  46. this.setState({
  47. techzoneArr: newArr
  48. });
  49. };
  50. },
  51. deletetechzone(e) {
  52. let _me = this.state;
  53. let newArr = [];
  54. _me.techzoneArr.map(function (item, i) {
  55. if (item !== e) {
  56. newArr.push(item);
  57. }
  58. });
  59. this.setState({
  60. techzoneArr:newArr
  61. })
  62. },
  63. addskill(e) {
  64. let _me = this;
  65. let theskill = _me.props.form.getFieldValue('skill')
  66. if (theskill !== undefined) {
  67. if (_me.state.skillArr.length > 0) {
  68. let thebool = true;
  69. _me.state.skillArr.map(function (item, i) {
  70. if (item === theskill) {
  71. thebool = false
  72. };
  73. });
  74. if (thebool) {
  75. _me.state.skillArr.push(theskill);
  76. }
  77. } else if (_me.state.skillArr.length === 0) {
  78. _me.state.skillArr.push(theskill);
  79. }
  80. this.setState({
  81. haveskill: _me.state.skillArr
  82. });
  83. };
  84. console.log(_me.state.skillArr);
  85. },
  86. deleteskill(e) {
  87. let _me = this.state;
  88. _me.skillArr.map(function (item, i) {
  89. if (item === e) {
  90. _me.skillArr.splice(i, 1);
  91. }
  92. });
  93. console.log(_me.skillArr);
  94. },
  95. render() {
  96. const { getFieldDecorator } = this.props.form;
  97. const formItemLayout = {
  98. labelCol: { span: 4 },
  99. wrapperCol: { span: 12 },
  100. };
  101. const _me = this;
  102. return (
  103. <Form horizontal onSubmit={this.handleSubmit} className="tech-form">
  104. <FormItem
  105. labelCol={{ span: 4 }}
  106. wrapperCol={{ span: 6 }}
  107. label="技术人员数量"
  108. >
  109. {getFieldDecorator('techpeople')(
  110. <div>
  111. <InputNumber /><span>人</span>
  112. </div>
  113. )}
  114. </FormItem>
  115. <FormItem
  116. labelCol={{ span: 4 }}
  117. wrapperCol={{ span: 14 }}
  118. label="重点研究领域"
  119. >
  120. {getFieldDecorator('techzone')(
  121. <div>
  122. <TechSelect techzone={this.techzone} />
  123. <Button type="primary" onClick={this.addtechzone}>添加</Button>
  124. </div>
  125. )}
  126. </FormItem>
  127. <div className="set-explain">
  128. {
  129. this.state.techzoneArr.map(function (item, i) {
  130. return <Tag key={i} closable afterClose={_me.deletetechzone.bind(this, item)}>{item}</Tag>
  131. }.bind(this))
  132. }
  133. </div>
  134. <FormItem
  135. labelCol={{ span: 4 }}
  136. wrapperCol={{ span: 14 }}
  137. label="擅长能力"
  138. >
  139. {getFieldDecorator('skill')(
  140. <div>
  141. 擅长 <Input />的研究
  142. <Button type="primary" onClick={this.addskill}>添加</Button>
  143. </div>
  144. )}
  145. </FormItem>
  146. <div className="set-explain">
  147. {
  148. this.state.haveskill.map(function (item, i) {
  149. return <Tag key={item} closable onClose={_me.deleteskill.bind(this, item)}>{item}</Tag>
  150. }.bind(this))
  151. }
  152. </div>
  153. <FormItem wrapperCol={{ span: 12, offset: 3 }}>
  154. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  155. </FormItem>
  156. </Form >
  157. );
  158. },
  159. }));
  160. const Person = React.createClass({
  161. getInitialState() {
  162. return {
  163. loading: false
  164. };
  165. },
  166. render() {
  167. return (
  168. <Spin spinning={this.state.loading} className='spin-box'>
  169. <div className="set-tech">
  170. <div className="acc-title">
  171. <p><span>完善研究领域与擅长能力可加入平台专家,承接技术难题!</span></p>
  172. </div>
  173. <TechFrom />
  174. </div>
  175. </Spin>
  176. )
  177. }
  178. });
  179. export default Person;