orgTechCenter.jsx 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. import React from 'react';
  2. import { Icon, Form, Button, Input, Spin, Table, message, Modal, Upload, DatePicker } from 'antd';
  3. import './techProduct.less';
  4. import { beforeUploadFile, downloadFile } from '../../tools.js';
  5. import moment from 'moment';
  6. import ajax from 'jquery/src/ajax/xhr.js';
  7. import $ from 'jquery/src/ajax';
  8. const CenterListDescFrom = Form.create()(React.createClass({
  9. getInitialState() {
  10. return {
  11. loading: false
  12. };
  13. },
  14. handleSubmit(e) {
  15. e.preventDefault();
  16. this.props.form.validateFields((err, values) => {
  17. if (!err) {
  18. this.props.spinState(true);
  19. $.ajax({
  20. method: "POST",
  21. dataType: "json",
  22. crossDomain: false,
  23. url: globalConfig.context + "/techservice/cognizance/disposeCenterDetail",
  24. data: {
  25. id: this.props.data.id,
  26. projectName: values.projectName,
  27. projectTime: values.projectTime.format("YYYY-MM-DD"),
  28. institution: values.institution,
  29. termTime: values.termTime.format("YYYY-MM-DD"),
  30. protocolUrl: this.state.protocolUrl
  31. }
  32. }).done(function (data) {
  33. if (!data.error.length) {
  34. message.success('保存成功!');
  35. this.props.closeModal();
  36. this.props.spinState(false);
  37. this.props.form.resetFields();
  38. } else {
  39. message.warning(data.error[0].message);
  40. this.props.spinState(false);
  41. }
  42. }.bind(this));
  43. }
  44. });
  45. },
  46. render() {
  47. const FormItem = Form.Item;
  48. const { getFieldDecorator } = this.props.form;
  49. const theData = this.props.data;
  50. const formItemLayout = {
  51. labelCol: { span: 4 },
  52. wrapperCol: { span: 12 },
  53. };
  54. const _me = this;
  55. return (
  56. <Form onSubmit={this.handleSubmit} className="activityCost-form">
  57. <div className="clearfix">
  58. <FormItem className="half-item"
  59. {...formItemLayout}
  60. label="时间"
  61. >
  62. {getFieldDecorator('projectTimeFormattedDate', {
  63. rules: [{ type: 'object', required: true, message: '此项为必填项!' }],
  64. initialValue: theData.projectTimeFormattedDate ? moment(theData.projectTimeFormattedDate) : null
  65. })(
  66. <DatePicker />
  67. )}
  68. </FormItem>
  69. <FormItem className="half-item"
  70. {...formItemLayout}
  71. label="名称"
  72. >
  73. {getFieldDecorator('projectName', {
  74. rules: [{ required: true, message: '此项为必填项!' }],
  75. initialValue: theData.projectName
  76. })(
  77. <Input />
  78. )}
  79. </FormItem>
  80. <FormItem className="half-item"
  81. {...formItemLayout}
  82. label="期限"
  83. >
  84. {getFieldDecorator('termTimeFormattedDate', {
  85. rules: [{ type: 'object', required: true, message: '此项为必填项!' }],
  86. initialValue: theData.termTimeFormattedDate ? moment(theData.termTimeFormattedDate) : null
  87. })(
  88. <DatePicker />
  89. )}
  90. </FormItem>
  91. <FormItem className="half-item"
  92. {...formItemLayout}
  93. label="大学机构"
  94. >
  95. {getFieldDecorator('institution', {
  96. rules: [{ required: true, message: '此项为必填项!' }],
  97. initialValue: theData.institution
  98. })(
  99. <Input />
  100. )}
  101. </FormItem>
  102. </div>
  103. <div className="hrSituation-roster">
  104. <Upload
  105. name="ratepay"
  106. action={globalConfig.context + "/techservice/cognizance/upload"}
  107. data={{ 'sign': this.props.year + 'protocol' }}
  108. beforeUpload={beforeUploadFile}
  109. onChange={(info) => {
  110. if (info.file.status !== 'uploading') {
  111. console.log(info.file, info.fileList);
  112. }
  113. if (info.file.status === 'done') {
  114. if (!info.file.response.error.length) {
  115. message.success(`${info.file.name} 文件上传成功!`);
  116. } else {
  117. message.warning(info.file.response.error[0].message);
  118. return;
  119. };
  120. this.state.protocolUrl = info.file.response.data;
  121. } else if (info.file.status === 'error') {
  122. message.error(`${info.file.name} 文件上传失败。`);
  123. }
  124. }}
  125. >
  126. <Button><Icon type="upload" /> 上传文件 </Button>
  127. </Upload>
  128. </div>
  129. <FormItem style={{ marginTop: '20px' }}>
  130. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  131. <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
  132. </FormItem>
  133. </Form >
  134. );
  135. },
  136. }));
  137. const CenterListDesc = React.createClass({
  138. getInitialState() {
  139. return {
  140. visible: false,
  141. loading: false
  142. };
  143. },
  144. componentWillReceiveProps(nextProps) {
  145. this.state.visible = nextProps.showDesc
  146. },
  147. showModal() {
  148. this.setState({
  149. visible: true,
  150. });
  151. },
  152. handleOk() {
  153. this.setState({
  154. visible: false,
  155. });
  156. this.props.closeDesc(false);
  157. },
  158. handleCancel(e) {
  159. this.setState({
  160. visible: false,
  161. });
  162. this.props.closeDesc(false);
  163. },
  164. spinChange(e) {
  165. this.setState({
  166. loading: e
  167. });
  168. },
  169. render() {
  170. return (
  171. <div className="patent-addNew">
  172. <Spin spinning={this.state.loading} className='spin-box'>
  173. <Modal title="产学研情况详情" visible={this.state.visible}
  174. onOk={this.handleOk} onCancel={this.handleCancel}
  175. width='800px'
  176. footer=''
  177. >
  178. <CenterListDescFrom data={this.props.data}
  179. spinState={this.spinChange} closeModal={this.handleCancel} />
  180. </Modal>
  181. </Spin>
  182. </div>
  183. );
  184. },
  185. });
  186. const CenterList = React.createClass({
  187. loadOrgTechCenterDetail() {
  188. this.setState({
  189. loading: true
  190. });
  191. $.ajax({
  192. method: "get",
  193. dataType: "json",
  194. crossDomain: false,
  195. url: globalConfig.context + "/techservice/cognizance/center",
  196. data: {
  197. }
  198. }).done((data) => {
  199. if (data.error.length || !data.data) {
  200. message.warning(data.error[0].message);
  201. return;
  202. };
  203. this.state.cid = data.data.id;
  204. this.state.foundingTime = data.data.foundingTimeFormattedDate;
  205. this.state.principal = data.data.principal;
  206. this.state.systemCatalog = data.data.systemCatalog;
  207. this.state.systemUrl = data.data.systemUrl;
  208. this.state.systemDownloadFileName = data.data.systemDownloadFileName;
  209. this.state.centerName = data.data.centerName;
  210. this.state.comment = data.data.comment;
  211. this.loadData();
  212. }).always(function () {
  213. this.setState({
  214. loading: false
  215. });
  216. }.bind(this));
  217. },
  218. loadData(pageNo) {
  219. this.state.data = [];
  220. this.setState({
  221. loading: true
  222. });
  223. $.ajax({
  224. method: "post",
  225. dataType: "json",
  226. crossDomain: false,
  227. url: globalConfig.context + "/techservice/cognizance/centerDetail",
  228. data: {
  229. pageNo: pageNo || 1,
  230. pageSize: this.state.pagination.pageSize,
  231. cid: this.state.cid
  232. }
  233. }).done((data) => {
  234. if (data.error.length || !data.data || !data.data.list) {
  235. message.warning(data.error[0].message);
  236. return;
  237. };
  238. for (let i = 0; i < data.data.list.length; i++) {
  239. let thisdata = data.data.list[i];
  240. this.state.data.push({
  241. key: i,
  242. id: thisdata.id,
  243. cid: thisdata.cid,
  244. projectTimeFormattedDate: thisdata.projectTimeFormattedDate,
  245. projectName: thisdata.projectName,
  246. protocolDownloadFileName:thisdata.protocolDownloadFileName,
  247. protocolUrl: thisdata.protocolUrl,
  248. institution: thisdata.institution,
  249. termTimeFormattedDate: thisdata.termTimeFormattedDate
  250. });
  251. };
  252. this.state.pagination.current = data.data.pageNo;
  253. this.state.pagination.total = data.data.totalCount;
  254. this.setState({
  255. dataSource: this.state.data,
  256. pagination: this.state.pagination
  257. });
  258. }).always(function () {
  259. this.setState({
  260. loading: false
  261. });
  262. }.bind(this));
  263. },
  264. getInitialState() {
  265. return {
  266. selectedRowKeys: [],
  267. selectedRows: [],
  268. loading: false,
  269. pagination: {
  270. defaultCurrent: 1,
  271. defaultPageSize: 10,
  272. showQuickJumper: true,
  273. pageSize: 10,
  274. onChange: function (page) {
  275. this.loadData(page);
  276. }.bind(this),
  277. showTotal: function (total) {
  278. return '共' + total + '条数据';
  279. }
  280. },
  281. columns: [
  282. {
  283. title: '时间',
  284. dataIndex: 'projectTimeFormattedDate',
  285. key: 'projectTimeFormattedDate'
  286. }, {
  287. title: '名称',
  288. dataIndex: 'projectName',
  289. key: 'projectName'
  290. }, {
  291. title: '期限',
  292. dataIndex: 'termTimeFormattedDate',
  293. key: 'termTimeFormattedDate'
  294. }, {
  295. title: '大学机构',
  296. dataIndex: 'institution',
  297. key: 'institution'
  298. }, {
  299. title: '协议附件',
  300. dataIndex: 'protocolUrl',
  301. key: 'protocolUrl',
  302. render: (text) => {
  303. <a href="" onClick={() => {
  304. window.open(globalConfig.context + "/techservice/patent/downloadFile?path=" + text + "&sign=" + "type")
  305. }}></a>
  306. }
  307. }
  308. ],
  309. dataSource: []
  310. };
  311. },
  312. componentWillMount() {
  313. this.loadOrgTechCenterDetail();
  314. },
  315. tableRowClick(record, index) {
  316. this.state.RowData = record;
  317. this.setState({
  318. showDesc: true
  319. });
  320. },
  321. delectRow() {
  322. let deletedIds = [];
  323. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  324. let rowItem = this.state.selectedRows[idx];
  325. if (rowItem.id) {
  326. deletedIds.push(rowItem.id)
  327. }
  328. }
  329. this.setState({
  330. selectedRowKeys: [],
  331. loading: deletedIds.length > 0
  332. });
  333. $.ajax({
  334. method: "POST",
  335. dataType: "json",
  336. crossDomain: false,
  337. url: globalConfig.context + "/techservice/cognizance/deleteOrgTechCenterDetail",
  338. data: {
  339. ids: deletedIds
  340. }
  341. }).done(function (data) {
  342. if (!data.error.length) {
  343. message.success('保存成功!');
  344. this.setState({
  345. loading: false,
  346. });
  347. } else {
  348. message.warning(data.error[0].message);
  349. };
  350. this.loadData();
  351. }.bind(this));
  352. },
  353. closeDesc(e) {
  354. this.state.showDesc = e;
  355. this.loadData();
  356. },
  357. saveCenterDetail() {
  358. this.setState({
  359. loading: true
  360. });
  361. $.ajax({
  362. method: "post",
  363. dataType: "json",
  364. crossDomain: false,
  365. url: globalConfig.context + "/techservice/cognizance/disposeCenter",
  366. data: {
  367. id: this.state.cid,
  368. principal: this.state.principal,
  369. systemUrl: this.state.systemUrl,
  370. systemCatalog: this.state.systemCatalog,
  371. foundingTimeFormattedDate: this.state.foundingTime,
  372. comment: this.state.comment,
  373. centerName: this.state.centerName
  374. }
  375. }).done((data) => {
  376. if (!data.error.length) {
  377. message.success('保存成功!');
  378. this.loadOrgTechCenterDetail();
  379. this.setState({
  380. loading: false,
  381. });
  382. } else {
  383. message.warning(data.error[0].message);
  384. };
  385. });
  386. },
  387. render() {
  388. const rowSelection = {
  389. selectedRowKeys: this.state.selectedRowKeys,
  390. onChange: (selectedRowKeys, selectedRows) => {
  391. this.setState({
  392. selectedRows: selectedRows,
  393. selectedRowKeys: selectedRowKeys
  394. });
  395. }
  396. };
  397. const hasSelected = this.state.selectedRowKeys.length > 0;
  398. return (
  399. <div className="user-content" >
  400. <div className="content-title">
  401. <span>研发部门</span>
  402. </div>
  403. <div className="clearfix">
  404. <div className="orgTech-item">
  405. <span>研发部门名称: </span>
  406. <Input
  407. value={this.state.centerName}
  408. onChange={(e) => { this.setState({ centerName: e.target.value }); }}
  409. />
  410. <span>成立时间: </span>
  411. <DatePicker
  412. value={moment(this.state.foundingTime)}
  413. allowClear={false}
  414. onChange={(date, dateString) => { this.setState({ foundingTime: dateString }); }}
  415. />
  416. <span>负责人: </span>
  417. <Input
  418. value={this.state.principal}
  419. onChange={(e) => { this.setState({ principal: e.target.value }); }}
  420. />
  421. </div>
  422. <div className="orgTech-item">
  423. <span>制度目录: </span>
  424. <Input type='textarea' rows={6}
  425. value={this.state.systemCatalog}
  426. onChange={(e) => { this.setState({ systemCatalog: e.target.value }); }}
  427. />
  428. </div>
  429. <div className="orgTech-item">
  430. <span>备注: </span>
  431. <Input type='textarea' rows={3}
  432. value={this.state.comment}
  433. onChange={(e) => { this.setState({ comment: e.target.value }); }}
  434. />
  435. </div>
  436. </div>
  437. <div className="half-item">
  438. <p>制度上传: (上传 zip 或者 rar 文件)</p>
  439. <div style={{ margin: '10px 0' }}>
  440. <Upload
  441. name="ratepay"
  442. action={globalConfig.context + "/techservice/cognizance/upload"}
  443. data={{ 'sign': 'institution' }}
  444. beforeUpload={beforeUploadFile}
  445. showUploadList={false}
  446. onChange={(info) => {
  447. if (info.file.status !== 'uploading') {
  448. console.log(info.file, info.fileList);
  449. }
  450. if (info.file.status === 'done') {
  451. if (!info.file.response.error.length) {
  452. message.success(`${info.file.name} 文件上传成功!`);
  453. } else {
  454. message.warning(info.file.response.error[0].message);
  455. return;
  456. };
  457. this.state.systemUrl = info.file.response.data;
  458. } else if (info.file.status === 'error') {
  459. message.error(`${info.file.name} 文件上传失败。`);
  460. }
  461. }}
  462. >
  463. <Button><Icon type="upload" /> 上传研发费用台账 </Button>
  464. </Upload>
  465. <p style={{ marginTop: '10px' }}>{this.state.systemUrl ? <a onClick={downloadFile.bind(null, this.state.systemUrl, this.state.systemDownloadFileName)}>{this.state.systemDownloadFileName}</a> : <span>未上传!</span>}</p>
  466. </div>
  467. </div>
  468. <Button type='primary' onClick={this.saveCenterDetail}>保存</Button>
  469. <div className="content-title">
  470. <span>产学研情况</span>
  471. </div>
  472. <div className="user-search">
  473. <p>
  474. <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
  475. onClick={this.tableRowClick}>添加<Icon type="plus" /></Button>
  476. <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
  477. disabled={!hasSelected}
  478. onClick={this.delectRow}>删除<Icon type="minus" /></Button>
  479. </p>
  480. </div>
  481. <div className="patent-table">
  482. <Spin spinning={this.state.loading}>
  483. <Table columns={this.state.columns}
  484. dataSource={this.state.dataSource}
  485. pagination={this.state.pagination}
  486. rowSelection={rowSelection}
  487. onRowClick={this.tableRowClick} />
  488. </Spin>
  489. </div>
  490. <CenterListDesc data={this.state.RowData}
  491. showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
  492. </div >
  493. );
  494. }
  495. });
  496. export default CenterList;