clientInputPatent.jsx 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. import React from 'react';
  2. import { Icon, Modal, Button, Form, message, Input, Spin, Select, DatePicker } from 'antd';
  3. import './comprehensive.less';
  4. import { patentGetList, patentTypeList } from '../../../dataDic.js';
  5. import ajax from 'jquery/src/ajax/xhr.js'
  6. import $ from 'jquery/src/ajax';
  7. const PatentAddFrom = Form.create()(React.createClass({
  8. getInitialState() {
  9. return {
  10. loading: false,
  11. patentGetOption: [],
  12. patentTypeOption: [],
  13. companyOption:[]
  14. };
  15. },
  16. getCompanyList() {
  17. this.setState({
  18. loading: true
  19. });
  20. $.ajax({
  21. method: "get",
  22. dataType: "json",
  23. crossDomain: false,
  24. url: globalConfig.context + "/techservice/patent/getUnitNames",
  25. success: function (data) {
  26. if (data.error.length || !data.data) {
  27. return;
  28. };
  29. let _me = this;
  30. for (var item in data.data) {
  31. _me.state.companyOption.push(
  32. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  33. )
  34. };
  35. }.bind(this),
  36. }).always(function () {
  37. this.setState({
  38. loading: false
  39. });
  40. }.bind(this));
  41. },
  42. componentWillMount() {
  43. let _me = this;
  44. patentGetList.map(function (item) {
  45. _me.state.patentGetOption.push(
  46. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  47. )
  48. });
  49. patentTypeList.map(function (item) {
  50. _me.state.patentTypeOption.push(
  51. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  52. )
  53. });
  54. this.getCompanyList();
  55. },
  56. handleSubmit(e) {
  57. e.preventDefault();
  58. this.props.form.validateFields((err, values) => {
  59. if (!err) {
  60. this.props.spinState(true);
  61. $.ajax({
  62. method: "POST",
  63. dataType: "json",
  64. crossDomain: false,
  65. url: globalConfig.context + "/techservice/patent/managerInputPatent",
  66. data: {
  67. "uid":this.state.companyId,
  68. "patentNumber": values.patentNumber,
  69. "patentName": values.patentName,
  70. "patentCatagory": this.state.patentCatagory,
  71. "obtailWay": this.state.obtailWay,
  72. "sortNumber": values.sortNumber,
  73. "authorizationNumber": values.authorizationNumber,
  74. "authorizationDate": this.state.authorizationDate
  75. }
  76. }).done(function (data) {
  77. if (!data.error.length) {
  78. message.success('保存成功!');
  79. } else {
  80. message.warning(data.error[0].message);
  81. }
  82. }.bind(this)).always(function () {
  83. this.props.spinState(false);
  84. this.props.closeModal();
  85. this.props.form.resetFields();
  86. }.bind(this));
  87. }
  88. });
  89. },
  90. checkIdcardnum(rule, value, callback) {
  91. if (!/(^\d{15}$)|(^\d{17}(\d|X)$)/.test(value)) {
  92. callback('请输入正确的身份证号!');
  93. } else {
  94. callback();
  95. }
  96. },
  97. render() {
  98. const FormItem = Form.Item;
  99. const { getFieldDecorator } = this.props.form;
  100. const formItemLayout = {
  101. labelCol: { span: 3 },
  102. wrapperCol: { span: 12 },
  103. };
  104. const _me = this;
  105. return (
  106. <Form horizontal onSubmit={this.handleSubmit} className="person-form">
  107. <FormItem
  108. {...formItemLayout}
  109. label="选择公司"
  110. >
  111. {getFieldDecorator('companyId', {
  112. rules: [{ required: true, message: '请选择,公司不能为空!' }]
  113. })(
  114. <Select placeholder="请选择公司" style={{ width: 200 }}
  115. onChange={(e) => { this.state.companyId = e; }}>
  116. {this.state.companyOption}
  117. </Select>
  118. )}
  119. </FormItem>
  120. <FormItem
  121. {...formItemLayout}
  122. label="专利编号"
  123. >
  124. {getFieldDecorator('patentNumber', {
  125. rules: [{ required: true, message: '请输入,专利编号不能为空!' }]
  126. })(
  127. <Input placeholder="请输入专利编号" />
  128. )}
  129. </FormItem>
  130. <FormItem
  131. {...formItemLayout}
  132. label="专利名称"
  133. >
  134. {getFieldDecorator('patentName', {
  135. rules: [{ required: true, message: '请输入,专利名称不能为空!' }]
  136. })(
  137. <Input placeholder="请输入专利名称" />
  138. )}
  139. </FormItem>
  140. <FormItem
  141. {...formItemLayout}
  142. label="排序号"
  143. >
  144. {getFieldDecorator('sortNumber', {
  145. rules: [{ required: true, message: '请输入,排序号不能为空!' }]
  146. })(
  147. <Input placeholder="请输入排序号" />
  148. )}
  149. </FormItem>
  150. <FormItem
  151. {...formItemLayout}
  152. label="专利类型"
  153. >
  154. {getFieldDecorator('patentCatagory', {
  155. rules: [{ required: true, message: '请选择,专利类型不能为空!' }]
  156. })(
  157. <Select placeholder="请选择专利类型" style={{ width: 200 }}
  158. onChange={(e) => { this.state.patentCatagory = e; }}>
  159. {this.state.patentTypeOption}
  160. </Select>
  161. )}
  162. </FormItem>
  163. <FormItem
  164. {...formItemLayout}
  165. label="获得方式"
  166. >
  167. {getFieldDecorator('obtailWay', {
  168. rules: [{ required: true, message: '请选择,获得方式不能为空!' }]
  169. })(
  170. <Select placeholder="请选择获得方式" style={{ width: 200 }}
  171. onChange={(e) => { this.state.obtailWay = e; }}>
  172. {this.state.patentGetOption}
  173. </Select>
  174. )}
  175. </FormItem>
  176. <FormItem
  177. {...formItemLayout}
  178. label="授权号"
  179. >
  180. {getFieldDecorator('authorizationNumber', {
  181. rules: [{ required: true, message: '请输入,授权号不能为空!' }]
  182. })(
  183. <Input placeholder="请输入授权号" />
  184. )}
  185. </FormItem>
  186. <FormItem
  187. {...formItemLayout}
  188. label="授权日期"
  189. >
  190. {getFieldDecorator('authorizationDate', {
  191. rules: [{ required: true, message: '请选择,授权日期不能为空!' }]
  192. })(
  193. <DatePicker style={{ width: 200 }}
  194. onChange={(data,dataString)=>{ this.state.authorizationDate = dataString}}/>
  195. )}
  196. </FormItem>
  197. <FormItem>
  198. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  199. <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
  200. </FormItem>
  201. </Form >
  202. );
  203. },
  204. }));
  205. const PatentAdd = React.createClass({
  206. getInitialState() {
  207. return {
  208. visible: false,
  209. loading: false
  210. };
  211. },
  212. showModal() {
  213. this.setState({
  214. visible: true,
  215. });
  216. },
  217. handleOk() {
  218. this.setState({
  219. visible: false,
  220. });
  221. this.props.closeDesc(false);
  222. },
  223. handleCancel(e) {
  224. this.setState({
  225. visible: false,
  226. });
  227. this.props.closeDesc(false);
  228. },
  229. spinChange(e) {
  230. this.setState({
  231. loading: e
  232. });
  233. },
  234. render() {
  235. return (
  236. <div className="patent-addNew">
  237. <Button className="patent-addNew" type="primary" onClick={this.showModal}>新专利添加<Icon type="plus" /></Button>
  238. <Spin spinning={this.state.loading} className='spin-box'>
  239. <Modal title="新专利添加" visible={this.state.visible}
  240. onOk={this.handleOk} onCancel={this.handleCancel}
  241. width='720px'
  242. footer=''
  243. >
  244. <PatentAddFrom spinState={this.spinChange} closeModal={this.handleCancel} />
  245. </Modal>
  246. </Spin>
  247. </div>
  248. );
  249. },
  250. });
  251. export default PatentAdd;