orgTechCenter.jsx 20 KB

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