contractAdd.jsx 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. import React from 'react';
  2. import { Icon, Modal, Button, Form, message, Input, Spin, Select, Checkbox, InputNumber } from 'antd';
  3. import './contract.less';
  4. import { companySearch } from '../../../tools.js';
  5. import ajax from 'jquery/src/ajax/xhr.js'
  6. import $ from 'jquery/src/ajax';
  7. const ContractAddFrom = Form.create()(React.createClass({
  8. getContactsList(theUid) {
  9. $.ajax({
  10. method: "get",
  11. dataType: "json",
  12. crossDomain: false,
  13. url: globalConfig.context + "/api/admin/getContacts",
  14. data: {
  15. uid: theUid || this.state.uid
  16. },
  17. success: function (data) {
  18. let theOption = [];
  19. if (!data.data) {
  20. if (data.error && data.error.length) {
  21. message.warning(data.error[0].message);
  22. return;
  23. };
  24. };
  25. for (let item in data.data) {
  26. let theData = data.data[item];
  27. theOption.push(
  28. <Select.Option value={item} key={theData}>{theData}</Select.Option>
  29. );
  30. };
  31. this.setState({
  32. contactsOption: theOption
  33. });
  34. }.bind(this),
  35. });
  36. },
  37. getInitialState() {
  38. return {
  39. loading: false,
  40. companyOption: [],
  41. accelerated: 0,
  42. acceleratedDate: 0,
  43. visible: "visible"
  44. };
  45. },
  46. componentWillMount() {
  47. let d = new Date(), _me = this, theArr = [];
  48. d = d.getFullYear() - 1;
  49. for (let i = d; i < d + 20; i++) {
  50. theArr.push(
  51. <Select.Option value={i.toString()} key={i}>{i}</Select.Option>
  52. )
  53. };
  54. this.state.yearOption = theArr;
  55. },
  56. componentWillReceiveProps(nextProps) {
  57. if (!this.props.visible && nextProps.visible) {
  58. this.state.patentCheck = false;
  59. this.state.copyrightCheck = false;
  60. this.state.highTechCheck = false;
  61. this.state.techProjectCheck = false;
  62. this.props.form.resetFields();
  63. };
  64. },
  65. handleSave(e) {
  66. e.preventDefault();
  67. this.props.form.validateFields((err, values) => {
  68. if (!values.uid || values.uid === "") {
  69. message.warning('请先选择公司!');
  70. return;
  71. };
  72. if (!err) {
  73. this.props.spinState(true);
  74. $.ajax({
  75. method: "POST",
  76. dataType: "json",
  77. crossDomain: false,
  78. url: globalConfig.context + "/api/admin/contract/apply",
  79. data: {
  80. "uid": values.uid,
  81. "contacts": values.contacts, //联系人
  82. "type": values.type, //合同类型
  83. "depict": values.depict, // "合同描述",
  84. "patentNum": this.state.patentCheck ? values.patentNum : undefined,
  85. "copyrightNum": this.state.copyrightCheck ? values.copyrightNum : undefined,
  86. "cognizanceYear": this.state.highTechCheck ? values.cognizanceYear : undefined,
  87. "techProjectNum": this.state.techProjectCheck ? values.techProjectNum : undefined,
  88. "comment": values.comment //"备注"
  89. }
  90. }).done(function (data) {
  91. if (!data.error.length) {
  92. message.success('保存成功!');
  93. this.props.okClick();
  94. this.props.closeModal();
  95. this.props.form.resetFields();
  96. } else {
  97. message.warning(data.error[0].message);
  98. }
  99. }.bind(this)).always(function () {
  100. this.props.spinState(false);
  101. }.bind(this));
  102. }
  103. });
  104. },
  105. handleSubmit() {
  106. this.props.form.validateFields((err, values) => {
  107. if (!values.uid || values.uid === "") {
  108. message.warning('请先选择公司!');
  109. return;
  110. };
  111. if (!err) {
  112. this.props.spinState(true);
  113. $.ajax({
  114. method: "POST",
  115. dataType: "json",
  116. crossDomain: false,
  117. url: globalConfig.context + "/api/admin/contract/submit",
  118. data: {
  119. "uid": values.uid,
  120. "contacts": values.contacts, //联系人
  121. "type": values.type, //合同类型
  122. "depict": values.depict, // "合同描述",
  123. "patentNum": this.state.patentCheck ? values.patentNum : undefined,
  124. "copyrightNum": this.state.copyrightCheck ? values.copyrightNum : undefined,
  125. "cognizanceYear": this.state.highTechCheck ? values.cognizanceYear : undefined,
  126. "techProjectNum": this.state.techProjectCheck ? values.techProjectNum : undefined,
  127. "principals": values.principals,
  128. "comment": values.comment //"备注"
  129. }
  130. }).done(function (data) {
  131. if (!data.error.length) {
  132. message.success('提交成功!');
  133. this.props.okClick();
  134. this.props.closeModal();
  135. this.props.form.resetFields();
  136. } else {
  137. message.warning(data.error[0].message);
  138. }
  139. }.bind(this)).always(function () {
  140. this.props.spinState(false);
  141. }.bind(this));
  142. }
  143. });
  144. },
  145. render() {
  146. const FormItem = Form.Item;
  147. const { getFieldDecorator } = this.props.form;
  148. const formItemLayout = {
  149. labelCol: { span: 6 },
  150. wrapperCol: { span: 14 },
  151. };
  152. const _me = this;
  153. return (
  154. <Form horizontal onSubmit={this.handleSave} id="CopyrightDesc-form">
  155. <div className="clearfix">
  156. <FormItem className="half-item"
  157. {...formItemLayout}
  158. label="公司名称" >
  159. {getFieldDecorator('uid')(
  160. <Select
  161. placeholder="请选择公司"
  162. notFoundContent="未找到公司"
  163. style={{ width: 260 }}
  164. showSearch
  165. filterOption={companySearch}
  166. onSelect={(e, n) => { this.getContactsList(e); }}>
  167. {this.props.companyOption}
  168. </Select>
  169. )}
  170. </FormItem>
  171. <FormItem className="half-item"
  172. {...formItemLayout}
  173. label="联系人" >
  174. {getFieldDecorator('contacts')(
  175. <Select placeholder="请选择联系人"
  176. style={{ width: 260 }}
  177. notFoundContent="未获取到联系人列表">
  178. {this.state.contactsOption}
  179. </Select>
  180. )}
  181. </FormItem>
  182. <FormItem className="half-item"
  183. {...formItemLayout}
  184. label="合同类型" >
  185. {getFieldDecorator('type')(
  186. <Select placeholder="请选择合同类型"
  187. style={{ width: 260 }}>
  188. {this.props.typeOption}
  189. </Select>
  190. )}
  191. </FormItem>
  192. </div>
  193. <FormItem
  194. labelCol={{ span: 3 }}
  195. wrapperCol={{ span: 19 }}
  196. label="合同描述" >
  197. {getFieldDecorator('depict')(
  198. <Input type="textarea"
  199. placeholder="多行输入"
  200. rows={4} />
  201. )}
  202. </FormItem>
  203. <div className="clearfix">
  204. <span style={{ float: "left", lineHeight: '32px', marginLeft: '50px' }}>
  205. <Checkbox checked={this.state.highTechCheck} onChange={(e) => {
  206. this.setState({ highTechCheck: e.target.checked });
  207. }}></Checkbox>
  208. </span>
  209. <FormItem className="half-item"
  210. {...formItemLayout}
  211. label={"高企申请"} >
  212. {getFieldDecorator('cognizanceYear')(
  213. <Select placeholder="请选择年份"
  214. style={{ width: 120 }}
  215. onSelect={(e, n) => { this.setState({ year: e }); }}>
  216. {this.state.yearOption}
  217. </Select>
  218. )}
  219. </FormItem>
  220. </div>
  221. <div className="clearfix">
  222. <span style={{ float: "left", lineHeight: '32px', marginLeft: '50px' }}>
  223. <Checkbox checked={this.state.patentCheck} onChange={(e) => {
  224. this.setState({ patentCheck: e.target.checked });
  225. }}></Checkbox>
  226. </span>
  227. <FormItem className="half-item"
  228. {...formItemLayout}
  229. label={"专利申请"} >
  230. {getFieldDecorator('patentNum')(
  231. <InputNumber />
  232. )}
  233. </FormItem>
  234. </div>
  235. <div className="clearfix">
  236. <span style={{ float: "left", lineHeight: '32px', marginLeft: '50px' }}>
  237. <Checkbox checked={this.state.copyrightCheck} onChange={(e) => {
  238. this.setState({ copyrightCheck: e.target.checked });
  239. }}></Checkbox>
  240. </span>
  241. <FormItem className="half-item"
  242. {...formItemLayout}
  243. label={"软著申请"} >
  244. {getFieldDecorator('copyrightNum')(
  245. <InputNumber />
  246. )}
  247. </FormItem>
  248. </div>
  249. <div className="clearfix">
  250. <span style={{ float: "left", lineHeight: '32px', marginLeft: '50px' }}>
  251. <Checkbox checked={this.state.techProjectCheck} onChange={(e) => {
  252. this.setState({ techProjectCheck: e.target.checked });
  253. }}></Checkbox>
  254. </span>
  255. <FormItem className="half-item"
  256. {...formItemLayout}
  257. label={"科技项目申请"} >
  258. {getFieldDecorator('techProjectNum')(
  259. <InputNumber />
  260. )}
  261. </FormItem>
  262. </div>
  263. <div className="clearfix">
  264. <FormItem className="half-item"
  265. {...formItemLayout}
  266. label={"审核人"} >
  267. {getFieldDecorator('principals')(
  268. <Select
  269. placeholder="请选择审核人"
  270. notFoundContent="未找到"
  271. style={{ width: 260 }}
  272. showSearch
  273. multiple
  274. filterOption={companySearch} >
  275. {this.props.authorOption}
  276. </Select>
  277. )}
  278. </FormItem>
  279. </div>
  280. <FormItem
  281. labelCol={{ span: 3 }}
  282. wrapperCol={{ span: 19 }}
  283. label="备注" >
  284. {getFieldDecorator('comment')(
  285. <Input type="textarea"
  286. placeholder="多行输入"
  287. rows={2} />
  288. )}
  289. </FormItem>
  290. <FormItem style={{ paddingLeft: '40px' }}>
  291. <Button className="set-submit" type="primary" htmlType="submit">保存草稿</Button>
  292. <Button onClick={this.handleSubmit} type="ghost" style={{ marginLeft: '20px' }}>提交</Button>
  293. <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
  294. </FormItem>
  295. </Form >
  296. );
  297. },
  298. }));
  299. const ContractAdd = React.createClass({
  300. getInitialState() {
  301. return {
  302. visible: false,
  303. loading: false
  304. };
  305. },
  306. showModal() {
  307. this.setState({
  308. visible: true,
  309. });
  310. },
  311. handleCancel(e) {
  312. this.setState({
  313. visible: false,
  314. });
  315. this.props.closeAdd(false);
  316. },
  317. spinChange(e) {
  318. this.setState({
  319. loading: e
  320. });
  321. },
  322. render() {
  323. return (
  324. <div className="patent-addNew">
  325. <Button className="patent-addNew" type="primary" onClick={this.showModal}>申请合同<Icon type="plus" /></Button>
  326. <Spin spinning={this.state.loading} className='spin-box'>
  327. <Modal title="申请新合同"
  328. visible={this.state.visible}
  329. onCancel={this.handleCancel}
  330. width='800px'
  331. footer=''
  332. >
  333. <ContractAddFrom
  334. spinState={this.spinChange}
  335. closeModal={this.handleCancel}
  336. visible={this.state.visible}
  337. okClick={() => { this.props.closeAdd(false, true) }}
  338. companyOption={this.props.companyOption}
  339. authorOption={this.props.authorOption}
  340. typeOption={this.props.typeOption} />
  341. </Modal>
  342. </Spin>
  343. </div>
  344. );
  345. },
  346. });
  347. export default ContractAdd;