activityCostList.jsx 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  1. import React from 'react';
  2. import { Switch, Icon, Form, Upload, Button, Input, Spin, Table, message, Select, Modal, DatePicker, InputNumber } from 'antd';
  3. import './activityCostList.less';
  4. import { beforeUploadFile, newDownloadFile, getProportion, saveProportion, getPreview } from '../../../../tools.js';
  5. import YearSelect from '../../../../yearSelect.jsx';
  6. import moment from 'moment';
  7. import ajax from 'jquery/src/ajax/xhr.js';
  8. import $ from 'jquery/src/ajax';
  9. const ActivityDescFrom = Form.create()(React.createClass({
  10. getInitialState() {
  11. return {
  12. loading: false,
  13. activityNumberOption: [],
  14. };
  15. },
  16. componentWillMount() {
  17. let _me = this;
  18. this.state.internalAllCost = this.props.data.internalAllCost;
  19. this.state.allCost = this.props.data.allCost;
  20. this.props.activityNumberList.map(function (item) {
  21. _me.state.activityNumberOption.push(
  22. <Select.Option value={item.aid} key={item.uid}>{item.activityNumber}</Select.Option>
  23. )
  24. });
  25. },
  26. allCostCount() {
  27. this.state.internalAllCost = this.props.form.getFieldValue('internalLaborCost') + this.props.form.getFieldValue('internalDirectCost') +
  28. this.props.form.getFieldValue('internalDepreciationCost') + this.props.form.getFieldValue('internalAmortizationCost') +
  29. this.props.form.getFieldValue('internalDesignCost') + this.props.form.getFieldValue('internalEquipmentCost') +
  30. this.props.form.getFieldValue('internalOtherCost');
  31. this.state.allCost = this.props.form.getFieldValue('internalLaborCost') + this.props.form.getFieldValue('internalDirectCost') +
  32. this.props.form.getFieldValue('internalDepreciationCost') + this.props.form.getFieldValue('internalAmortizationCost') +
  33. this.props.form.getFieldValue('internalDesignCost') + this.props.form.getFieldValue('internalEquipmentCost') +
  34. this.props.form.getFieldValue('internalOtherCost') + this.props.form.getFieldValue('externalTotalCost');
  35. },
  36. componentWillReceiveProps(nextProps) {
  37. if (!this.props.visible && nextProps.visible) {
  38. this.state.internalAllCost = nextProps.data.internalAllCost;
  39. this.state.allCost = nextProps.data.allCost;
  40. nextProps.form.resetFields();
  41. this.state.fileList = [];
  42. } else {
  43. this.allCostCount();
  44. };
  45. },
  46. handleSubmit(e) {
  47. e.preventDefault();
  48. this.props.form.validateFields((err, values) => {
  49. if (!err) {
  50. this.props.spinState(true);
  51. $.ajax({
  52. method: "POST",
  53. dataType: "json",
  54. crossDomain: false,
  55. url: globalConfig.context + "/api/admin/activityCost",
  56. data: {
  57. id: this.props.data.id,
  58. aid: this.props.data.aid,
  59. uid: this.props.uid,
  60. activityNumber: this.state.activityNumber,
  61. year: this.state.year,
  62. internalLaborCost: values.internalLaborCost,
  63. internalDirectCost: values.internalDirectCost,
  64. internalDepreciationCost: values.internalDepreciationCost,
  65. internalAmortizationCost: values.internalAmortizationCost,
  66. internalDesignCost: values.internalDesignCost,
  67. internalEquipmentCost: values.internalEquipmentCost,
  68. internalOtherCost: values.internalOtherCost,
  69. externalTotalCost: values.externalTotalCost,
  70. externalAbroadCost: values.externalAbroadCost,
  71. enterpriseFiller: values.enterpriseFiller,
  72. signDateFormattedDate: values.signDate.format('YYYY-MM-DD'),
  73. sortNumber: values.sortNumber,
  74. accountUrl: this.state.accountUrl
  75. }
  76. }).done(function (data) {
  77. if (!data.error.length) {
  78. message.success('保存成功!');
  79. } else {
  80. message.warning(data.error[0].message);
  81. }
  82. }.bind(this)).always(function () {
  83. this.props.spinState(false);
  84. this.props.clickOk();
  85. this.props.form.resetFields();
  86. }.bind(this));
  87. }
  88. });
  89. },
  90. render() {
  91. const FormItem = Form.Item;
  92. const { getFieldDecorator } = this.props.form;
  93. const theData = this.props.data;
  94. const formItemLayout = {
  95. labelCol: { span: 14 },
  96. wrapperCol: { span: 8 },
  97. };
  98. const _me = this;
  99. return (
  100. <Form onSubmit={this.handleSubmit} className="activityCost-form">
  101. <p className="activityCost-title">项目编号</p>
  102. {
  103. theData.activityNumber ? <span>{theData.activityNumber}</span> :
  104. <Select
  105. notFoundContent="无项目可选"
  106. placeholder="请选择项目编号"
  107. style={{ width: 200 }}
  108. onSelect={(e, n) => { this.state.aid = e; this.state.activityNumber = n.props.children }}>
  109. {this.state.activityNumberOption}
  110. </Select>
  111. }
  112. <p className="activityCost-title">费用年份</p>
  113. <div><YearSelect defValue={this.state.year} handleyear={(e) => { this.state.year = e; }} /></div>
  114. <p className="activityCost-title">内部研究开发费用(万元)</p>
  115. <div className="clearfix activityCost-box">
  116. <FormItem className="half-item"
  117. {...formItemLayout}
  118. label="共计(万元)"
  119. >
  120. <span className="number-box">
  121. {this.state.internalAllCost}
  122. </span>
  123. </FormItem>
  124. <FormItem className="half-item"
  125. {...formItemLayout}
  126. label="人员人工费用(万元)"
  127. >
  128. {getFieldDecorator('internalLaborCost', {
  129. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  130. initialValue: theData.internalLaborCost || 0
  131. })(
  132. <InputNumber />
  133. )}
  134. </FormItem>
  135. <FormItem className="half-item"
  136. {...formItemLayout}
  137. label="直接投入费用(万元)"
  138. >
  139. {getFieldDecorator('internalDirectCost', {
  140. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  141. initialValue: theData.internalDirectCost || 0
  142. })(
  143. <InputNumber />
  144. )}
  145. </FormItem>
  146. <FormItem className="half-item"
  147. {...formItemLayout}
  148. label="折旧费用与长期待摊费用(万元)"
  149. >
  150. {getFieldDecorator('internalDepreciationCost', {
  151. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  152. initialValue: theData.internalDepreciationCost || 0
  153. })(
  154. <InputNumber />
  155. )}
  156. </FormItem>
  157. <FormItem className="half-item"
  158. {...formItemLayout}
  159. label="无形资产摊销费用(万元)"
  160. >
  161. {getFieldDecorator('internalAmortizationCost', {
  162. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  163. initialValue: theData.internalAmortizationCost || 0
  164. })(
  165. <InputNumber />
  166. )}
  167. </FormItem>
  168. <FormItem className="half-item"
  169. {...formItemLayout}
  170. label="设计费用(万元)"
  171. >
  172. {getFieldDecorator('internalDesignCost', {
  173. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  174. initialValue: theData.internalDesignCost || 0
  175. })(
  176. <InputNumber />
  177. )}
  178. </FormItem>
  179. <FormItem className="half-item"
  180. {...formItemLayout}
  181. label="装备调试费用与实验费用(万元)"
  182. >
  183. {getFieldDecorator('internalEquipmentCost', {
  184. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  185. initialValue: theData.internalEquipmentCost || 0
  186. })(
  187. <InputNumber />
  188. )}
  189. </FormItem>
  190. <FormItem className="half-item"
  191. {...formItemLayout}
  192. label="其他费用(万元)"
  193. >
  194. {getFieldDecorator('internalOtherCost', {
  195. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  196. initialValue: theData.internalOtherCost || 0
  197. })(
  198. <InputNumber />
  199. )}
  200. </FormItem>
  201. </div>
  202. <p className="activityCost-title">委托外部研究开发费用(万元)</p>
  203. <div className="clearfix activityCost-box">
  204. <FormItem className="half-item"
  205. {...formItemLayout}
  206. label="共计(万元)"
  207. >
  208. {getFieldDecorator('externalTotalCost', {
  209. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  210. initialValue: theData.externalTotalCost || 0
  211. })(
  212. <InputNumber />
  213. )}
  214. </FormItem>
  215. <FormItem className="half-item"
  216. {...formItemLayout}
  217. label="境内的外部研发费用"
  218. >
  219. {getFieldDecorator('externalAbroadCost', {
  220. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  221. initialValue: theData.externalAbroadCost || 0
  222. })(
  223. <InputNumber />
  224. )}
  225. </FormItem>
  226. </div>
  227. <p className="activityCost-title">研发开发费用(内、外部)小计(万元)</p>
  228. <div className="clearfix activityCost-box">
  229. <FormItem className="half-item"
  230. {...formItemLayout}
  231. label="共计(万元)"
  232. >
  233. {getFieldDecorator('allCost')(
  234. <span className="number-box">
  235. {this.state.allCost}
  236. </span>
  237. )}
  238. </FormItem>
  239. <FormItem className="half-item"
  240. {...formItemLayout}
  241. label="企业填报人"
  242. >
  243. {getFieldDecorator('enterpriseFiller', {
  244. rules: [{ required: true, message: '此项为必填项!' }],
  245. initialValue: theData.enterpriseFiller
  246. })(
  247. <Input />
  248. )}
  249. </FormItem>
  250. <FormItem className="half-item"
  251. {...formItemLayout}
  252. label="企业填报人签字日期"
  253. >
  254. {getFieldDecorator('signDate', {
  255. rules: [{ type: "object", required: true, message: '此项为必填项!' }],
  256. initialValue: theData.signDate ? moment(theData.signDate) : null
  257. })(
  258. <DatePicker onChange={(date, dateString) => { this.state.signDateFormattedDate = dateString }} />
  259. )}
  260. </FormItem>
  261. <FormItem className="half-item"
  262. {...formItemLayout}
  263. label="排序号"
  264. >
  265. {getFieldDecorator('sortNumber', {
  266. rules: [{ required: true, message: '此项为必填项!' }],
  267. initialValue: theData.sortNumber
  268. })(
  269. <Input />
  270. )}
  271. </FormItem>
  272. </div>
  273. <div style={{ width: '50%', marginTop: '20px' }}>
  274. <Upload
  275. name="ratepay"
  276. action={globalConfig.context + "/api/admin/uploadActivityCost"}
  277. data={{ 'sign': 'activity_cost_account', 'uid': this.props.uid }}
  278. beforeUpload={beforeUploadFile}
  279. fileList={this.state.fileList}
  280. onChange={(info) => {
  281. if (info.file.status !== 'uploading') {
  282. console.log(info.file, info.fileList);
  283. }
  284. if (info.file.status === 'done') {
  285. if (!info.file.response.error.length) {
  286. message.success(`${info.file.name} 文件上传成功!`);
  287. } else {
  288. message.warning(info.file.response.error[0].message);
  289. return;
  290. };
  291. this.state.accountUrl = info.file.response.data;
  292. } else if (info.file.status === 'error') {
  293. message.error(`${info.file.name} 文件上传失败。`);
  294. };
  295. this.setState({ fileList: info.fileList.slice(-1) });
  296. }}
  297. >
  298. <Button><Icon type="upload" /> 上传研发费用台账 </Button>
  299. </Upload>
  300. <p style={{ marginTop: '20px' }}>{theData.accountUrl ?
  301. <span className="download-file">
  302. <a onClick={newDownloadFile.bind(null, this.props.data.id, 'activity_cost_account', '/api/admin/downloadActivityCost')}>{theData.accountDownloadFileName}</a>
  303. <a onClick={() => {
  304. getPreview(theData.id, 'activityCost', 'activity_cost_account', function (data) { window.open('https://view.officeapps.live.com/op/view.aspx?src=' + encodeURIComponent(location.origin + globalConfig.context + "/open/preview?" + data)) });
  305. }}><Icon style={{ fontSize: '16px' }} type="eye-o" /></a>
  306. </span>
  307. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  308. </div>
  309. <FormItem style={{ marginTop: '20px' }}>
  310. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  311. <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
  312. </FormItem>
  313. </Form >
  314. );
  315. },
  316. }));
  317. const ActivityDesc = React.createClass({
  318. getInitialState() {
  319. return {
  320. visible: false,
  321. loading: false
  322. };
  323. },
  324. componentWillReceiveProps(nextProps) {
  325. this.state.visible = nextProps.showDesc
  326. },
  327. showModal() {
  328. this.setState({
  329. visible: true,
  330. });
  331. },
  332. handleOk() {
  333. this.setState({
  334. visible: false,
  335. });
  336. this.props.closeDesc(false, true);
  337. },
  338. handleCancel(e) {
  339. this.setState({
  340. visible: false,
  341. });
  342. this.props.closeDesc(false);
  343. },
  344. spinChange(e) {
  345. this.setState({
  346. loading: e
  347. });
  348. },
  349. render() {
  350. return (
  351. <div className="patent-addNew">
  352. <Spin spinning={this.state.loading} className='spin-box'>
  353. <Modal title="企业研究开发费用结构明细" visible={this.state.visible}
  354. onOk={this.handleOk} onCancel={this.handleCancel}
  355. width='800px'
  356. footer=''
  357. >
  358. <ActivityDescFrom
  359. uid={this.props.uid}
  360. visible={this.state.visible}
  361. data={this.props.data}
  362. activityNumberList={this.props.activityNumberList}
  363. spinState={this.spinChange} closeModal={this.handleCancel} clickOk={this.handleOk} />
  364. </Modal>
  365. </Spin>
  366. </div>
  367. );
  368. },
  369. });
  370. const Activity = React.createClass({
  371. loadData(pageNo) {
  372. this.state.data = [];
  373. this.setState({
  374. loading: true
  375. });
  376. $.when($.ajax({
  377. method: "post",
  378. dataType: "json",
  379. crossDomain: false,
  380. url: globalConfig.context + "/api/admin/activityCostList",
  381. data: {
  382. pageNo: pageNo || 1,
  383. pageSize: this.state.pagination.pageSize,
  384. uid: this.props.data.uid,
  385. activityNumber: this.state.activityNumber,
  386. year: this.state.year
  387. }
  388. }), $.ajax({
  389. method: "post",
  390. dataType: "json",
  391. crossDomain: false,
  392. url: globalConfig.context + "/api/admin/activityNumber",
  393. data: {
  394. uid: this.props.data.uid
  395. }
  396. })).done((data1, data2) => {
  397. let data = data1[0];
  398. let activityNumber = data2[0];
  399. if (data.error.length || !data.data || !data.data.list) {
  400. message.warning(data.error[0].message);
  401. return;
  402. };
  403. if (activityNumber.error.length || !activityNumber.data) {
  404. message.warning(activityNumber.error[0].message);
  405. return;
  406. };
  407. for (let i = 0; i < data.data.list.length; i++) {
  408. let thisdata = data.data.list[i];
  409. this.state.data.push({
  410. key: i,
  411. id: thisdata.id,
  412. uid: thisdata.uid,
  413. aid: thisdata.aid,
  414. activityNumber: thisdata.activityNumber,
  415. year: thisdata.year,
  416. startDate: thisdata.startDate,
  417. endDate: thisdata.endDate,
  418. internalAllCost:
  419. thisdata.internalLaborCost + thisdata.internalDirectCost + thisdata.internalDepreciationCost +
  420. thisdata.internalAmortizationCost + thisdata.internalAmortizationCost + thisdata.internalDesignCost +
  421. thisdata.internalEquipmentCost + thisdata.internalOtherCost,
  422. internalLaborCost: thisdata.internalLaborCost,
  423. internalDirectCost: thisdata.internalDirectCost,
  424. internalDepreciationCost: thisdata.internalDepreciationCost,
  425. internalAmortizationCost: thisdata.internalAmortizationCost,
  426. internalDesignCost: thisdata.internalDesignCost,
  427. internalEquipmentCost: thisdata.internalEquipmentCost,
  428. internalOtherCost: thisdata.internalOtherCost,
  429. externalTotalCost: thisdata.externalTotalCost,
  430. externalAbroadCost: thisdata.externalAbroadCost,
  431. allCost:
  432. thisdata.internalLaborCost + thisdata.internalDirectCost + thisdata.internalDepreciationCost +
  433. thisdata.internalAmortizationCost + thisdata.internalAmortizationCost + thisdata.internalDesignCost +
  434. thisdata.internalEquipmentCost + thisdata.internalOtherCost + thisdata.externalTotalCost,
  435. enterpriseFiller: thisdata.enterpriseFiller,
  436. signDate: thisdata.signDate,
  437. signDateFormattedDate: thisdata.signDateFormattedDate,
  438. sortNumber: thisdata.sortNumber,
  439. startDateFormattedDate: thisdata.startDateFormattedDate,
  440. endDateFormattedDate: thisdata.endDateFormattedDate,
  441. accountDownloadFileName: thisdata.accountDownloadFileName,
  442. accountUrl: thisdata.accountUrl
  443. });
  444. };
  445. this.state.activityNumberList = activityNumber.data;
  446. this.state.pagination.current = data.data.pageNo;
  447. this.state.pagination.total = data.data.totalCount;
  448. this.setState({
  449. dataSource: this.state.data,
  450. pagination: this.state.pagination
  451. });
  452. }).always(function () {
  453. this.setState({
  454. loading: false
  455. });
  456. }.bind(this));
  457. let _me = this;
  458. getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
  459. },
  460. getInitialState() {
  461. return {
  462. selectedRowKeys: [],
  463. selectedRows: [],
  464. loading: false,
  465. pagination: {
  466. defaultCurrent: 1,
  467. defaultPageSize: 10,
  468. showQuickJumper: true,
  469. pageSize: 10,
  470. onChange: function (page) {
  471. this.loadData(page);
  472. }.bind(this),
  473. showTotal: function (total) {
  474. return '共' + total + '条数据';
  475. }
  476. },
  477. columns: [
  478. {
  479. title: '研发活动编号',
  480. dataIndex: 'activityNumber',
  481. key: 'activityNumber'
  482. }, {
  483. title: '费用年份',
  484. dataIndex: 'year',
  485. key: 'year'
  486. }, {
  487. title: '内部研究开发费用',
  488. dataIndex: 'internalAllCost',
  489. key: 'internalAllCost'
  490. }, {
  491. title: '人员人工费用',
  492. dataIndex: 'internalLaborCost',
  493. key: 'internalLaborCost'
  494. }, {
  495. title: '直接投入费用',
  496. dataIndex: 'internalDirectCost',
  497. key: 'internalDirectCost'
  498. }, {
  499. title: '折旧费用与长期待摊费用',
  500. dataIndex: 'internalDepreciationCost',
  501. key: 'internalDepreciationCost'
  502. }, {
  503. title: '设计费用',
  504. dataIndex: 'internalDesignCost',
  505. key: 'internalDesignCost'
  506. }, {
  507. title: '装备调试费用与试验费用',
  508. dataIndex: 'internalEquipmentCost',
  509. key: 'internalEquipmentCost'
  510. }, {
  511. title: '无形资产摊销费用',
  512. dataIndex: 'internalAmortizationCost',
  513. key: 'internalAmortizationCost'
  514. }, {
  515. title: '其他费用',
  516. dataIndex: 'internalOtherCost',
  517. key: 'internalOtherCost'
  518. }, {
  519. title: '委托外部研究开发费用',
  520. dataIndex: 'externalTotalCost',
  521. key: 'externalTotalCost'
  522. }, {
  523. title: '境内外部研发费用',
  524. dataIndex: 'externalAbroadCost',
  525. key: 'externalAbroadCost'
  526. }, {
  527. title: '研发费用合计',
  528. dataIndex: 'allCost',
  529. key: 'allCost'
  530. }, {
  531. title: '企业填报人',
  532. dataIndex: 'enterpriseFiller',
  533. key: 'enterpriseFiller'
  534. }, {
  535. title: '企业填报人签字日期',
  536. dataIndex: 'signDateFormattedDate',
  537. key: 'signDateFormattedDate'
  538. }, {
  539. title: '排序号',
  540. dataIndex: 'sortNumber',
  541. key: 'sortNumber'
  542. }
  543. ],
  544. dataSource: []
  545. };
  546. },
  547. componentWillMount() {
  548. this.loadData();
  549. },
  550. tableRowClick(record, index) {
  551. this.state.RowData = record;
  552. this.setState({
  553. showDesc: true
  554. });
  555. },
  556. delectRow() {
  557. let deletedIds = [];
  558. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  559. let rowItem = this.state.selectedRows[idx];
  560. if (rowItem.id) {
  561. deletedIds.push(rowItem.id)
  562. }
  563. }
  564. this.setState({
  565. selectedRowKeys: [],
  566. loading: deletedIds.length > 0
  567. });
  568. $.ajax({
  569. method: "post",
  570. dataType: "json",
  571. crossDomain: false,
  572. url: globalConfig.context + "/api/admin/deleteActivityCost",
  573. data: {
  574. ids: deletedIds
  575. }
  576. }).done(function (data) {
  577. if (!data.error.length) {
  578. message.success('保存成功!');
  579. this.setState({
  580. loading: false,
  581. });
  582. } else {
  583. message.warning(data.error[0].message);
  584. };
  585. this.loadData();
  586. }.bind(this));
  587. },
  588. closeDesc(e, s) {
  589. this.state.showDesc = e;
  590. if (s) {
  591. this.loadData();
  592. };
  593. },
  594. search() {
  595. this.loadData();
  596. },
  597. reset() {
  598. this.state.year = undefined;
  599. this.state.activityNumber = undefined;
  600. this.loadData();
  601. },
  602. render() {
  603. const rowSelection = {
  604. selectedRowKeys: this.state.selectedRowKeys,
  605. onChange: (selectedRowKeys, selectedRows) => {
  606. this.setState({
  607. selectedRows: selectedRows,
  608. selectedRowKeys: selectedRowKeys
  609. });
  610. }
  611. };
  612. const hasSelected = this.state.selectedRowKeys.length > 0;
  613. return (
  614. <div className="user-content" >
  615. <div className="content-title">
  616. <span>企业研究开发费用结构明细</span>
  617. <span className="proportion"> 是否已完成:</span>
  618. <Switch
  619. checked={this.state.proportion && this.state.proportion.activityCost == 1 ? true : false}
  620. checkedChildren={'已完成'}
  621. unCheckedChildren={'未完成'}
  622. onChange={(e) => {
  623. e ? this.state.proportion.activityCost = 1 : this.state.proportion.activityCost = 0;
  624. saveProportion(this.state.proportion.id, this.props.data.uid, 'activityCost', this.state.proportion.activityCost);
  625. this.setState({ proportion: this.state.proportion });
  626. }} />
  627. </div>
  628. <div className="user-search">
  629. <Input placeholder="研发活动编号" value={this.state.activityNumber}
  630. onChange={(e) => { this.setState({ activityNumber: e.target.value }); }} />
  631. <span>年份:</span>
  632. <YearSelect value={this.state.year} handleyear={(e) => { this.state.year = e; }} />
  633. <Button type="primary" onClick={this.search}>搜索</Button>
  634. <Button onClick={this.reset}>重置</Button>
  635. <p>
  636. <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
  637. onClick={this.tableRowClick}>添加<Icon type="plus" /></Button>
  638. <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
  639. disabled={!hasSelected}
  640. onClick={this.delectRow}>删除<Icon type="minus" /></Button>
  641. </p>
  642. </div>
  643. <div className="patent-table">
  644. <Spin spinning={this.state.loading}>
  645. <Table columns={this.state.columns}
  646. dataSource={this.state.dataSource}
  647. pagination={this.state.pagination}
  648. rowSelection={rowSelection}
  649. onRowClick={this.tableRowClick} />
  650. </Spin>
  651. </div>
  652. <ActivityDesc
  653. uid={this.props.data.uid}
  654. data={this.state.RowData}
  655. activityNumberList={this.state.activityNumberList}
  656. showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
  657. </div >
  658. );
  659. }
  660. });
  661. export default Activity;