techProduct.jsx 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. import React from 'react';
  2. import { Icon, Upload, Form, Button, Radio, Input, Spin, Table, message, Select, Modal, DatePicker, Cascader, Transfer, InputNumber } from 'antd';
  3. import { techFieldList, technicalSourceList } from '../../dataDic.js';
  4. import { getTechField, getTechnicalSource, beforeUploadFile } from '../../tools.js';
  5. import './techProduct.less';
  6. import moment from 'moment';
  7. import ajax from 'jquery/src/ajax/xhr.js';
  8. import $ from 'jquery/src/ajax';
  9. const TechProductDescFrom = Form.create()(React.createClass({
  10. getInitialState() {
  11. return {
  12. loading: false,
  13. targetKeys: [],
  14. selectedKeys: [],
  15. technicalSourceOption: [],
  16. };
  17. },
  18. componentWillMount() {
  19. let _me = this;
  20. technicalSourceList.map(function (item) {
  21. _me.state.technicalSourceOption.push(
  22. <Select.Option value={item.value} key={10000 + item.value}>{item.key}</Select.Option>
  23. )
  24. });
  25. this.state.targetKeys = this.props.data.intellectualPropertyNumber;
  26. },
  27. componentWillReceiveProps(nextProps) {
  28. if (nextProps.data) {
  29. this.state.targetKeys = nextProps.data.intellectualPropertyNumber;
  30. };
  31. },
  32. handleSubmit(e) {
  33. e.preventDefault();
  34. this.props.form.validateFields((err, values) => {
  35. if (!err) {
  36. this.props.spinState(true);
  37. $.ajax({
  38. method: "POST",
  39. dataType: "json",
  40. crossDomain: false,
  41. url: globalConfig.context + "/techservice/cognizance/techProduct",
  42. data: {
  43. id: this.props.data.id,
  44. serialNumber: values.serialNumber,
  45. productName: values.productName,
  46. technicalField1: values.techField[0],
  47. technicalField2: values.techField[1],
  48. technicalField3: values.techField[2],
  49. technicalSource: values.technicalSource,
  50. lastYearRevenue: values.lastYearRevenue,
  51. mainProduct: values.mainProduct,
  52. intellectualPropertyNumber: this.state.targetKeys.join(","),
  53. keyTechnology: values.keyTechnology,
  54. competitiveEdge: values.competitiveEdge,
  55. conditionEffect: values.conditionEffect
  56. }
  57. }).done(function (data) {
  58. if (!data.error.length) {
  59. message.success('保存成功!');
  60. this.props.closeModal();
  61. this.props.form.resetFields();
  62. this.state.targetKeys = [];
  63. this.state.selectedKeys = [];
  64. this.props.spinState(false);
  65. } else {
  66. message.warning(data.error[0].message);
  67. this.props.spinState(false);
  68. }
  69. }.bind(this));
  70. }
  71. });
  72. },
  73. intellectualChange(nextTargetKeys, direction, moveKeys) {
  74. this.setState({ targetKeys: nextTargetKeys });
  75. },
  76. intellectualSelectChange(sourceSelectedKeys, targetSelectedKeys) {
  77. this.setState({ selectedKeys: [...sourceSelectedKeys, ...targetSelectedKeys] });
  78. },
  79. render() {
  80. const FormItem = Form.Item;
  81. const { getFieldDecorator } = this.props.form;
  82. const theData = this.props.data;
  83. const formItemLayout = {
  84. labelCol: { span: 10 },
  85. wrapperCol: { span: 12 },
  86. };
  87. const _me = this;
  88. return (
  89. <Form onSubmit={this.handleSubmit} className="activityCost-form">
  90. <div className="clearfix">
  91. <FormItem className="half-item"
  92. {...formItemLayout}
  93. label="编号:ps"
  94. >
  95. {getFieldDecorator('serialNumber', {
  96. rules: [{ required: true, message: '此项为必填项!' }],
  97. initialValue: theData.serialNumber
  98. })(
  99. <Input />
  100. )}
  101. </FormItem>
  102. <FormItem className="half-item"
  103. {...formItemLayout}
  104. label="产品(服务)名称"
  105. >
  106. {getFieldDecorator('productName', {
  107. rules: [{ required: true, message: '此项为必填项!' }],
  108. initialValue: theData.productName
  109. })(
  110. <Input />
  111. )}
  112. </FormItem>
  113. </div>
  114. <div className="clearfix">
  115. <FormItem className="half-item"
  116. {...formItemLayout}
  117. label="技术来源"
  118. >
  119. {getFieldDecorator('technicalSource', {
  120. rules: [{ required: true, message: '此项为必填项!' }],
  121. initialValue: theData.technicalSource
  122. })(
  123. <Select placeholder="选择技术来源"
  124. onChange={(e) => { this.setState({ technicalSource: e }) }}>
  125. {this.state.technicalSourceOption}
  126. </Select>
  127. )}
  128. </FormItem>
  129. <FormItem className="half-item"
  130. labelCol={{ span: 10 }}
  131. label="上年度销售收入(万元)"
  132. >
  133. {getFieldDecorator('lastYearRevenue', {
  134. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  135. initialValue: theData.lastYearRevenue ? Number(theData.lastYearRevenue) : 0
  136. })(
  137. <InputNumber />
  138. )}
  139. </FormItem>
  140. </div>
  141. <FormItem
  142. labelCol={{ span: 5 }}
  143. wrapperCol={{ span: 16 }}
  144. label="技术领域"
  145. >
  146. {getFieldDecorator('techField', {
  147. rules: [{ type: "array", required: true, message: '此项为必填项!' }],
  148. initialValue: theData.techField
  149. })(
  150. <Cascader
  151. options={techFieldList}
  152. onChange={(value, selectedOptions) => { this.setState({ techField: value }); console.log(value) }}
  153. placeholder="请选择"
  154. showSearch
  155. />
  156. )}
  157. </FormItem>
  158. <div className="clearfix">
  159. <FormItem className="half-item"
  160. {...formItemLayout}
  161. label="是否主要产品(服务)"
  162. >
  163. {getFieldDecorator('mainProduct', {
  164. rules: [{ type: "number", required: true, message: '此项为必填项!' }],
  165. initialValue: theData.mainProduct
  166. })(
  167. <Radio.Group>
  168. <Radio value={1}>是</Radio>
  169. <Radio value={0}>否</Radio>
  170. </Radio.Group>
  171. )}
  172. </FormItem>
  173. </div>
  174. <p>知识产权编号:</p>
  175. <Transfer
  176. dataSource={this.props.mockData}
  177. listStyle={{
  178. width: 200,
  179. height: 200,
  180. }}
  181. titles={['未选择', '已选择']}
  182. targetKeys={this.state.targetKeys}
  183. selectedKeys={this.state.selectedKeys}
  184. onChange={this.intellectualChange}
  185. onSelectChange={this.intellectualSelectChange}
  186. render={item => `${item.name}-${item.key}`}
  187. />
  188. <div className="clearfix">
  189. <FormItem className="half-item"
  190. labelCol={{ span: 0 }}
  191. wrapperCol={{ span: 22 }}
  192. >
  193. <p>关键技术及主要技术指标(限400字)</p>
  194. {getFieldDecorator('keyTechnology', {
  195. rules: [{ required: true, message: '此项为必填项!' }],
  196. initialValue: theData.keyTechnology
  197. })(
  198. <Input type='textarea' rows={6} onChange={(e) => { if (e.target.value.length > 400) { return; } }} />
  199. )}
  200. </FormItem>
  201. <FormItem className="half-item"
  202. labelCol={{ span: 0 }}
  203. wrapperCol={{ span: 22 }}
  204. >
  205. <p>与同类产品(服务)的竞争优势(限400字)</p>
  206. {getFieldDecorator('competitiveEdge', {
  207. rules: [{ required: true, message: '此项为必填项!' }],
  208. initialValue: theData.competitiveEdge
  209. })(
  210. <Input type='textarea' rows={6} onChange={(e) => { if (e.target.value.length > 400) { return; } }} />
  211. )}
  212. </FormItem>
  213. <p style={{ lineHeight: "32px" }}>知识产权获得情况及其对产品(服务)在技术上发挥的支持作用(限400字)*</p>
  214. <FormItem className="half-item"
  215. labelCol={{ span: 0 }}
  216. wrapperCol={{ span: 22 }}
  217. >
  218. {getFieldDecorator('conditionEffect', {
  219. rules: [{ required: true, message: '此项为必填项!' }],
  220. initialValue: theData.conditionEffect
  221. })(
  222. <Input type='textarea' rows={6} onChange={(e) => { if (e.target.value.length > 400) { return; } }} />
  223. )}
  224. </FormItem>
  225. </div>
  226. <div style={{ width: '50%' }}>
  227. <Upload
  228. name="ratepay"
  229. action={globalConfig.context + "/techservice/cognizance/upload"}
  230. data={{ 'sign': this.props.year + 'proof' }}
  231. beforeUpload={beforeUploadFile}
  232. onChange={(info) => {
  233. if (info.file.status !== 'uploading') {
  234. console.log(info.file, info.fileList);
  235. }
  236. if (info.file.status === 'done') {
  237. message.success(`${info.file.name} 文件上传成功!`);
  238. this.state.proofUrl = info.file.response.data;
  239. } else if (info.file.status === 'error') {
  240. message.error(`${info.file.name} 文件上传失败。`);
  241. }
  242. }}
  243. >
  244. <Button><Icon type="upload" /> 上传台账 </Button>
  245. </Upload>
  246. </div>
  247. <FormItem style={{ marginTop: '20px' }}>
  248. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  249. <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
  250. </FormItem>
  251. </Form >
  252. );
  253. },
  254. }));
  255. const TechProductDesc = React.createClass({
  256. getInitialState() {
  257. return {
  258. visible: false,
  259. loading: false
  260. };
  261. },
  262. componentWillReceiveProps(nextProps) {
  263. this.state.visible = nextProps.showDesc
  264. },
  265. showModal() {
  266. this.setState({
  267. visible: true,
  268. });
  269. },
  270. handleOk() {
  271. this.setState({
  272. visible: false,
  273. });
  274. this.props.closeDesc(false);
  275. },
  276. handleCancel(e) {
  277. this.setState({
  278. visible: false,
  279. });
  280. this.props.closeDesc(false);
  281. },
  282. spinChange(e) {
  283. this.setState({
  284. loading: e
  285. });
  286. },
  287. render() {
  288. return (
  289. <div className="patent-addNew">
  290. <Spin spinning={this.state.loading} className='spin-box'>
  291. <Modal title="上年度高新技术产品(服务)情况表" visible={this.state.visible}
  292. onOk={this.handleOk} onCancel={this.handleCancel}
  293. width='800px'
  294. footer=''
  295. >
  296. <TechProductDescFrom data={this.props.data} mockData={this.props.mockData}
  297. spinState={this.spinChange} closeModal={this.handleCancel} />
  298. </Modal>
  299. </Spin>
  300. </div>
  301. );
  302. },
  303. });
  304. const TechProduct = React.createClass({
  305. loadData(pageNo) {
  306. this.state.data = [];
  307. this.setState({
  308. loading: true
  309. });
  310. $.when($.ajax({
  311. method: "get",
  312. dataType: "json",
  313. crossDomain: false,
  314. url: globalConfig.context + "/techservice/cognizance/techProductList",
  315. data: {
  316. pageNo: pageNo || 1,
  317. pageSize: this.state.pagination.pageSize
  318. }
  319. }), $.ajax({
  320. method: "get",
  321. dataType: "json",
  322. crossDomain: false,
  323. url: globalConfig.context + "/techservice/cognizance/intellectualList",
  324. data: {
  325. pageNo: pageNo || 1,
  326. pageSize: 99,
  327. }
  328. })).done((data1, data2) => {
  329. let data = data1[0];
  330. let intellectualList = data2[0];
  331. if (data.error.length || !data.data || !data.data.list) {
  332. message.warning(data.error[0].message);
  333. return;
  334. };
  335. if (intellectualList.error.length || !intellectualList.data || !intellectualList.data.list) {
  336. message.warning(intellectualList.error[0].message);
  337. return;
  338. };
  339. let theArr = [];
  340. for (let i = 0; i < intellectualList.data.list.length; i++) {
  341. theArr.push({
  342. key: intellectualList.data.list[i].intellectualPropertyNumber,
  343. name: intellectualList.data.list[i].intellectualPropertyName
  344. });
  345. };
  346. this.state.mockData = theArr;
  347. for (let i = 0; i < data.data.list.length; i++) {
  348. let thisdata = data.data.list[i];
  349. this.state.data.push({
  350. key: i,
  351. id: thisdata.id,
  352. uid: thisdata.uid,
  353. mockData: this.state.mockData,
  354. serialNumber: thisdata.serialNumber,
  355. productName: thisdata.productName,
  356. techField: [Number(thisdata.technicalField1), Number(thisdata.technicalField2), Number(thisdata.technicalField3)],
  357. technicalField: getTechField(thisdata.technicalField1, thisdata.technicalField2, thisdata.technicalField3),
  358. technicalField1: thisdata.technicalField1,
  359. technicalField2: thisdata.technicalField2,
  360. technicalField3: thisdata.technicalField3,
  361. technicalSource: String(thisdata.technicalSource),
  362. lastYearRevenue: thisdata.lastYearRevenue,
  363. mainProduct: thisdata.mainProduct,
  364. PropertyNumber: thisdata.intellectualPropertyNumber,
  365. intellectualPropertyNumber: thisdata.intellectualPropertyNumber ? thisdata.intellectualPropertyNumber.split(",") : [],
  366. keyTechnology: thisdata.keyTechnology,
  367. competitiveEdge: thisdata.competitiveEdge,
  368. conditionEffect: thisdata.conditionEffect,
  369. year: thisdata.year,
  370. createTime: thisdata.createTime,
  371. });
  372. };
  373. this.state.pagination.current = data.data.pageNo;
  374. this.state.pagination.total = data.data.totalCount;
  375. this.setState({
  376. dataSource: this.state.data,
  377. pagination: this.state.pagination
  378. });
  379. }).always(function () {
  380. this.setState({
  381. loading: false
  382. });
  383. }.bind(this));
  384. },
  385. getInitialState() {
  386. return {
  387. selectedRowKeys: [],
  388. selectedRows: [],
  389. loading: false,
  390. pagination: {
  391. defaultCurrent: 1,
  392. defaultPageSize: 10,
  393. showQuickJumper: true,
  394. pageSize: 10,
  395. onChange: function (page) {
  396. this.loadData(page);
  397. }.bind(this),
  398. showTotal: function (total) {
  399. return '共' + total + '条数据';
  400. }
  401. },
  402. columns: [
  403. {
  404. title: '产品编号',
  405. dataIndex: 'serialNumber',
  406. key: 'serialNumber'
  407. }, {
  408. title: '产品(服务)名称',
  409. dataIndex: 'productName',
  410. key: 'productName'
  411. }, {
  412. title: '技术领域',
  413. dataIndex: 'technicalField',
  414. key: 'technicalField'
  415. }, {
  416. title: '技术来源',
  417. dataIndex: 'technicalSource',
  418. key: 'technicalSource',
  419. render: (text) => { return getTechnicalSource(text) }
  420. }, {
  421. title: '上年度销售收入(万元)',
  422. dataIndex: 'lastYearRevenue',
  423. key: 'lastYearRevenue'
  424. }, {
  425. title: '是否主要产品(服务)',
  426. dataIndex: 'mainProduct',
  427. key: 'mainProduct',
  428. render: (text) => { if (text == "1") { return '是' } else { return '否' } }
  429. }, {
  430. title: '知识产权编号',
  431. dataIndex: 'PropertyNumber',
  432. key: 'PropertyNumber'
  433. }
  434. ],
  435. dataSource: []
  436. };
  437. },
  438. componentWillMount() {
  439. this.loadData();
  440. },
  441. tableRowClick(record, index) {
  442. this.state.RowData = record;
  443. this.setState({
  444. showDesc: true
  445. });
  446. },
  447. delectRow() {
  448. let deletedIds = [];
  449. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  450. let rowItem = this.state.selectedRows[idx];
  451. if (rowItem.id) {
  452. deletedIds.push(rowItem.id)
  453. }
  454. }
  455. this.setState({
  456. selectedRowKeys: [],
  457. loading: deletedIds.length > 0
  458. });
  459. $.ajax({
  460. method: "POST",
  461. dataType: "json",
  462. crossDomain: false,
  463. url: globalConfig.context + "/techservice/cognizance/deleteTechProduct",
  464. data: {
  465. ids: deletedIds
  466. }
  467. }).done(function (data) {
  468. if (!data.error.length) {
  469. message.success('保存成功!');
  470. this.setState({
  471. loading: false,
  472. });
  473. } else {
  474. message.warning(data.error[0].message);
  475. };
  476. this.loadData();
  477. }.bind(this));
  478. },
  479. closeDesc(e) {
  480. this.state.showDesc = e;
  481. this.loadData();
  482. },
  483. search() {
  484. this.loadData();
  485. },
  486. reset() {
  487. this.loadData();
  488. },
  489. render() {
  490. const rowSelection = {
  491. selectedRowKeys: this.state.selectedRowKeys,
  492. onChange: (selectedRowKeys, selectedRows) => {
  493. this.setState({
  494. selectedRows: selectedRows,
  495. selectedRowKeys: selectedRowKeys
  496. });
  497. }
  498. };
  499. const hasSelected = this.state.selectedRowKeys.length > 0;
  500. return (
  501. <div className="user-content" >
  502. <div className="content-title">
  503. <span>上年度高新技术产品(服务)情况表</span>
  504. </div>
  505. <div className="user-search">
  506. <p>
  507. <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
  508. onClick={this.tableRowClick}>添加<Icon type="plus" /></Button>
  509. <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
  510. disabled={!hasSelected}
  511. onClick={this.delectRow}>删除<Icon type="minus" /></Button>
  512. </p>
  513. </div>
  514. <div className="patent-table">
  515. <Spin spinning={this.state.loading}>
  516. <Table columns={this.state.columns}
  517. dataSource={this.state.dataSource}
  518. pagination={this.state.pagination}
  519. rowSelection={rowSelection}
  520. onRowClick={this.tableRowClick} />
  521. </Spin>
  522. </div>
  523. <TechProductDesc data={this.state.RowData}
  524. mockData={this.state.mockData}
  525. showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
  526. </div >
  527. );
  528. }
  529. });
  530. export default TechProduct;