123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- import React from 'react';
- import { Icon, Button, Input, Select, Spin, Table, message } from 'antd';
- import { patentTypeList, patentStateList } from '../../dataDic.js';
- import { getPatentType, getPatentState, getTime, setUserContactsList } from '../../tools.js';
- import ajax from 'jquery/src/ajax/xhr.js'
- import $ from 'jquery/src/ajax';
- import './patent.less';
- import PatentAdd from './patentAdd.jsx';
- import PatentDesc from './patentDesc.jsx';
- const Patent = React.createClass({
- loadData(pageNo) {
- this.state.data = [];
- this.setState({
- loading: true
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/user/patent/clientApplyList",
- data: {
- pageNo: pageNo || 1,
- pageSize: this.state.pagination.pageSize,
- patentNumber: this.state.searchNum,
- patentName: this.state.searchName,
- patentCatagory: this.state.searchType,
- patentState: this.state.searchState
- },
- success: function (data) {
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- this.state.ButtonDisabled = true;
- }
- return;
- };
- for (let i = 0; i < data.data.list.length; i++) {
- let thisdata = data.data.list[i];
- this.state.data.push({
- key: i,
- pid: thisdata.id,
- number: thisdata.serialNumber,
- patentNum: thisdata.patentNumber,
- patentName: thisdata.patentName,
- patentCatagory: thisdata.patentCatagory ? getPatentType(thisdata.patentCatagory) : '',
- patentState: thisdata.patentState,
- patentField: thisdata.patentField,
- patentDes: thisdata.patentDes,
- patentProryStatementUrl: thisdata.patentProryStatementUrl, //专利代理委托书
- patentWritingUrl: thisdata.patentWritingUrl, //专利稿件
- authorizationNoticeUrl: thisdata.authorizationNoticeUrl, //授权通知书
- patentCertificateUrl: thisdata.patentCertificateUrl, //专利证书
- confirmState: thisdata.confirmState, //稿件确认状态
- authorizedTime: getTime(thisdata.authorizedDate),
- startTime: getTime(thisdata.patentApplicationDate),
- endTime: getTime(thisdata.patentApplicationDate, 12),
- firstInventorName: thisdata.firstInventorName,
- firstInventorNationality: thisdata.firstInventorNationality, //国籍
- firstInventorIdNumber: thisdata.firstInventorIdNumber, //id
- firstInventorIsPublish: thisdata.firstInventorIsPublish, //是否公布
- secondInventorName: thisdata.secondInventorName,
- secondInventorNationality: thisdata.secondInventorNationality,
- secondInventorIsPublish: thisdata.secondInventorIsPublish,
- thirdInventorName: thisdata.thirdInventorName,
- thirdInventorNationality: thisdata.thirdInventorNationality,
- thirdInventorIsPublish: thisdata.thirdInventorIsPublish,
- createTime: thisdata.createTime, //派单日
- author: thisdata.author, //撰写人
- office: thisdata.office, //事务所
- principal: thisdata.principal //负责人
- });
- };
- this.state.pagination.current = data.data.pageNo;
- this.state.pagination.total = data.data.totalCount;
- this.setState({
- dataSource: this.state.data,
- pagination: this.state.pagination
- });
- }.bind(this),
- }).always(function () {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- getInitialState() {
- return {
- patentTypeOption: [],
- patentStateOption: [],
- data: [],
- //dataSource: [],
- loading: false,
- pagination: {
- defaultCurrent: 1,
- defaultPageSize: 10,
- showQuickJumper: true,
- pageSize: 10,
- onChange: function (page) {
- this.loadData(page);
- }.bind(this),
- showTotal: function (total) {
- return '共' + total + '条数据';
- }
- },
- columns: [
- {
- title: '编号',
- dataIndex: 'number',
- key: 'number',
- }, {
- title: '申请号/专利号',
- dataIndex: 'patentNum',
- key: 'patentNum',
- }, {
- title: '专利类型',
- dataIndex: 'patentCatagory',
- key: 'patentCatagory',
- }, {
- title: '专利名称',
- dataIndex: 'patentName',
- key: 'patentName',
- }, {
- title: '专利状态',
- dataIndex: 'patentState',
- key: 'patentState',
- render: (text) => {
- if (text == '13') {
- return '已完成'
- } else {
- return getPatentState(text)
- }
- }
- }, {
- title: '申请日',
- dataIndex: 'startTime',
- key: 'startTime',
- }, {
- title: '授权缴费截止日',
- dataIndex: 'endTime',
- key: 'endTime',
- }
- ],
- dataSource: []
- };
- },
- componentWillMount() {
- let _me = this;
- patentTypeList.map(function (item) {
- _me.state.patentTypeOption.push(
- <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
- )
- });
- patentStateList.map(function (item) {
- if (item.value == '13') {
- _me.state.patentStateOption.push(
- <Select.Option value={item.value} key={item.key}>已完成</Select.Option>
- )
- } else {
- _me.state.patentStateOption.push(
- <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
- )
- }
- });
- this.loadData();
- this.state.contactsOption = setUserContactsList();
- },
- tableRowClick(record, index) {
- this.state.RowData = record;
- this.setState({
- showDesc: true
- });
- },
- closeDesc(e, s) {
- this.state.showDesc = e;
- if (s) {
- this.loadData();
- };
- },
- search() {
- this.loadData();
- },
- reset() {
- this.state.searchNum = undefined;
- this.state.searchName = undefined;
- this.state.searchType = undefined;
- this.state.searchState = undefined;
- this.loadData();
- },
- render() {
- return (
- <div className="patent-content" >
- <div className="content-title">
- <span>专利申请管理</span>
- </div>
- <div className="patent-query">
- <Input placeholder="专利号" value={this.state.searchNum} onChange={(e) => { this.setState({ searchNum: e.target.value }); }} />
- <Input placeholder="专利名称" value={this.state.searchName} onChange={(e) => { this.setState({ searchName: e.target.value }); }} />
- <Select placeholder="专利类型" value={this.state.searchType} style={{ width: 200 }} onChange={(e) => { this.setState({ searchType: e }); }}>{this.state.patentTypeOption}</Select>
- <Select placeholder="专利状态" value={this.state.searchState} style={{ width: 200 }} onChange={(e) => { this.setState({ searchState: e }); }}>{this.state.patentStateOption}</Select>
- <Button type="primary" onClick={this.search}>搜索</Button>
- <Button type="ghost" onClick={this.reset}>重置</Button>
- </div>
- <div className="patent-table">
- <Spin spinning={this.state.loading}>
- <Table columns={this.state.columns}
- dataSource={this.state.dataSource}
- pagination={this.state.pagination}
- style={{
- cursor: 'pointer',
- }}
- onRowClick={this.tableRowClick} />
- </Spin>
- </div>
- <PatentDesc data={this.state.RowData} showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
- </div >
- );
- }
- });
- export default Patent;
- // {userData.type == '0' ? <span></span> : <PatentAdd ButtonDisabled={this.state.ButtonDisabled} closeDesc={this.closeDesc} />}
|