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