clientInputPatent.jsx 7.9 KB

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