comprehensive.jsx 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. import React from 'react';
  2. import { Icon, Button, Input, Select, Spin, Table, Switch, DatePicker, message, Upload } from 'antd';
  3. import { patentTypeList, patentStateList, provinceArr } from '../../../dataDic.js';
  4. import { getTime, getPatentState, beforeUploadFile, companySearch } from '../../../tools.js';
  5. import ajax from 'jquery/src/ajax/xhr.js';
  6. import $ from 'jquery/src/ajax';
  7. import moment from 'moment';
  8. import './comprehensive.less';
  9. import PatentAdd from './comPatentAdd.jsx';
  10. import PatentDesc from './comPatentDesc.jsx';
  11. const Patent = React.createClass({
  12. loadData(pageNo) {
  13. this.state.data = [];
  14. this.setState({
  15. loading: true
  16. });
  17. $.ajax({
  18. method: "get",
  19. dataType: "json",
  20. crossDomain: false,
  21. url: globalConfig.context + "/api/admin/patent/patentList",
  22. data: {
  23. page: pageNo || 1,
  24. pageSize: this.state.pagination.pageSize || null,
  25. serialNumber: this.state.number || null,
  26. patentNumber: this.state.patentNumber || null,
  27. patentName: this.state.patentName || null,
  28. locationProvince: this.state.province || null,
  29. unitName: this.state.unitName || null,
  30. patentCatagory: this.state.patentType || null,
  31. patentState: this.state.patentState || null,
  32. createTime: this.state.createTime || null,
  33. patentApplicationDate: this.state.acceptTime || null,
  34. authorizedDate: this.state.authTime || null,
  35. },
  36. success: function (data) {
  37. if (data.error.length || !data.data || !data.data.list) {
  38. message.warning(data.error[0].message);
  39. return;
  40. }
  41. for (let i = 0; i < data.data.list.length; i++) {
  42. let thisdata = data.data.list[i];
  43. this.state.data.push({
  44. key: i,
  45. pid: thisdata.id,
  46. oid: thisdata.oid,
  47. uid: thisdata.uid,
  48. number: thisdata.serialNumber || '',
  49. patentNumber: thisdata.patentNumber || '',
  50. unitName: thisdata.unitName || '',
  51. patentName: thisdata.patentName || '',
  52. patentCatagory: thisdata.patentCatagory || '0',
  53. patentState: thisdata.patentState || '0',
  54. patentField: thisdata.patentField || '0',
  55. patentDes: thisdata.patentDes || '',
  56. patentProryStatementUrl: thisdata.patentProryStatementUrl, //专利代理委托书
  57. patentWritingUrl: thisdata.patentWritingUrl, //专利稿件
  58. authorizationNoticeUrl: thisdata.authorizationNoticeUrl, //授权通知书
  59. patentCertificateUrl: thisdata.patentCertificateUrl, //专利证书
  60. lastYearTaxReportUrl: thisdata.lastYearTaxReportUrl, //上年度纳税表
  61. patentProryStatementDownloadFileName: thisdata.patentProryStatementDownloadFileName, //专利代理委托书
  62. patentWritingDownloadFileName: thisdata.patentWritingDownloadFileName, //专利稿件
  63. authorizationNoticeDownloadFileName: thisdata.authorizationNoticeDownloadFileName, //授权通知书
  64. patentCertificateDownloadFileName: thisdata.patentCertificateDownloadFileName, //专利证书
  65. lastYearTaxReportDownloadFileName: thisdata.lastYearTaxReportDownloadFileName, //上年度纳税表
  66. startTime: thisdata.patentApplicationDate,
  67. endTime: thisdata.authorizedDate,
  68. orgCode: thisdata.orgCode,
  69. province: thisdata.locationProvince,
  70. companyAddress: thisdata.locationProvince || thisdata.locationCity || thisdata.locationArea ? thisdata.locationProvince + '/' + thisdata.locationCity + '/' + thisdata.locationArea : '',
  71. companyContacts: thisdata.contacts, //联系人
  72. firstInventorName: thisdata.firstInventorName,
  73. firstInventorNationality: thisdata.firstInventorNationality, //国籍
  74. firstInventorIdNumber: thisdata.firstInventorIdNumber, //id
  75. firstInventorIsPublish: thisdata.firstInventorIsPublish, //是否公布
  76. secondInventorName: thisdata.secondInventorName,
  77. secondInventorNationality: thisdata.secondInventorNationality,
  78. secondInventorIsPublish: thisdata.secondInventorIsPublish,
  79. thirdInventorName: thisdata.thirdInventorName,
  80. thirdInventorNationality: thisdata.thirdInventorNationality,
  81. thirdInventorIsPublish: thisdata.thirdInventorIsPublish,
  82. createTime: thisdata.createTime, //派单日
  83. author: thisdata.author, //撰写人
  84. office: thisdata.office, //事务所
  85. principal: thisdata.principal //负责人
  86. });
  87. };
  88. this.state.pagination.current = data.data.pageNo;
  89. this.state.pagination.total = data.data.totalCount;
  90. this.setState({
  91. dataSource: this.state.data,
  92. pagination: this.state.pagination
  93. });
  94. }.bind(this),
  95. }).always(function () {
  96. this.setState({
  97. loading: false
  98. });
  99. }.bind(this));
  100. },
  101. getCompanyList() {
  102. this.setState({
  103. loading: true
  104. });
  105. $.ajax({
  106. method: "get",
  107. dataType: "json",
  108. crossDomain: false,
  109. url: globalConfig.context + "/api/admin/getUnitNames",
  110. success: function (data) {
  111. if (data.error.length || !data.data) {
  112. return;
  113. };
  114. let _me = this;
  115. for (var item in data.data) {
  116. _me.state.companyOption.push(
  117. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  118. )
  119. };
  120. }.bind(this),
  121. }).always(function () {
  122. this.setState({
  123. loading: false
  124. });
  125. }.bind(this));
  126. },
  127. getInitialState() {
  128. return {
  129. createTime: [],
  130. acceptTime: [],
  131. authTime: [],
  132. patentTypeOption: [],
  133. patentStateOption: [],
  134. companyOption: [],
  135. provinceOption: [],
  136. searchMore: true,
  137. data: [],
  138. loading: false,
  139. selectedRowKeys: [],
  140. selectedRows: [],
  141. pagination: {
  142. defaultCurrent: 1,
  143. defaultPageSize: 10,
  144. showQuickJumper: true,
  145. pageSize: 10,
  146. onChange: function (page) {
  147. this.loadData(page);
  148. }.bind(this),
  149. showTotal: function (total) {
  150. return '共' + total + '条数据';
  151. }
  152. },
  153. columns: [
  154. {
  155. title: '编号',
  156. dataIndex: 'number',
  157. key: 'number',
  158. }, {
  159. title: '申请号/专利号',
  160. dataIndex: 'patentNumber',
  161. key: 'patentNumber',
  162. }, {
  163. title: '事务所',
  164. dataIndex: 'office',
  165. key: 'office',
  166. }, {
  167. title: '省份',
  168. dataIndex: 'province',
  169. key: 'province',
  170. }, {
  171. title: '公司名称',
  172. dataIndex: 'unitName',
  173. key: 'unitName',
  174. }, {
  175. title: '专利名称',
  176. dataIndex: 'patentName',
  177. key: 'patentName',
  178. }, {
  179. title: '专利状态',
  180. dataIndex: 'patentState',
  181. key: 'patentState',
  182. render: text => { return getPatentState(text) },
  183. }, {
  184. title: '派单日',
  185. dataIndex: 'createTime',
  186. key: 'createTime',
  187. render: text => { return getTime(text) },
  188. }, {
  189. title: '申请日',
  190. dataIndex: 'startTime',
  191. key: 'startTime',
  192. render: text => { return getTime(text) },
  193. }, {
  194. title: '授权日',
  195. dataIndex: 'endTime',
  196. key: 'endTime',
  197. render: text => { return getTime(text) },
  198. }
  199. ],
  200. dataSource: []
  201. };
  202. },
  203. componentWillMount() {
  204. let _me = this;
  205. patentTypeList.map(function (item) {
  206. _me.state.patentTypeOption.push(
  207. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  208. )
  209. });
  210. patentStateList.map(function (item) {
  211. _me.state.patentStateOption.push(
  212. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  213. )
  214. });
  215. provinceArr.map(function (item) {
  216. _me.state.provinceOption.push(
  217. <Select.Option value={item} key={item}>{item}</Select.Option>
  218. )
  219. });
  220. this.loadData();
  221. this.getCompanyList();
  222. },
  223. tableRowClick(record, index) {
  224. this.state.RowData = record;
  225. this.setState({
  226. showDesc: true
  227. });
  228. },
  229. closeDesc(e, s) {
  230. this.state.showDesc = e;
  231. if (s) {
  232. this.loadData();
  233. };
  234. },
  235. search() {
  236. this.loadData();
  237. },
  238. reset() {
  239. this.state.number = undefined;
  240. this.state.patentNumber = undefined;
  241. this.state.province = undefined;
  242. this.state.unitName = undefined;
  243. this.state.patentType = undefined;
  244. this.state.patentName = undefined;
  245. this.state.patentState = undefined;
  246. this.state.createTime = [];
  247. this.state.acceptTime = [];
  248. this.state.authTime = [];
  249. this.state.searchKey = undefined;
  250. this.state.searchValue = undefined;
  251. this.loadData();
  252. },
  253. exportComposite() {
  254. window.open(globalConfig.context + "/api/admin/patent/exportComposite" +
  255. "?" + "serialNumber" + "=" + this.state.number +
  256. "&" + "patentNumber" + "=" + this.state.patentNumber +
  257. "&" + "patentName" + "=" + this.state.patentName +
  258. "&" + "locationProvince" + "=" + this.state.locationProvince +
  259. "&" + "unitName" + "=" + this.state.unitName +
  260. "&" + "patentCatagory" + "=" + this.state.patentCatagory +
  261. "&" + "patentState" + "=" + this.state.patentState +
  262. "&" + "createTime" + "=" + this.state.createTime +
  263. "&" + "patentApplicationDate" + "=" + this.state.acceptTime +
  264. "&" + "author" + "=" + this.state.author);
  265. },
  266. searchSwitch() {
  267. this.setState({
  268. searchMore: !this.state.searchMore
  269. });
  270. },
  271. searchSelect(e) {
  272. let _me = this;
  273. this.setState({
  274. searchValue: e.target.value
  275. });
  276. switch (_me.state.searchKey) {
  277. case "patentNumber":
  278. _me.state.patentNumber = e.target.value;
  279. _me.state.number = '';
  280. _me.state.patentName = '';
  281. break;
  282. case "serialNumber":
  283. _me.state.number = e.target.value;
  284. _me.state.patentNumber = '';
  285. _me.state.patentName = '';
  286. break;
  287. case "patentName":
  288. _me.state.patentNumber = '';
  289. _me.state.number = '';
  290. _me.state.patentName = e.target.value;
  291. break;
  292. }
  293. },
  294. delectRow() {
  295. let deletedIds = [];
  296. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  297. let rowItem = this.state.selectedRows[idx];
  298. if (rowItem.pid) {
  299. deletedIds.push(rowItem.pid)
  300. }
  301. }
  302. this.setState({
  303. selectedRowKeys: [],
  304. loading: deletedIds.length > 0
  305. });
  306. $.ajax({
  307. method: "POST",
  308. dataType: "json",
  309. crossDomain: false,
  310. url: globalConfig.context + "/api/admin/patent/delete",
  311. data: {
  312. ids: deletedIds
  313. }
  314. }).done(function (data) {
  315. if (!data.error.length) {
  316. message.success('保存成功!');
  317. this.setState({
  318. loading: false,
  319. });
  320. } else {
  321. message.warning(data.error[0].message);
  322. };
  323. this.loadData();
  324. }.bind(this));
  325. },
  326. render() {
  327. const rowSelection = {
  328. selectedRowKeys: this.state.selectedRowKeys,
  329. onChange: (selectedRowKeys, selectedRows) => {
  330. this.setState({
  331. selectedRows: selectedRows,
  332. selectedRowKeys: selectedRowKeys
  333. });
  334. }
  335. };
  336. const hasSelected = this.state.selectedRowKeys.length > 0;
  337. const { MonthPicker, RangePicker } = DatePicker;
  338. return (
  339. <div className="patent-content" >
  340. <div className="content-title">
  341. <span>专利综合管理</span>
  342. <div className="patent-addNew">
  343. <Upload style={{ float: 'right' }}
  344. name="ratepay"
  345. showUploadList={false}
  346. action={globalConfig.context + "/api/admin/patent/uploadTemplate"}
  347. data={{ 'sign': 'patent_prory_statement' }}
  348. beforeUpload={beforeUploadFile}
  349. onChange={(info) => {
  350. if (info.file.status === 'done') {
  351. if (!info.file.response.error.length) {
  352. if (!info.file.response.error.length) {
  353. message.success(`${info.file.name} 文件上传成功!`);
  354. } else {
  355. message.warning(info.file.response.error[0].message);
  356. return;
  357. };
  358. } else {
  359. message.warning(info.file.response.error[0].message);
  360. };
  361. } else if (info.file.status === 'error') {
  362. message.error(`${info.file.name} 文件上传失败。`);
  363. }
  364. }}
  365. >
  366. <Button>上传专利代理委托书模板 <Icon type="upload" /></Button>
  367. </Upload>
  368. </div>
  369. <PatentAdd closeDesc={this.closeDesc} />
  370. </div>
  371. <div className="patent-query">
  372. <Select placeholder="请选择" value={this.state.searchKey} style={{ width: 160 }} onChange={(e) => { this.setState({ searchKey: e, searchValue: '' }); }}>
  373. <Select.Option value="patentNumber">专利号</Select.Option>
  374. <Select.Option value="serialNumber">编号</Select.Option>
  375. <Select.Option value="patentName">专利名称</Select.Option>
  376. </Select>
  377. <Input value={this.state.searchValue} style={{ width: 160 }} onChange={this.searchSelect} />
  378. <Select placeholder="专利状态" value={this.state.patentState} style={{ width: 160 }} onChange={(e) => { this.setState({ patentState: e }); }}>{this.state.patentStateOption}</Select>
  379. <span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
  380. <Button type="primary" onClick={this.search}>搜索</Button>
  381. <Button onClick={this.reset}>重置</Button>
  382. <Button type="ghost" onClick={this.exportComposite}>导出</Button>
  383. <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
  384. disabled={!hasSelected}
  385. onClick={this.delectRow}>删除<Icon type="minus" /></Button>
  386. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  387. <div>
  388. <span>派单日:</span>
  389. <RangePicker style={{ width: '240px' }}
  390. allowClear={false}
  391. value={[this.state.createTime[0] ? moment(this.state.createTime[0]) : null,
  392. this.state.createTime[1] ? moment(this.state.createTime[1]) : null]}
  393. onChange={(date, dateString) => { this.setState({ createTime: dateString }) }} />
  394. <span>申请日:</span>
  395. <RangePicker style={{ width: '240px' }}
  396. allowClear={false}
  397. value={[this.state.acceptTime[0] ? moment(this.state.acceptTime[0]) : null,
  398. this.state.acceptTime[1] ? moment(this.state.acceptTime[1]) : null]}
  399. onChange={(date, dateString) => { this.setState({ acceptTime: dateString }) }} />
  400. <Select placeholder="选择省份"
  401. showSearch
  402. filterOption={companySearch}
  403. style={{ width: 200 }}
  404. onChange={(e) => { this.state.province = e }}>
  405. {this.state.provinceOption}
  406. </Select>
  407. <Select placeholder="选择公司"
  408. style={{ width: 200 }}
  409. showSearch
  410. filterOption={companySearch}
  411. onChange={(e) => { this.state.companyName = e }}>
  412. {this.state.companyOption}
  413. </Select>
  414. </div>
  415. </div>
  416. </div>
  417. <div className="patent-table">
  418. <Spin spinning={this.state.loading}>
  419. <Table columns={this.state.columns}
  420. rowSelection={rowSelection}
  421. dataSource={this.state.dataSource}
  422. pagination={this.state.pagination}
  423. onRowClick={this.tableRowClick} />
  424. </Spin>
  425. </div>
  426. <PatentDesc data={this.state.RowData} showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
  427. </div >
  428. );
  429. }
  430. });
  431. export default Patent;
  432. // <span>授权日:</span>
  433. // <RangePicker style={{ width: '240px' }}
  434. // allowClear={false}
  435. // value={[moment(this.state.authTime[0]), moment(this.state.authTime[1])]}
  436. // onChange={(date, dateString) => { this.setState({ authTime: dateString }) }} />