|
@@ -1,25 +1,51 @@
|
|
|
import React from 'react';
|
|
|
-import { Icon, Modal, message, Spin, Steps, Input, Select, Upload, DatePicker, Button, Row, Col } from 'antd';
|
|
|
+import { Icon, Modal, message, Spin, Input, Select, DatePicker, Button, Row, Col, Table, Form } from 'antd';
|
|
|
import './comprehensive.less';
|
|
|
import ajax from 'jquery/src/ajax/xhr.js';
|
|
|
import $ from 'jquery/src/ajax';
|
|
|
-import { patentTypeList, patentFieldList, patentStateList } from '../../../dataDic.js';
|
|
|
-import { getBase64, beforeUpload, getPatentState, getTime } from '../../../tools.js';
|
|
|
+import { copyrightStateList } from '../../../dataDic.js';
|
|
|
+import { getCopyrightState, getTime } from '../../../tools.js';
|
|
|
|
|
|
-const PatentDesc = React.createClass({
|
|
|
+const CopyrightDescForm = Form.create()(React.createClass({
|
|
|
getInitialState() {
|
|
|
return {
|
|
|
visible: false,
|
|
|
loading: false,
|
|
|
- patentTypeOption: [],
|
|
|
- patentFieldOption: [],
|
|
|
- patentStateOption: [],
|
|
|
- adminOption: [],
|
|
|
- patentProcessList: [],
|
|
|
- companyOption: []
|
|
|
+ stateOption: [],
|
|
|
+ contactsOption: [],
|
|
|
+ stateColumns: [{
|
|
|
+ title: '申请状态',
|
|
|
+ dataIndex: 'state',
|
|
|
+ key: 'state',
|
|
|
+ render: (text) => { return getCopyrightState(text) }
|
|
|
+ }, {
|
|
|
+ title: '处理时间',
|
|
|
+ dataIndex: 'recordTimeFormattedDate',
|
|
|
+ key: 'recordTimeFormattedDate',
|
|
|
+ }, {
|
|
|
+ title: '负责人',
|
|
|
+ dataIndex: 'principal',
|
|
|
+ key: 'principal',
|
|
|
+ }, {
|
|
|
+ title: '操作人',
|
|
|
+ dataIndex: 'operator',
|
|
|
+ key: 'operator',
|
|
|
+ }, {
|
|
|
+ title: '备注',
|
|
|
+ dataIndex: 'comment',
|
|
|
+ key: 'comment',
|
|
|
+ }]
|
|
|
};
|
|
|
},
|
|
|
- loadData() {
|
|
|
+ componentWillMount() {
|
|
|
+ let _me = this;
|
|
|
+ copyrightStateList.map(function (item) {
|
|
|
+ _me.state.stateOption.push(
|
|
|
+ <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
|
|
|
+ )
|
|
|
+ });
|
|
|
+ },
|
|
|
+ loadData(uid, cid, year) {
|
|
|
this.setState({
|
|
|
loading: true
|
|
|
});
|
|
@@ -27,7 +53,7 @@ const PatentDesc = React.createClass({
|
|
|
method: "post",
|
|
|
dataType: "json",
|
|
|
crossDomain: false,
|
|
|
- url: globalConfig.context + "/techservice/patent/patentProcess",
|
|
|
+ url: globalConfig.context + "/api/admin/cognizanceLog",
|
|
|
data: {
|
|
|
pid: this.state.xid
|
|
|
}
|
|
@@ -35,74 +61,259 @@ const PatentDesc = React.createClass({
|
|
|
method: "get",
|
|
|
dataType: "json",
|
|
|
crossDomain: false,
|
|
|
- url: globalConfig.context + "/techservice/patent/getAdmin"
|
|
|
+ url: globalConfig.context + "/api/admin/getContacts"
|
|
|
}), $.ajax({
|
|
|
- method: "get",
|
|
|
+ method: "get",
|
|
|
dataType: "json",
|
|
|
crossDomain: false,
|
|
|
- url: globalConfig.context + "/techservice/patent/getUnitNames",
|
|
|
+ url: globalConfig.context + "/api/admin/getContacts",
|
|
|
})).done((data1, data2, data3) => {
|
|
|
+ //状态流转table
|
|
|
if (data1[0].error.length) {
|
|
|
message.warning(data1[0].error[0].message);
|
|
|
return;
|
|
|
};
|
|
|
let _me = this;
|
|
|
+ this.state.stateTable = [];
|
|
|
data1[0].data.map(function (item) {
|
|
|
- _me.state.patentProcessList.push(
|
|
|
- <p className="patent-process-list" key={item.id}>
|
|
|
- <span>专利状态: {getPatentState(item.state)}</span>
|
|
|
- <span>处理时间: {getTime(item.recordTime)}</span>
|
|
|
- <span>负责人:{item.principal}</span>
|
|
|
- <span>操作人:{item.operator}</span>
|
|
|
- </p>
|
|
|
- )
|
|
|
+ this.state.stateTable.push({
|
|
|
+ key: i,
|
|
|
+ recordTimeFormattedDate: item.recordTimeFormattedDate,
|
|
|
+ state: item.state,
|
|
|
+ principal: item.principal,
|
|
|
+ operator: item.operator,
|
|
|
+ comment: item.comment
|
|
|
+ });
|
|
|
});
|
|
|
+ //获取联系人
|
|
|
if (data2[0].error.length) {
|
|
|
message.warning(data2[0].error[0].message);
|
|
|
return;
|
|
|
};
|
|
|
- for (var item in data2[0].data) {
|
|
|
- _me.state.adminOption.push(
|
|
|
- <Select.Option value={item} key={item}>{data2[0].data[item]}</Select.Option>
|
|
|
- )
|
|
|
+ this.state.contactsOption = [];
|
|
|
+ for (let item in data2[0].data) {
|
|
|
+ let theData = data2[0].data[item];
|
|
|
+ contactsOption.push(
|
|
|
+ <Select.Option value={item} key={theData}>{theData}</Select.Option>
|
|
|
+ );
|
|
|
};
|
|
|
+ //获取详细数据
|
|
|
if (data3[0].error.length || !data3[0].data) {
|
|
|
- return;
|
|
|
- };
|
|
|
- for (var item in data3[0].data) {
|
|
|
- _me.state.companyOption.push(
|
|
|
- <Select.Option value={item} key={item}>{data3[0].data[item]}</Select.Option>
|
|
|
- )
|
|
|
- };
|
|
|
+ return;
|
|
|
+ };
|
|
|
+ let thisdata = data3[0].data;
|
|
|
+ this.setState({
|
|
|
+
|
|
|
+ });
|
|
|
}).always(function () {
|
|
|
this.setState({
|
|
|
loading: false
|
|
|
});
|
|
|
}.bind(this));
|
|
|
},
|
|
|
- getOption() {
|
|
|
- let _me = this;
|
|
|
- _me.state.patentTypeOption = [];
|
|
|
- _me.state.patentFieldOption = [];
|
|
|
- _me.state.patentStateOption = [];
|
|
|
- patentTypeList.map(function (item) {
|
|
|
- _me.state.patentTypeOption.push(
|
|
|
- <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
|
|
|
- )
|
|
|
- });
|
|
|
- patentFieldList.map(function (item) {
|
|
|
- _me.state.patentFieldOption.push(
|
|
|
- <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
|
|
|
- )
|
|
|
- });
|
|
|
- patentStateList.map(function (item) {
|
|
|
- _me.state.patentStateOption.push(
|
|
|
- <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
|
|
|
- )
|
|
|
+ componentWillReceiveProps(nextProps) {
|
|
|
+ if (!this.state.visible && nextProps.showDesc) {
|
|
|
+ this.loadData();
|
|
|
+ };
|
|
|
+ this.state.visible = nextProps.showDesc;
|
|
|
+ },
|
|
|
+ handleSubmit(e) {
|
|
|
+ e.preventDefault();
|
|
|
+ this.props.form.validateFields((err, values) => {
|
|
|
+ if (values.state || values.principal || values.recordTime || values.comment) {
|
|
|
+ if (!values.state && !values.principal && !values.recordTime) {
|
|
|
+ message.warning("请填写完整的状态流转信息!");
|
|
|
+ return;
|
|
|
+ };
|
|
|
+ };
|
|
|
+ if (!err) {
|
|
|
+ this.props.spinState(true);
|
|
|
+ $.ajax({
|
|
|
+ method: "POST",
|
|
|
+ dataType: "json",
|
|
|
+ crossDomain: false,
|
|
|
+ url: globalConfig.context + "/api/admin/disposeCognizanceDetail",
|
|
|
+ data: {
|
|
|
+ id: this.props.data.cid,
|
|
|
+ uid: this.props.data.uid,
|
|
|
+ technicalField1: values.technicalField[0],
|
|
|
+ technicalField2: values.technicalField[1],
|
|
|
+ technicalField3: values.technicalField[2],
|
|
|
+ basicResearchCost: values.basicResearchCost,
|
|
|
+ contacts: values.contacts,
|
|
|
+ accident: values.accident,
|
|
|
+ certificateNumber: values.certificateNumber,
|
|
|
+ recordTimeFormattedDate: values.recordTime ? values.recordTime.format("YYYY-MM-DD") : undefined,
|
|
|
+ state: values.state,
|
|
|
+ principal: values.principal,
|
|
|
+ comment: values.comment,
|
|
|
+ }
|
|
|
+ }).done(function (data) {
|
|
|
+ if (!data.error.length) {
|
|
|
+ message.success('保存成功!');
|
|
|
+ this.props.clickOk();
|
|
|
+ this.props.form.resetFields();
|
|
|
+ this.state.targetKeys = [];
|
|
|
+ this.state.selectedKeys = [];
|
|
|
+ this.props.spinState(false);
|
|
|
+ } else {
|
|
|
+ message.warning(data.error[0].message);
|
|
|
+ this.props.spinState(false);
|
|
|
+ }
|
|
|
+ }.bind(this));
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
- downloadFile(url, type) {
|
|
|
- window.open(globalConfig.context + "/techservice/patent/downloadFile?path=" + url + "&sign=" + type)
|
|
|
+ render() {
|
|
|
+ const FormItem = Form.Item;
|
|
|
+ const { getFieldDecorator } = this.props.form;
|
|
|
+ //const theData = this.state.data;
|
|
|
+ const theData = {};
|
|
|
+ const formItemLayout = {
|
|
|
+ labelCol: { span: 6 },
|
|
|
+ wrapperCol: { span: 12 },
|
|
|
+ };
|
|
|
+ const _me = this;
|
|
|
+ return (
|
|
|
+ <Form onSubmit={this.handleSubmit} id="CopyrightDesc-form">
|
|
|
+ <Row className="express-desc-row">
|
|
|
+ <Col span={4}>公司名称</Col>
|
|
|
+ <Col span={4}>{theData.nuitName}</Col>
|
|
|
+ <Col span={4}>公司组织机构代码</Col>
|
|
|
+ <Col span={4}>{theData.unitNumber}</Col>
|
|
|
+ </Row>
|
|
|
+ <Row className="express-desc-row">
|
|
|
+ <Col span={4}>公司地址</Col>
|
|
|
+ <Col span={4}>{theData.address}</Col>
|
|
|
+ <Col span={4}>联系人</Col>
|
|
|
+ <Col span={4}>
|
|
|
+ {getFieldDecorator('contacts', {
|
|
|
+ rules: [{ required: true, message: '此项为必填项!' }],
|
|
|
+ initialValue: theData.contacts
|
|
|
+ })(
|
|
|
+ <Select
|
|
|
+ style={{ display: 'inline-block', width: '200px' }}
|
|
|
+ placeholder='选择一个联系人'>
|
|
|
+ {this.state.contactsOption}
|
|
|
+ </Select>
|
|
|
+ )}
|
|
|
+ </Col>
|
|
|
+ </Row>
|
|
|
+ <Row className="express-desc-row">
|
|
|
+ <Col span={4}>编号</Col>
|
|
|
+ <Col span={4}>xxxxxx</Col>
|
|
|
+ <Col span={4}>外包公司</Col>
|
|
|
+ <Col span={4}>
|
|
|
+ {getFieldDecorator('contacts', {
|
|
|
+ initialValue: theData.contacts
|
|
|
+ })(
|
|
|
+ <Input placeholder="请输入外包公司" />
|
|
|
+ )}
|
|
|
+ </Col>
|
|
|
+ </Row>
|
|
|
+ <Row className="express-desc-row">
|
|
|
+ <Col span={3}>派单详情</Col>
|
|
|
+ <Col span={16}>
|
|
|
+ {getFieldDecorator('contacts', {
|
|
|
+ initialValue: theData.contacts
|
|
|
+ })(
|
|
|
+ <Input type="textarea"
|
|
|
+ placeholder="多行输入"
|
|
|
+ rows={6} />
|
|
|
+ )}
|
|
|
+ </Col>
|
|
|
+ </Row>
|
|
|
+ <Row className="express-desc-row">
|
|
|
+ <Col span={3}>备注</Col>
|
|
|
+ <Col span={16}>
|
|
|
+ {getFieldDecorator('contacts', {
|
|
|
+ initialValue: theData.contacts
|
|
|
+ })(
|
|
|
+ <Input type="textarea"
|
|
|
+ placeholder="多行输入"
|
|
|
+ rows={6} />
|
|
|
+ )}
|
|
|
+ </Col>
|
|
|
+ </Row>
|
|
|
+ <Row className="express-desc-row">
|
|
|
+ <Col span={3}>软著名称</Col>
|
|
|
+ <Col span={6}>
|
|
|
+ {getFieldDecorator('contacts', {
|
|
|
+ initialValue: theData.contacts
|
|
|
+ })(
|
|
|
+ <Input placeholder="请输入软著名称" />
|
|
|
+ )}
|
|
|
+ </Col>
|
|
|
+ </Row>
|
|
|
+ <Row className="express-desc-row">
|
|
|
+ <Col span={3}>下证时间(预计)</Col>
|
|
|
+ <Col span={6}>
|
|
|
+ {getFieldDecorator('contacts', {
|
|
|
+ initialValue: theData.contacts
|
|
|
+ })(
|
|
|
+ <DatePicker />
|
|
|
+ )}
|
|
|
+ </Col>
|
|
|
+ </Row>
|
|
|
+ <p>状态流转记录: </p>
|
|
|
+ <Table style={{ margin: '10px 0' }}
|
|
|
+ pagination={false}
|
|
|
+ dataSource={this.state.stateTable}
|
|
|
+ columns={this.state.stateColumns} />
|
|
|
+ <div className="clearfix">
|
|
|
+ <FormItem className="third-item"
|
|
|
+ {...formItemLayout}
|
|
|
+ label="状态流转"
|
|
|
+ >
|
|
|
+ {getFieldDecorator('state')(
|
|
|
+ <Select placeholder="选择一个状态">{this.state.stateOption}</Select>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem className="third-item"
|
|
|
+ labelCol={{ span: 6 }}
|
|
|
+ wrapperCol={{ span: 12 }}
|
|
|
+ label="处理时间"
|
|
|
+ >
|
|
|
+ {getFieldDecorator('recordTime')(
|
|
|
+ <DatePicker />
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem className="third-item"
|
|
|
+ {...formItemLayout}
|
|
|
+ label="负责人"
|
|
|
+ >
|
|
|
+ {getFieldDecorator('principal')(
|
|
|
+ <Select placeholder="选择负责人">{this.props.authorOption}</Select>
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ </div>
|
|
|
+ <FormItem
|
|
|
+ labelCol={{ span: 2 }}
|
|
|
+ wrapperCol={{ span: 12 }}
|
|
|
+ label="备注"
|
|
|
+ >
|
|
|
+ {getFieldDecorator('comment')(
|
|
|
+ <Input />
|
|
|
+ )}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem style={{ marginTop: '20px' }}>
|
|
|
+ <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
|
|
|
+ <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
|
|
|
+ </FormItem>
|
|
|
+ </Form>
|
|
|
+ );
|
|
|
+ }
|
|
|
+}));
|
|
|
+
|
|
|
+const CopyrightDesc = React.createClass({
|
|
|
+ getInitialState() {
|
|
|
+ return {
|
|
|
+ visible: false,
|
|
|
+ loading: false
|
|
|
+ };
|
|
|
+ },
|
|
|
+ componentWillReceiveProps(nextProps) {
|
|
|
+ this.state.visible = nextProps.showDesc
|
|
|
},
|
|
|
showModal() {
|
|
|
this.setState({
|
|
@@ -111,70 +322,9 @@ const PatentDesc = React.createClass({
|
|
|
},
|
|
|
handleOk() {
|
|
|
this.setState({
|
|
|
- visible: true,
|
|
|
+ visible: false,
|
|
|
});
|
|
|
- $.ajax({
|
|
|
- method: "POST",
|
|
|
- dataType: "json",
|
|
|
- crossDomain: false,
|
|
|
- url: globalConfig.context + "/techservice/patent/managePatentInfo",
|
|
|
- data: {
|
|
|
- "xid": this.state.xid,
|
|
|
- "patentNumber": this.state.patentNumber,
|
|
|
- "patentName": this.state.patentName,
|
|
|
- "patentCatagory": this.state.patentType,
|
|
|
- "patentField": this.state.patentField,
|
|
|
- "patentDes": this.state.patentDes,
|
|
|
- "patentWritingUrl": this.state.patentWritingUrl,
|
|
|
- "authorizationNoticeUrl": this.state.authorizationNoticeUrl,
|
|
|
- "patentCertificateUrl": this.state.patentCertificateUrl,
|
|
|
- "state": this.state.patentStateAdd,
|
|
|
- "recordTimeFormattedDate": this.state.recordTime,
|
|
|
- "principal": this.state.adminName
|
|
|
- }
|
|
|
- }).done(function (data) {
|
|
|
- if (!data.error.length) {
|
|
|
- message.success('保存成功!');
|
|
|
- } else {
|
|
|
- message.warning(data.error[0].message);
|
|
|
- }
|
|
|
- }.bind(this)).always(function () {
|
|
|
- this.setState({
|
|
|
- visible: false,
|
|
|
- });
|
|
|
- this.props.closeDesc(false);
|
|
|
- }.bind(this));
|
|
|
- },
|
|
|
- checkPatentProcess() {
|
|
|
- if (this.state.patentStateAdd || this.state.adminName || this.state.recordTime) {
|
|
|
- if (this.state.patentStateAdd && this.state.adminName && this.state.recordTime)
|
|
|
- { this.handleOk() } else {
|
|
|
- message.warning("请填写完整的状态流转信息!");
|
|
|
- return;
|
|
|
- }
|
|
|
- } else {
|
|
|
- this.handleOk()
|
|
|
- };
|
|
|
- },
|
|
|
- componentWillReceiveProps(nextProps) {
|
|
|
- let _me = this;
|
|
|
- this.state.patentStateAdd = '';
|
|
|
- this.state.adminName = '';
|
|
|
- this.state.recordTime = '';
|
|
|
- this.state.adminOption = [];
|
|
|
- this.state.patentProcessList = [];
|
|
|
- this.state.visible = nextProps.showDesc;
|
|
|
- if (nextProps.data) {
|
|
|
- this.state.xid = nextProps.data.pid;
|
|
|
- this.state.patentDes = nextProps.data.patentDes;
|
|
|
- this.state.patentName = nextProps.data.patentName;
|
|
|
- this.state.patentNumber = nextProps.data.patentNumber;
|
|
|
- this.state.patentType = String(nextProps.data.patentType);
|
|
|
- this.state.patentState = String(nextProps.data.patentState);
|
|
|
- this.state.patentField = String(nextProps.data.patentField);
|
|
|
- this.loadData();
|
|
|
- this.getOption();
|
|
|
- }
|
|
|
+ this.props.closeDesc(false, true);
|
|
|
},
|
|
|
handleCancel(e) {
|
|
|
this.setState({
|
|
@@ -182,134 +332,31 @@ const PatentDesc = React.createClass({
|
|
|
});
|
|
|
this.props.closeDesc(false);
|
|
|
},
|
|
|
- getPatentWritingUrl(e) {
|
|
|
- this.state.patentWritingUrl = e;
|
|
|
- },
|
|
|
- getAuthorizationNoticeUrl(e) {
|
|
|
- this.state.authorizationNoticeUrl = e;
|
|
|
- },
|
|
|
- getPatentCertificateUrl(e) {
|
|
|
- this.state.patentCertificateUrl = e;
|
|
|
+ spinChange(e) {
|
|
|
+ this.setState({
|
|
|
+ loading: e
|
|
|
+ });
|
|
|
},
|
|
|
render() {
|
|
|
- const Step = Steps.Step;
|
|
|
- const theData = this.props.data;
|
|
|
- if (this.props.data) {
|
|
|
- return (
|
|
|
- <div className="patent-desc">
|
|
|
- <Spin spinning={this.state.loading} className='spin-box'>
|
|
|
- <Modal title="专利详情" visible={this.state.visible}
|
|
|
- onOk={this.checkPatentProcess} onCancel={this.handleCancel}
|
|
|
- width='800px'
|
|
|
- footer={[
|
|
|
- <Button key="submit" type="primary" size="large" onClick={this.checkPatentProcess}>保存</Button>,
|
|
|
- <Button key="back" type="ghost" size="large" onClick={this.handleCancel}>取消</Button>,
|
|
|
- ]}
|
|
|
- className="patent-desc-content">
|
|
|
-
|
|
|
-
|
|
|
- <Row className="express-desc-row">
|
|
|
- <Col span={4}>公司名称</Col>
|
|
|
- <Col span={4}>xxxxxx</Col>
|
|
|
- <Col span={4}>公司组织机构代码</Col>
|
|
|
- <Col span={4}>xxxxxxxx</Col>
|
|
|
- </Row>
|
|
|
- <Row className="express-desc-row">
|
|
|
- <Col span={4}>公司地址</Col>
|
|
|
- <Col span={4}>xxxxxx</Col>
|
|
|
- <Col span={4}>联系人</Col>
|
|
|
- <Col span={4}>xxxxxxxx</Col>
|
|
|
- </Row>
|
|
|
- <Row className="express-desc-row">
|
|
|
- <Col span={4}>编号</Col>
|
|
|
- <Col span={4}>xxxxxx</Col>
|
|
|
- <Col span={4}>外包公司</Col>
|
|
|
- <Col span={4}>
|
|
|
- <Select placeholder="外包公司名"
|
|
|
- filterOption={(input, option) => {
|
|
|
- this.setState({companyId : option.key});
|
|
|
- option.props.value.indexOf(input) >= 0;
|
|
|
- }}
|
|
|
- onChange={(e)=>{ this.state.companyName = e;}}
|
|
|
- showSearch={true} style={{ width: 200 }} >{this.state.companyOption}</Select>
|
|
|
- </Col>
|
|
|
- </Row>
|
|
|
- <Row className="express-desc-row">
|
|
|
- <Col span={3}>派单详情</Col>
|
|
|
- <Col span={16}>
|
|
|
- <Input type="textarea"
|
|
|
- placeholder="多行输入"
|
|
|
- rows={6} />
|
|
|
- </Col>
|
|
|
- </Row>
|
|
|
- <Row className="express-desc-row">
|
|
|
- <Col span={3}>备注</Col>
|
|
|
- <Col span={16}>
|
|
|
- <Input type="textarea"
|
|
|
- placeholder="多行输入"
|
|
|
- rows={6} />
|
|
|
- </Col>
|
|
|
- </Row>
|
|
|
- <Row className="express-desc-row">
|
|
|
- <Col span={3}>软著名称</Col>
|
|
|
- <Col span={6}>
|
|
|
- <Input type="input" value="名称" />
|
|
|
- </Col>
|
|
|
- </Row>
|
|
|
- <Row className="express-desc-row">
|
|
|
- <Col span={3}>下证时间(预计)</Col>
|
|
|
- <Col span={6}>
|
|
|
- <DatePicker />
|
|
|
- </Col>
|
|
|
- </Row>
|
|
|
- <p>状态流转记录</p>
|
|
|
- <Row className="express-desc-row">
|
|
|
- <Col span={3}>专利状态</Col>
|
|
|
- <Col span={3}>派单</Col>
|
|
|
- <Col span={3}>处理时间</Col>
|
|
|
- <Col span={3}>2017/01/01</Col>
|
|
|
- <Col span={3}>负责人</Col>
|
|
|
- <Col span={3}>随便</Col>
|
|
|
- </Row>
|
|
|
- <Row className="express-desc-row">
|
|
|
- <Col span={3}>专利状态</Col>
|
|
|
- <Col span={3}>受理中</Col>
|
|
|
- <Col span={3}>处理时间</Col>
|
|
|
- <Col span={3}>2017/01/01</Col>
|
|
|
- <Col span={3}>负责人</Col>
|
|
|
- <Col span={3}>随便</Col>
|
|
|
- <Col span={3}>操作人</Col>
|
|
|
- <Col span={3}>随便</Col>
|
|
|
- </Row>
|
|
|
- <Row className="express-desc-row">
|
|
|
- <Col span={3}>状态流转</Col>
|
|
|
- <Col span={4}>
|
|
|
- <Select placeholder="请选择" value={this.state.searchKey} style={{ width: 120 }} onChange={(e) => { this.setState({ searchKey: e, searchValue: '' }); }}>
|
|
|
- <Select.Option value="1">1</Select.Option>
|
|
|
- <Select.Option value="2">2</Select.Option>
|
|
|
- </Select>
|
|
|
- </Col>
|
|
|
- <Col span={3}>处理时间</Col>
|
|
|
- <Col span={4}>
|
|
|
- <DatePicker />
|
|
|
- </Col>
|
|
|
- <Col span={3}>负责人</Col>
|
|
|
- <Col span={4}>
|
|
|
- <Select placeholder="请选择" value={this.state.searchKey} style={{ width: 120 }} onChange={(e) => { this.setState({ searchKey: e, searchValue: '' }); }}>
|
|
|
- <Select.Option value="1">1</Select.Option>
|
|
|
- <Select.Option value="2">2</Select.Option>
|
|
|
- </Select>
|
|
|
- </Col>
|
|
|
- </Row>
|
|
|
-
|
|
|
-
|
|
|
- </Modal>
|
|
|
- </Spin>
|
|
|
- </div>
|
|
|
- );
|
|
|
- } else {
|
|
|
- return <div></div>
|
|
|
- }
|
|
|
- },
|
|
|
+ return (
|
|
|
+ <div className="patent-addNew">
|
|
|
+ <Spin spinning={this.state.loading} className='spin-box'>
|
|
|
+ <Modal title="软著详情" visible={this.state.visible}
|
|
|
+ onOk={this.handleOk} onCancel={this.handleCancel}
|
|
|
+ width='800px'
|
|
|
+ footer=''
|
|
|
+ >
|
|
|
+ <CopyrightDescForm
|
|
|
+ visible={this.state.visible}
|
|
|
+ authorOption={this.props.authorOption}
|
|
|
+ data={this.props.data}
|
|
|
+ spinState={this.spinChange}
|
|
|
+ closeModal={this.handleCancel}
|
|
|
+ clickOk={this.handleOk} />
|
|
|
+ </Modal>
|
|
|
+ </Spin>
|
|
|
+ </div>
|
|
|
+ );
|
|
|
+ }
|
|
|
});
|
|
|
-export default PatentDesc;
|
|
|
+export default CopyrightDesc;
|