import React from 'react'; import { Icon, Button, Input, Select, Spin, Table, Switch, DatePicker, message } from 'antd'; import { patentTypeList, patentStateList, provinceArr } from '../../../dataDic.js'; import { getTime, getPatentState,getPatentType } from '../../../tools.js'; import ajax from 'jquery/src/ajax/xhr.js'; import $ from 'jquery/src/ajax'; import './comprehensive.less'; import CorrectionDesc from './correctionDesc.jsx'; const Correction = React.createClass({ loadData(pageNo) { this.state.data = []; this.setState({ loading: true }); $.ajax({ method: "post", dataType: "json", crossDomain: false, url: globalConfig.context + "/techservice/patent/noticeOfCorrectionList", data: { pageNo: pageNo || 1, pageSize: this.state.pagination.pageSize }, success: function (data) { if (data.error.length || !data.data || !data.data.list) { message.warning(data.error[0].message); 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.pid, number: thisdata.serialNumber, patentNumber: thisdata.patentNumber, office: thisdata.office, locationProvince: thisdata.locationProvince, unitName: thisdata.unitName, patentType: thisdata.patentCatagory, patentName: thisdata.patentName, patentState: thisdata.patentState, province:thisdata.locationProvince, endData:[thisdata.patentCatagory,thisdata.authorizedDate], author: thisdata.author, authorizedDate: thisdata.authorizedDate }); }; 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 { serialNumber: '', patentNumber: '', office: '', locationProvince: '', unitName: '', patentCatagory: '', patentName: '', patentState: '', author: '', authorizedDate: '', 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: 'endData', key: 'endData', render: text => { if ( text[0] == '0') { return getTime(text[1],2) } else if ( text[0] == '1' || text[0] == '2') { return getTime(text[1],4) } }, }, { title: '编号', dataIndex: 'number', key: 'number', }, { title: '申请号/专利号', dataIndex: 'patentNumber', key: 'patentNumber', }, { title: '事务所', dataIndex: 'office', key: 'office', }, { title: '省份', dataIndex: 'province', key: 'province', }, { title: '公司名称', dataIndex: 'companyName', key: 'companyName', }, { title: '专利类型', dataIndex: 'patentType', key: 'patentType', render: text => { return getPatentType(text) }, }, { title: '专利名称', dataIndex: 'patentName', key: 'patentName', }, { title: '专利状态', dataIndex: 'patentState', key: 'patentState', render: text => { return getPatentState(text) }, }, { title: '资料撰写人', dataIndex: 'author', key: 'author', } ], dataSource: [] }; }, componentWillMount() { this.loadData(); }, tableRowClick(record, index) { this.state.RowData = record; this.setState({ showDesc: true }); }, closeDesc(e) { this.state.showDesc = e; this.loadData(); }, render() { const { MonthPicker, RangePicker } = DatePicker; return (