Pārlūkot izejas kodu

软著界面完成

yee 8 gadi atpakaļ
vecāks
revīzija
84ba87bc06

+ 5 - 2
js/component/account/services/content.jsx

@@ -15,6 +15,7 @@ import HonorList from './honorList';
 import OrgTechCenter from './orgTechCenter';
 import AnnualReport from './annualReport';
 import Cognizance from './cognizance';
+import Copyright from './copyright/copyright'
 
 const Content = React.createClass({
     getInitialState() {
@@ -65,9 +66,11 @@ const Content = React.createClass({
                             case 'orgTechCenter':
                                 return <OrgTechCenter />;
                             case 'annualReport':
-                                return <AnnualReport />
+                                return <AnnualReport />;
                             case 'cognizance':
-                                return <Cognizance />
+                                return <Cognizance />;
+                            case 'copyright':
+                                return <Copyright />;
                         };
                     })()}
                 </div>

+ 239 - 0
js/component/account/services/copyright/comPatentAdd.jsx

@@ -0,0 +1,239 @@
+import React from 'react';
+import { Icon, Modal, Button, Form, message, Input, Spin, Checkbox, Select, Row, Col } from 'antd';
+import './comprehensive.less';
+import { companySearch } from '../../../tools.js';
+import ajax from 'jquery/src/ajax/xhr.js'
+import $ from 'jquery/src/ajax';
+
+const PatentAddFrom = Form.create()(React.createClass({
+    getContactsList(theUid) {
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/getContacts",
+            data: {
+                uid: theUid
+            },
+            success: function (data) {
+                let theOption = [];
+                if (data.error.length || !data.data) {
+                    return;
+                };
+                for (let item in data.data) {
+                    let theData = data.data[item];
+                    theOption.push(
+                        <Select.Option value={item} key={theData}>{theData}</Select.Option>
+                    );
+                };
+                this.setState({
+                    contactsOption: theOption
+                });
+            }.bind(this),
+        });
+    },
+    getInitialState() {
+        return {
+            loading: false,
+            companyOption: [],
+            firstCheck: 0,
+            secondCheck: 0,
+            thirdCheck: 0,
+            accelerated: 0,
+            acceleratedDate: 0,
+            visible: "visible"
+        };
+    },
+    handleSubmit(e) {
+        e.preventDefault();
+        if (!this.state.companyName || this.state.companyName === "") {
+            message.warning('请先选择公司!');
+            return;
+        };
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                this.props.spinState(true);
+                $.ajax({
+                    method: "POST",
+                    dataType: "json",
+                    crossDomain: false,
+                    url: globalConfig.context + "/techservice/patent/manageApplyPatent",
+                    data: {
+                        'uid': this.state.companyName,
+                        'firstInventorIdNumber': values.firstInventorID,
+                        'firstInventorName': values.firstInventorName,
+                        'patentDes': values.intro,
+                        'secondInventorName': values.secondInventorName,
+                        'thirdInventorName': values.thirdInventorName,
+                        'firstInventorIsPublish': this.state.firstCheck,
+                        'secondInventorIsPublish': this.state.secondCheck,
+                        'thirdInventorIsPublish': this.state.thirdCheck,
+                        'patentProryStatementUrl': this.state.avatarUrl
+                    }
+                }).done(function (data) {
+                    if (!data.error.length) {
+                        message.success('保存成功!');
+                    } else {
+                        message.warning(data.error[0].message);
+                    }
+                }.bind(this)).always(function () {
+                    this.props.spinState(false);
+                    this.props.okClick();
+                    this.props.form.resetFields();
+                }.bind(this));
+            }
+        });
+    },
+    acceleratedCheck(e) {
+        if (e.target.checked == true) {
+            this.state.accelerated = 1;
+            this.setState({ visible: "show" });
+        } else if (e.target.checked == false) {
+            this.state.accelerated = 0;
+            this.setState({ visible: "visible" });
+        }
+    },
+    acceleratedSelect(value) {
+        this.state.acceleratedDate = value;
+    },
+    render() {
+        const FormItem = Form.Item;
+        const { getFieldDecorator } = this.props.form;
+        const formItemLayout = {
+            labelCol: { span: 3 },
+            wrapperCol: { span: 14 },
+        };
+        const _me = this;
+        return (
+            <Form horizontal onSubmit={this.handleSubmit} className="person-form">
+                <FormItem
+                    wrapperCol={{ span: 24 }}
+                >
+                    <Row>
+                        <Col span={12}>
+                            <span>选择公司:  </span>
+                            <Select
+                                placeholder="请选择公司"
+                                notFoundContent="未找到公司"
+                                style={{ width: 200 }}
+                                showSearch
+                                filterOption={companySearch}
+                                value={this.state.uid}
+                                onSelect={(e, n) => { this.setState({ uid: e }); this.getContactsList(e); }}>
+                                {this.props.companyOption}
+                            </Select>
+                        </Col>
+                        <Col span={12}>
+                            <span>选择联系人:  </span>
+                            <Select placeholder="请选择联系人" style={{ width: 200 }}
+                                notFoundContent="未获取到联系人列表"
+                                value={this.state.contacts}
+                                onSelect={(e, n) => { this.setState({ contacts: e }); }}>
+                                {this.state.contactsOption}
+                            </Select>
+                        </Col>
+                    </Row>
+                </FormItem>
+                <FormItem
+                    labelCol={{ span: 24 }}
+                    wrapperCol={{ span: 18 }}
+                    label="派单信息"
+                >
+                    {getFieldDecorator('intro', {
+                        initialValue: this.state.intro || null
+                    })(
+                        <Input type="textarea"
+                            placeholder="多行输入"
+                            rows={6} />
+                        )}
+                </FormItem>
+                <FormItem
+                    labelCol={{ span: 0 }}
+                    wrapperCol={{ span: 18 }}
+                >
+                    <span>是否加急:</span>
+                    <Checkbox onChange={this.acceleratedCheck}></Checkbox>
+                    <Select className={this.state.visible} placeholder="请选择加急时间" style={{ width: 120 }} onChange={this.acceleratedSelect}>
+                        <Select.Option value="3">3天</Select.Option>
+                        <Select.Option value="5">5天</Select.Option>
+                        <Select.Option value="10">10天</Select.Option>
+                        <Select.Option value="20">20天</Select.Option>
+                    </Select>
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="选择咨询师"
+                >
+                    <Select placeholder="请选择咨询师" style={{ width: 200 }}
+                        value={this.state.consultant}
+                        onSelect={(e, n) => { this.setState({ consultant: e }); }}>
+                        {this.props.authorOption}
+                    </Select>
+                </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="外包公司"
+                >
+                    {getFieldDecorator('intro', {
+                        initialValue: this.state.intro || null
+                    })(
+                        <Input placeholder="输入外包公司" />
+                        )}
+                </FormItem>
+                <FormItem>
+                    <Button className="set-submit" type="primary" htmlType="submit">确认</Button>
+                    <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
+                </FormItem>
+            </Form >
+        );
+    },
+}));
+
+
+
+const PatentAdd = React.createClass({
+    getInitialState() {
+        return {
+            visible: false,
+            loading: false
+        };
+    },
+    showModal() {
+        this.setState({
+            visible: true,
+        });
+    },
+    handleCancel(e) {
+        this.setState({
+            visible: false,
+        });
+        this.props.closeAdd(false);
+    },
+    spinChange(e) {
+        this.setState({
+            loading: e
+        });
+    },
+    render() {
+        return (
+            <div className="patent-addNew">
+                <Button className="patent-addNew" type="primary" onClick={this.showModal}>申请新软著<Icon type="plus" /></Button>
+                <Spin spinning={this.state.loading} className='spin-box'>
+                    <Modal title="申请新软著"
+                        visible={this.state.visible}
+                        onCancel={this.handleCancel}
+                        width='800px'
+                        footer=''
+                    >
+                        <PatentAddFrom
+                            spinState={this.spinChange}
+                            okClick={() => { this.props.closeAdd(false, true) }}
+                            companyOption={this.props.companyOption}
+                            authorOption={this.props.authorOption} />
+                    </Modal>
+                </Spin>
+            </div>
+        );
+    },
+});
+export default PatentAdd;

+ 362 - 0
js/component/account/services/copyright/comPatentChange.jsx

@@ -0,0 +1,362 @@
+import React from 'react';
+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 { copyrightStateList } from '../../../dataDic.js';
+import { getCopyrightState, getTime } from '../../../tools.js';
+
+const CopyrightDescForm = Form.create()(React.createClass({
+    getInitialState() {
+        return {
+            visible: false,
+            loading: false,
+            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',
+            }]
+        };
+    },
+    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
+        });
+        $.when($.ajax({
+            method: "post",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/cognizanceLog",
+            data: {
+                pid: this.state.xid
+            }
+        }), $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/getContacts"
+        }), $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            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) {
+                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;
+            };
+            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;
+            };
+            let thisdata = data3[0].data;
+            this.setState({
+
+            });
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    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));
+            }
+        });
+    },
+    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({
+            visible: true,
+        });
+    },
+    handleOk() {
+        this.setState({
+            visible: false,
+        });
+        this.props.closeDesc(false, true);
+    },
+    handleCancel(e) {
+        this.setState({
+            visible: false,
+        });
+        this.props.closeDesc(false);
+    },
+    spinChange(e) {
+        this.setState({
+            loading: e
+        });
+    },
+    render() {
+        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 CopyrightDesc;

+ 42 - 0
js/component/account/services/copyright/comprehensive.less

@@ -0,0 +1,42 @@
+#CopyrightDesc-form {
+    font-size: 12px;
+    .express-desc-row {
+        line-height: 30px;
+        margin-bottom: 10px;
+    }
+}
+
+.ant-modal-body {
+    .half-item {
+        float: left;
+        width: 50%;
+        height: 36px;
+        margin-bottom: 10px;
+    }
+    .third-item {
+        float: left;
+        width: 33%;
+        height: 36px;
+        margin-bottom: 10px;
+        >p {
+            line-height: 30px;
+        }
+    }
+    .item-title {
+        line-height: 30px;
+        font-size: 14px;
+        color: #666;
+    }
+    .form-title {
+        font-size: 16px;
+        color: #333;
+    }
+}
+
+.show {
+    display: inline-block;
+}
+
+.visible {
+    display: none;
+}

+ 262 - 0
js/component/account/services/copyright/copyright.jsx

@@ -0,0 +1,262 @@
+import React from 'react';
+import { Icon, Button, Input, Select, Spin, Table, DatePicker, message } from 'antd';
+import { copyrightStateList } from '../../../dataDic.js';
+import { getTime, getCopyrightState } from '../../../tools.js';
+import ajax from 'jquery/src/ajax/xhr.js';
+import $ from 'jquery/src/ajax';
+import PatentAdd from './comPatentAdd.jsx';
+import PatentChange from './comPatentChange.jsx';
+
+import './copyright.less';
+
+const copyright = React.createClass({
+    loadData(pageNo) {
+        this.state.data = [];
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/techservice/patent/managePatentList",
+            data: {
+                pageNo: pageNo || 1,
+                pageSize: this.state.pagination.pageSize,
+                locationProvince: this.state.province,
+                unitName: this.state.unitName,
+            },
+            success: function (data) {
+                if (data.error.length || !data.data || !data.data.list) {
+                    message.warning(data.error[0].message);
+                    return;
+                }
+
+                this.state.pagination.defaultCurrent = data.data.pageNo;
+                this.state.pagination.total = data.data.totalCount;
+                this.setState({
+                    dataSource: data.data.list,
+                    pagination: this.state.pagination
+                });
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    getAuthorList() {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/techservice/cognizance/getContacts",
+            success: function (data) {
+                if (data.error.length || !data.data) {
+                    return;
+                };
+                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>
+                    );
+                };
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    getInitialState() {
+        return {
+            visible: false,
+            stateOption: [],
+            data: [],
+            selectedRowKeys: [],
+            selectedRows: [],
+            loading: false,
+            showAdd: false,
+            showDesc: 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: 'copyrightName',
+                    key: 'copyrightName',
+                }, {
+                    title: '加急',
+                    dataIndex: 'urgent',
+                    key: 'urgent',
+                }, {
+                    title: '咨询师',
+                    dataIndex: 'consultant',
+                    key: 'consultant',
+                }, {
+                    title: '派单日',
+                    dataIndex: 'createTime',
+                    key: 'createTime',
+                }, {
+                    title: '受理日',
+                    dataIndex: 'acceptanceTime',
+                    key: 'acceptanceTime',
+                }, {
+                    title: '(预计)下证时间',
+                    dataIndex: 'endTime',
+                    key: 'endTime',
+                }, {
+                    title: '派单信息',
+                    dataIndex: 'createInfo',
+                    key: 'createInfo',
+                }, {
+                    title: '备注',
+                    dataIndex: 'explain',
+                    key: 'explain',
+                }
+            ],
+            dataSource: []
+        };
+    },
+    componentWillMount() {
+        let _me = this;
+        copyrightStateList.map(function (item) {
+            _me.state.stateOption.push(
+                <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
+            )
+        });
+        this.loadData();
+        this.getAuthorList();
+    },
+    tableRowClick(record, index) {
+        this.state.RowData = record;
+        this.setState({
+            showDesc: true
+        });
+    },
+    delectRow() {
+        let deletedIds = [];
+        for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
+            let rowItem = this.state.selectedRows[idx];
+            if (rowItem.cid) {
+                deletedIds.push(rowItem.cid)
+            }
+        }
+        this.setState({
+            selectedRowKeys: [],
+            loading: deletedIds.length > 0
+        });
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/deleteCognizance",
+            data: {
+                ids: deletedIds
+            }
+        }).done(function (data) {
+            if (!data.error.length) {
+                message.success('保存成功!');
+                this.setState({
+                    loading: false,
+                });
+            } else {
+                message.warning(data.error[0].message);
+            };
+            this.loadData();
+        }.bind(this));
+    },
+    closeDesc(e, s) {
+        this.state.showDesc = e;
+        if (s) {
+            this.loadData();
+        };
+    },
+    addClick() {
+        this.setState({
+            showAdd: true
+        });
+    },
+    closeAdd(e, s) {
+        this.state.showAdd = e;
+        if (s) {
+            this.loadData();
+        };
+    },
+    search() {
+        this.loadData();
+    },
+    reset() {
+        this.state.searchNumber = undefined;
+        this.state.searchName = undefined;
+        this.state.searchState = undefined;
+        this.loadData();
+    },
+    render() {
+        const rowSelection = {
+            selectedRowKeys: this.state.selectedRowKeys,
+            onChange: (selectedRowKeys, selectedRows) => {
+                this.setState({
+                    selectedRows: selectedRows,
+                    selectedRowKeys: selectedRowKeys
+                });
+            }
+        };
+        const hasSelected = this.state.selectedRowKeys.length > 0;
+        return (
+            <div className="foster-box">
+                <div className="foster-content">
+                    <div className="content-title">
+                        <span>软著申请管理</span>
+                        <PatentAdd
+                            onClick={this.addClick}
+                            closeAdd={this.closeAdd} />
+                    </div>
+                    <div className="foster-query">
+                        <Input placeholder="软著编号" value={this.state.searchNumber} onChange={(e) => { this.setState({ searchNumber: e.target.value }); }} />
+                        <Input placeholder="软著名称" value={this.state.searchName} onChange={(e) => { this.setState({ searchName: e.target.value }); }} />
+                        <Select placeholder="软著状态" value={this.state.searchState} style={{ width: 200 }} onChange={(e) => { this.setState({ searchState: e }); }}>{this.state.stateOption}</Select>
+                        <Button type="primary" onClick={this.search}>搜索</Button>
+                        <Button onClick={this.reset}>重置</Button>
+                        <Button style={{ background: "#3fcf9e", border: "none", color: "#fff", display: 'none' }}
+                            disabled={!hasSelected}
+                            onClick={this.delectRow}>删除<Icon type="minus" /></Button>
+                    </div>
+                    <div className="foster-table">
+                        <Spin spinning={this.state.loading}>
+                            <Table columns={this.state.columns}
+                                //rowSelection={rowSelection}
+                                dataSource={this.state.dataSource}
+                                pagination={this.state.pagination}
+                                onRowClick={this.tableRowClick} />
+                        </Spin>
+                    </div>
+                    <PatentChange
+                        data={this.state.RowData}
+                        showDesc={this.state.showDesc}
+                        closeDesc={this.closeDesc} />
+                </div >
+            </div>
+        );
+    }
+});
+
+export default copyright;

+ 287 - 0
js/component/account/services/copyright/copyright.less

@@ -0,0 +1,287 @@
+.foster-content {
+    padding: 20px;
+    background: #fff;
+    .content-title {
+        height: 32px;
+        margin-bottom: 10px;
+        >span {
+            color: #333;
+            font-size: 16px;
+            margin-bottom: 10px;
+        }
+    }
+    .foster-query {
+        margin-bottom: 10px;
+        >input {
+            width: 180px;
+            margin-right: 20px;
+        }
+        >div {
+            margin-right: 20px;
+        }
+        button {
+            margin-left: 20px;
+        }
+        >span {
+            margin-left: 20px;
+            >span {
+                margin-left: 10px;
+            }
+        }
+    }
+}
+.patent-addNew {
+    float: right;
+    margin-left: 20px;
+    button {
+        background: #ea0862;
+        color: #fff;
+        border: none;
+        border-radius: 4px;
+        padding: 6px 10px;
+        margin-left: 20px;
+    }
+    button:hover{
+        background: #ea0862;
+    }
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+.patent-content {
+    padding: 20px;
+    background: #fff;
+    .content-title {
+        height: 32px;
+        margin-bottom: 10px;
+        >span {
+            color: #333;
+            font-size: 16px;
+            margin-bottom: 10px;
+        }
+        .patent-addNew {
+            float: right;
+            margin-left: 20px;
+            button {
+                background: #ea0862;
+                color: #fff;
+                border: none;
+                border-radius: 4px;
+                padding: 6px 10px;
+            }
+        }
+    }
+    .patent-alert {
+        font-size: 14px;
+        padding: 8px 48px;
+        >i {
+            font-size: 19px;
+            top: 8px;
+        }
+    }
+    .patent-query {
+        margin-bottom: 10px;
+        >input {
+            width: 180px;
+            margin-right: 20px;
+        }
+        >div {
+            margin-right: 20px;
+        }
+        button {
+            margin-left: 20px;
+        }
+        >span {
+            margin-left: 20px;
+            >span {
+                margin-left: 10px;
+            }
+        }
+        .search-more {
+            >p {
+                margin-top: 10px;
+                >span {
+                    margin-right: 10px;
+                }
+            }
+            >div {
+                margin-top: 10px;
+                >div {
+                    margin-right: 20px;
+                }
+            }
+        }
+    }
+}
+
+.ant-modal-content {
+    .ant-modal-header {
+        padding: 10px 16px;
+        background: #2d2d2d;
+        .ant-modal-title {
+            color: #fff;
+            font-size: 16px;
+            font-weight: 400;
+        }
+    }
+    .ant-modal-body {
+        padding: 16px 26px;
+        .ant-form-item-label {
+            text-align: left;
+        }
+        .ant-form-item-control {
+            .mini-input {
+                width: 50%;
+            }
+            .ant-checkbox-wrapper {
+                margin-left: 60px;
+                span {
+                    vertical-align: middle;
+                }
+            }
+        }
+        .ant-form-item {
+            margin-bottom: 12px;
+        }
+    }
+    .avatar-uploader,
+    .avatar-uploader-trigger,
+    .avatar {
+        width: 150px;
+        height: 150px;
+    }
+    .avatar-uploader {
+        display: block;
+        border: 1px dashed #d9d9d9;
+        border-radius: 6px;
+        cursor: pointer;
+    }
+    .avatar-uploader-trigger {
+        display: table-cell;
+        vertical-align: middle;
+        font-size: 28px;
+        color: #999;
+    }
+}
+
+.patent-desc-content {
+    .ant-modal-body {
+        .express-desc-row {
+            margin-bottom: 16px;
+            >div {
+                line-height: 28px;
+            }
+            .ant-col-4 {
+                margin-right: 10px;
+            }
+            .ant-col-5 {
+                margin-right: 10px;
+            }
+        }
+        .patent-process-list {
+            span {
+                width: 180px;
+                display: inline-block;
+            }
+        }
+        >div {
+            color: #333;
+            margin-bottom: 10px;
+            >p {
+                margin-bottom: 10px;
+            }
+            >textarea {
+                margin-top: 10px;
+            }
+            .widthHalf {
+                display: inline-block;
+                width: 50%;
+                input {
+                    width: 200px;
+                }
+                .two2four {
+                    letter-spacing: 2em;
+                    margin-right: -2em;
+                }
+                .four2eight {
+                    letter-spacing: 4/3em;
+                    margin-right: -4/3em;
+                }
+                .seven2eight {
+                    letter-spacing: 3/11em;
+                    margin-right: -3/11em;
+                }
+                .three2eight {
+                    letter-spacing: 2.5em;
+                    margin-right: -2.5em;
+                }
+            }
+            .widthThird {
+                display: inline-block;
+                width: 33%;
+            }
+            span {
+                color: #666;
+            }
+            .avatar-uploader {
+                float: left;
+                margin-right: 40px;
+            }
+        }
+        .avatar-text {
+            span {
+                margin-right: 40px;
+                display: inline-block;
+                width: 150px;
+                text-align: center;
+            }
+        }
+    }
+}
+
+.applyFee-desc-content {
+    .ant-modal-body {
+        >p {
+            margin-bottom: 10px;
+        }
+        .applyFee-title {
+            span {
+                margin-right: 20px;
+                font-size: 16px;
+            }
+        }
+        .applyFee-fee {
+            margin-bottom: 10px;
+            >span {
+                margin-right: 10px;
+            }
+            >input {
+                width: 150px;
+            }
+        }
+        div.applyFee-fee {
+            span {
+                line-height: 22px;
+                vertical-align: middle;
+            }
+        }
+    }
+}

+ 2 - 2
js/component/account/services/leftTab.jsx

@@ -11,7 +11,7 @@ const LeftTab = React.createClass({
             current: 'patent',
             subKey: 'sub1',
             keyList: [
-                { key: 'sub1', value: ['patent', 'software', 'intellectual'] },
+                { key: 'sub1', value: ['patent', 'copyright', 'intellectual'] },
                 { key: 'sub2', value: ['standard', 'activity', 'activityCostList', 'orgTechCenter', 'techProduct', 'ratepay', 'finance', 'achievement', 'honorList','annualReport','cognizance'] },
                 { key: 'sub3', value: [] }
             ]
@@ -50,7 +50,7 @@ const LeftTab = React.createClass({
                     <Menu.Item key="patent">
                         专利申请
                     </Menu.Item>
-                    <Menu.Item key="software">
+                    <Menu.Item key="copyright">
                         软著申请
                     </Menu.Item>
                     <Menu.Item key="intellectual">

+ 27 - 0
js/component/dataDic.js

@@ -4227,5 +4227,32 @@ module.exports = {
             value: "5",
             key: "项目批复"
         }
+    ],
+    copyrightStateList:[
+        {
+            value: "0",
+            key: "创建"
+        },{
+            value: "1",
+            key: "派单"
+        },{
+            value: "2",
+            key: "材料提交"
+        },{
+            value: "3",
+            key: "受理"
+        },{
+            value: "4",
+            key: "补正"
+        },{
+            value: "5",
+            key: "驳回"
+        },{
+            value: "6",
+            key: "已下证"
+        },{
+            value: "5",
+            key: "撤销"
+        }
     ]
 };

+ 0 - 293
js/component/manageCenter/servicesManage/copyright/changePatent.jsx

@@ -1,293 +0,0 @@
-import React from 'react';
-import { Icon, Modal, Button, Form, Upload, message, Input, Spin, Checkbox, Select } from 'antd';
-import ajax from 'jquery/src/ajax/xhr.js'
-import $ from 'jquery/src/ajax';
-import { getBase64, beforeUpload } from '../../../tools.js';
-
-class Avatar extends React.Component {
-    constructor(props) {
-        super(props);
-        this.state = {
-            imageUrl: ''
-        }
-    }
-    handleChange(info) {
-        if ( !this.props.oid || this.props.oid === "") {
-            message.warning('请先选择公司!');
-            return;
-        };
-        if (info.file.status === 'done') {
-            // Get this url from response in real world.
-            getBase64(info.file.originFileObj, imageUrl => this.setState({ imageUrl }));
-            this.props.urlData(info.file.response.data);
-        }
-    }
-    render() {
-        const imageUrl = this.state.imageUrl;
-        return (
-            <Upload
-                className="avatar-uploader"
-                name="avatar"
-                showUploadList={false}
-                action={globalConfig.context + "/techservice/patent/patentFile"}
-                data={{ 'sign': this.props.name, 'oid': this.props.oid }}
-                beforeUpload={beforeUpload}
-                onChange={this.handleChange.bind(this)}
-            >
-                {
-                    imageUrl ?
-                        <img src={imageUrl} role="presentation" className="avatar" /> :
-                        <Icon type="plus" className="avatar-uploader-trigger" />
-                }
-            </Upload>
-        );
-    }
-};
-
-const PatentAddFrom = Form.create()(React.createClass({
-    getCompanyList() {
-        this.setState({
-            loading: true
-        });
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/techservice/patent/getUnitNames",
-            success: function (data) {
-                if (data.error.length || !data.data) {
-                    return;
-                };
-                let _me = this;
-                for (var item in data.data) {
-                    _me.state.companyOption.push(
-                        <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
-                    )
-                };
-            }.bind(this),
-        }).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
-    },
-    getInitialState() {
-        return {
-            loading: false,
-            companyOption: [],
-            firstCheck: 0,
-            secondCheck: 0,
-            thirdCheck: 0
-
-        };
-    },
-    componentWillMount() {
-        this.getCompanyList();
-    },
-    handleSubmit(e) {
-        e.preventDefault();
-        if ( !this.state.companyName || this.state.companyName === "") {
-            message.warning('请先选择公司!');
-            return;
-        };
-        this.props.form.validateFields((err, values) => {
-            if (!err) {
-                this.props.spinState(true);
-                $.ajax({
-                    method: "POST",
-                    dataType: "json",
-                    crossDomain: false,
-                    url: globalConfig.context + "/techservice/patent/manageApplyPatent",
-                    data: {
-                        'uid':this.state.companyName,
-                        'firstInventorIdNumber': values.firstInventorID,
-                        'firstInventorName': values.firstInventorName,
-                        'patentDes': values.intro,
-                        'secondInventorName': values.secondInventorName,
-                        'thirdInventorName': values.thirdInventorName,
-                        'firstInventorIsPublish': this.state.firstCheck,
-                        'secondInventorIsPublish': this.state.secondCheck,
-                        'thirdInventorIsPublish': this.state.thirdCheck,
-                        'patentProryStatementUrl': this.state.avatarUrl
-                    }
-                }).done(function (data) {
-                    if (!data.error.length) {
-                        message.success('保存成功!');
-                    } else {
-                        message.warning(data.error[0].message);
-                    }
-                }.bind(this)).always(function () {
-                    this.props.spinState(false);
-                    this.props.closeModal();
-                    this.props.form.resetFields();
-                }.bind(this));
-            }
-        });
-    },
-    firstInventorCheck(e) {
-        if (e.target.checked == true) {
-            this.state.firstCheck = 1;
-        } else if (e.target.checked == false) {
-            this.state.firstCheck = 0;
-        }
-    },
-    secondInventorCheck(e) {
-        if (e.target.checked == true) {
-            this.state.secondCheck = 1;
-        } else if (e.target.checked == false) {
-            this.state.secondCheck = 0;
-        };
-    },
-    thirdInventorCheck(e) {
-        if (e.target.checked == true) {
-            this.state.thirdCheck = 1;
-        } else if (e.target.checked == false) {
-            this.state.thirdCheck = 0;
-        };
-    },
-    avatarUrl(e) {
-        this.state.avatarUrl = e;
-    },
-    render() {
-        const FormItem = Form.Item;
-        const { getFieldDecorator } = this.props.form;
-        const formItemLayout = {
-            labelCol: { span: 3 },
-            wrapperCol: { span: 14 },
-        };
-        const _me = this;
-        return (
-            <Form horizontal onSubmit={this.handleSubmit} className="person-form">
-                <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>
-                <FormItem
-                    labelCol={{ span: 24 }}
-                    wrapperCol={{ span: 18 }}
-                    label="专利简要描述"
-                >
-                    {getFieldDecorator('intro', {
-                        initialValue: this.state.intro || null
-                    })(
-                        <Input type="textarea"
-                            placeholder="多行输入"
-                            rows={6} />
-                        )}
-                </FormItem>
-                <p>第一发明人</p>
-                <FormItem
-                    {...formItemLayout}
-                    label="姓名"
-                >
-                    {getFieldDecorator('firstInventorName', {
-                        rules: [{ required: true, message: 'Please input name!' }]
-                    })(
-                        <Input className="mini-input" />
-                        )}
-                    <Checkbox onChange={this.firstInventorCheck}>告知专利局是否公布</Checkbox>
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="身份证"
-                >
-                    {getFieldDecorator('firstInventorID', {
-                        rules: [{ required: true, message: 'Please input ID!' }]
-                    })(
-                        <Input className="mini-input" />
-                        )}
-                </FormItem>
-                <p>第二发明人</p>
-                <FormItem
-                    {...formItemLayout}
-                    label="姓名"
-                >
-                    {getFieldDecorator('secondInventorName')(
-                        <Input className="mini-input" />
-                    )}
-                    <Checkbox onChange={this.secondInventorCheck}>告知专利局是否公布</Checkbox>
-                </FormItem>
-                <p>第三发明人</p>
-                <FormItem
-                    {...formItemLayout}
-                    label="姓名"
-                >
-                    {getFieldDecorator('thirdInventorName')(
-                        <Input className="mini-input" />
-                    )}
-                    <Checkbox onChange={this.thirdInventorCheck}>告知专利局是否公布</Checkbox>
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="上传代理委托书"
-                    labelCol={{ span: 24 }}
-                    wrapperCol={{ span: 12 }}
-                >
-                    {getFieldDecorator('avatar')(
-                        <Avatar urlData={this.avatarUrl} name='patent_prory_statement' oid={this.state.companyName} />
-                    )}
-                    <span>请上传专利代理委托书</span><a onClick={() => { window.open(globalConfig.context + "/techservice/patent/downloadTemplate") }}>模板下载</a>
-                </FormItem>
-                <FormItem>
-                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
-                    <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
-                </FormItem>
-            </Form >
-        );
-    },
-}));
-
-
-const PatentAdd = React.createClass({
-    getInitialState() {
-        return {
-            visible: false,
-            loading: false
-        };
-    },
-    showModal() {
-        this.setState({
-            visible: true,
-        });
-    },
-    handleOk() {
-        this.setState({
-            visible: false,
-        });
-    },
-    handleCancel(e) {
-        this.setState({
-            visible: false,
-        });
-        this.props.closeDesc(false);
-    },
-    spinChange(e) {
-        this.setState({
-            loading: e
-        });
-    },
-    render() {
-        return (
-            <div className="patent-addNew">
-                <Button className="patent-addNew" type="primary" onClick={this.showModal}>申请新专利<Icon type="plus" /></Button>
-                <Spin spinning={this.state.loading} className='spin-box'>
-                    <Modal title="新专利申请" visible={this.state.visible}
-                        onOk={this.handleOk} onCancel={this.handleCancel}
-                        width='800px'
-                        footer=''
-                    >
-                        <PatentAddFrom spinState={this.spinChange} closeModal={this.handleCancel} />
-                    </Modal>
-                </Spin>
-            </div>
-        );
-    },
-});
-//export default PatentAdd;
-ReactDOM.render(
-	<PatentAdd />,
-	document.getElementById('root')
-);

+ 85 - 91
js/component/manageCenter/servicesManage/copyright/comPatentAdd.jsx

@@ -1,35 +1,36 @@
 import React from 'react';
 import { Icon, Modal, Button, Form, message, Input, Spin, Checkbox, Select, Row, Col } from 'antd';
 import './comprehensive.less';
+import { companySearch } from '../../../tools.js';
 import ajax from 'jquery/src/ajax/xhr.js'
 import $ from 'jquery/src/ajax';
 
 const PatentAddFrom = Form.create()(React.createClass({
-    getCompanyList() {
-        this.setState({
-            loading: true
-        });
+    getContactsList(theUid) {
         $.ajax({
-            method: "get",
+            method: "post",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + "/techservice/patent/getUnitNames",
+            url: globalConfig.context + "/api/admin/getContacts",
+            data: {
+                uid: theUid
+            },
             success: function (data) {
+                let theOption = [];
                 if (data.error.length || !data.data) {
                     return;
                 };
-                let _me = this;
-                for (var item in data.data) {
-                    _me.state.companyOption.push(
-                        <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
-                    )
+                for (let item in data.data) {
+                    let theData = data.data[item];
+                    theOption.push(
+                        <Select.Option value={item} key={theData}>{theData}</Select.Option>
+                    );
                 };
+                this.setState({
+                    contactsOption: theOption
+                });
             }.bind(this),
-        }).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
+        });
     },
     getInitialState() {
         return {
@@ -40,15 +41,12 @@ const PatentAddFrom = Form.create()(React.createClass({
             thirdCheck: 0,
             accelerated: 0,
             acceleratedDate: 0,
-            visible:"visible"
+            visible: "visible"
         };
     },
-    componentWillMount() {
-        this.getCompanyList();
-    },
     handleSubmit(e) {
         e.preventDefault();
-        if ( !this.state.companyName || this.state.companyName === "") {
+        if (!this.state.companyName || this.state.companyName === "") {
             message.warning('请先选择公司!');
             return;
         };
@@ -61,7 +59,7 @@ const PatentAddFrom = Form.create()(React.createClass({
                     crossDomain: false,
                     url: globalConfig.context + "/techservice/patent/manageApplyPatent",
                     data: {
-                        'uid':this.state.companyName,
+                        'uid': this.state.companyName,
                         'firstInventorIdNumber': values.firstInventorID,
                         'firstInventorName': values.firstInventorName,
                         'patentDes': values.intro,
@@ -80,7 +78,7 @@ const PatentAddFrom = Form.create()(React.createClass({
                     }
                 }.bind(this)).always(function () {
                     this.props.spinState(false);
-                    this.props.closeModal();
+                    this.props.okClick();
                     this.props.form.resetFields();
                 }.bind(this));
             }
@@ -89,17 +87,14 @@ const PatentAddFrom = Form.create()(React.createClass({
     acceleratedCheck(e) {
         if (e.target.checked == true) {
             this.state.accelerated = 1;
-       		this.state.visible = "show";
+            this.setState({ visible: "show" });
         } else if (e.target.checked == false) {
             this.state.accelerated = 0;
-        	this.state.visible = "visible";
+            this.setState({ visible: "visible" });
         }
     },
     acceleratedSelect(value) {
-		this.state.acceleratedDate = value;
-	},
-    avatarUrl(e) {
-        this.state.avatarUrl = e;
+        this.state.acceleratedDate = value;
     },
     render() {
         const FormItem = Form.Item;
@@ -111,31 +106,34 @@ const PatentAddFrom = Form.create()(React.createClass({
         const _me = this;
         return (
             <Form horizontal onSubmit={this.handleSubmit} className="person-form">
-				<FormItem
-	              	wrapperCol={{ span: 24 }}
-	          	>
-					<Row>
-						<Col span={ 12 }>
-		                    <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>
-
-	                	<Col span={ 12 }>
-		                	<Select placeholder="选择联系人" 
-			                filterOption={(input, option) => { 
-			                    this.setState({contactsId : 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>
-				</FormItem>
+                <FormItem
+                    wrapperCol={{ span: 24 }}
+                >
+                    <Row>
+                        <Col span={12}>
+                            <span>选择公司:  </span>
+                            <Select
+                                placeholder="请选择公司"
+                                notFoundContent="未找到公司"
+                                style={{ width: 200 }}
+                                showSearch
+                                filterOption={companySearch}
+                                value={this.state.uid}
+                                onSelect={(e, n) => { this.setState({ uid: e }); this.getContactsList(e); }}>
+                                {this.props.companyOption}
+                            </Select>
+                        </Col>
+                        <Col span={12}>
+                            <span>选择联系人:  </span>
+                            <Select placeholder="请选择联系人" style={{ width: 200 }}
+                                notFoundContent="未获取到联系人列表"
+                                value={this.state.contacts}
+                                onSelect={(e, n) => { this.setState({ contacts: e }); }}>
+                                {this.state.contactsOption}
+                            </Select>
+                        </Col>
+                    </Row>
+                </FormItem>
                 <FormItem
                     labelCol={{ span: 24 }}
                     wrapperCol={{ span: 18 }}
@@ -149,43 +147,39 @@ const PatentAddFrom = Form.create()(React.createClass({
                             rows={6} />
                         )}
                 </FormItem>
-                <Row>
-					<Col span={ 12 }>
-						<span>是否加急</span>
-						<Checkbox onChange={this.acceleratedCheck}></Checkbox>
-			          	<Select className={this.state.visible} defaultValue="请选择" style={{ width: 120 }} onChange={this.acceleratedSelect}>
-							<Option value="3">3天</Option>
-							<Option value="5">5天</Option>
-							<Option value="10">10天</Option>
-							<Option value="20">20天</Option>
-						</Select>
-		         	</Col>
-		        </Row>
+                <FormItem
+                    labelCol={{ span: 0 }}
+                    wrapperCol={{ span: 18 }}
+                >
+                    <span>是否加急:</span>
+                    <Checkbox onChange={this.acceleratedCheck}></Checkbox>
+                    <Select className={this.state.visible} placeholder="请选择加急时间" style={{ width: 120 }} onChange={this.acceleratedSelect}>
+                        <Select.Option value="3">3天</Select.Option>
+                        <Select.Option value="5">5天</Select.Option>
+                        <Select.Option value="10">10天</Select.Option>
+                        <Select.Option value="20">20天</Select.Option>
+                    </Select>
+                </FormItem>
                 <FormItem
                     {...formItemLayout}
                     label="选择咨询师"
                 >
-                    <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>
+                    <Select placeholder="请选择咨询师" style={{ width: 200 }}
+                        value={this.state.consultant}
+                        onSelect={(e, n) => { this.setState({ consultant: e }); }}>
+                        {this.props.authorOption}
+                    </Select>
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
                     label="外包公司"
                 >
-                    <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>
+                    {getFieldDecorator('intro', {
+                        initialValue: this.state.intro || null
+                    })(
+                        <Input placeholder="输入外包公司" />
+                        )}
                 </FormItem>
-                
                 <FormItem>
                     <Button className="set-submit" type="primary" htmlType="submit">确认</Button>
                     <Button type="ghost" style={{ marginLeft: '20px' }} onClick={this.props.closeModal}>取消</Button>
@@ -209,16 +203,11 @@ const PatentAdd = React.createClass({
             visible: true,
         });
     },
-    handleOk() {
-        this.setState({
-            visible: false,
-        });
-    },
     handleCancel(e) {
         this.setState({
             visible: false,
         });
-        this.props.closeDesc(false);
+        this.props.closeAdd(false);
     },
     spinChange(e) {
         this.setState({
@@ -228,14 +217,19 @@ const PatentAdd = React.createClass({
     render() {
         return (
             <div className="patent-addNew">
-                <Button className="patent-addNew" type="primary" onClick={this.showModal}>申请新专利<Icon type="plus" /></Button>
+                <Button className="patent-addNew" type="primary" onClick={this.showModal}>申请新软著<Icon type="plus" /></Button>
                 <Spin spinning={this.state.loading} className='spin-box'>
-                    <Modal title="申请新专利" visible={this.state.visible}
-                        onOk={this.handleOk} onCancel={this.handleCancel}
+                    <Modal title="申请新软著"
+                        visible={this.state.visible}
+                        onCancel={this.handleCancel}
                         width='800px'
                         footer=''
                     >
-                        <PatentAddFrom spinState={this.spinChange} closeModal={this.handleCancel} />
+                        <PatentAddFrom
+                            spinState={this.spinChange}
+                            okClick={() => { this.props.closeAdd(false, true) }}
+                            companyOption={this.props.companyOption}
+                            authorOption={this.props.authorOption} />
                     </Modal>
                 </Spin>
             </div>

+ 293 - 246
js/component/manageCenter/servicesManage/copyright/comPatentChange.jsx

@@ -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;

+ 36 - 9
js/component/manageCenter/servicesManage/copyright/comprehensive.less

@@ -1,15 +1,42 @@
-.patent-content {
-    padding: 20px;
-    background: #fff;
+#CopyrightDesc-form {
     font-size: 12px;
-    .express-desc-row{
+    .express-desc-row {
         line-height: 30px;
+        margin-bottom: 10px;
     }
-    
 }
-.show{
-    display: block;
+
+.ant-modal-body {
+    .half-item {
+        float: left;
+        width: 50%;
+        height: 36px;
+        margin-bottom: 10px;
+    }
+    .third-item {
+        float: left;
+        width: 33%;
+        height: 36px;
+        margin-bottom: 10px;
+        >p {
+            line-height: 30px;
+        }
+    }
+    .item-title {
+        line-height: 30px;
+        font-size: 14px;
+        color: #666;
+    }
+    .form-title {
+        font-size: 16px;
+        color: #333;
+    }
 }
-.visible{
-    display: none;
+
+.show {
+    display: inline-block;
 }
+
+.visible {
+    display: none;
+}

+ 101 - 23
js/component/manageCenter/servicesManage/copyright/copyright.jsx

@@ -1,7 +1,7 @@
 import React from 'react';
 import { Icon, Button, Input, Select, Spin, Table, DatePicker, message, Cascader } from 'antd';
-import { techFieldList, provinceArr } from '../../../dataDic.js';
-import { getTime, getPatentState } from '../../../tools.js';
+import { provinceArr } from '../../../dataDic.js';
+import { getTime, getPatentState, companySearch } from '../../../tools.js';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 import PatentAdd from './comPatentAdd.jsx';
@@ -101,14 +101,16 @@ const copyright = React.createClass({
     },
     getInitialState() {
         return {
-        	visible:false,
-            provinceOption:[],
-            companyOption:[],
-            authorOption:[],
-            province: '',
-            unitName: '',
+            visible: false,
+            provinceOption: [],
+            companyOption: [],
+            authorOption: [],
             data: [],
+            selectedRowKeys: [],
+            selectedRows: [],
             loading: false,
+            showAdd: false,
+            showDesc: false,
             pagination: {
                 defaultCurrent: 1,
                 defaultPageSize: 10,
@@ -131,6 +133,10 @@ const copyright = React.createClass({
                     dataIndex: 'province',
                     key: 'province',
                 }, {
+                    title: '外包公司',
+                    dataIndex: 'outsource',
+                    key: 'outsource',
+                }, {
                     title: '公司名称',
                     dataIndex: 'unitName',
                     key: 'unitName',
@@ -193,9 +199,54 @@ const copyright = React.createClass({
             showDesc: true
         });
     },
-    closeDesc(e) {
+    delectRow() {
+        let deletedIds = [];
+        for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
+            let rowItem = this.state.selectedRows[idx];
+            if (rowItem.cid) {
+                deletedIds.push(rowItem.cid)
+            }
+        }
+        this.setState({
+            selectedRowKeys: [],
+            loading: deletedIds.length > 0
+        });
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/deleteCognizance",
+            data: {
+                ids: deletedIds
+            }
+        }).done(function (data) {
+            if (!data.error.length) {
+                message.success('保存成功!');
+                this.setState({
+                    loading: false,
+                });
+            } else {
+                message.warning(data.error[0].message);
+            };
+            this.loadData();
+        }.bind(this));
+    },
+    closeDesc(e, s) {
         this.state.showDesc = e;
-        this.loadData();
+        if (s) {
+            this.loadData();
+        };
+    },
+    addClick() {
+        this.setState({
+            showAdd: true
+        });
+    },
+    closeAdd(e, s) {
+        this.state.showAdd = e;
+        if (s) {
+            this.loadData();
+        };
     },
     search() {
         this.loadData();
@@ -205,38 +256,65 @@ const copyright = React.createClass({
         this.state.unitName = undefined;
         this.loadData();
     },
-    showChangePatent() {
-    	require.ensure([], () => {
-     		const changePatent = require('./changePatent').default;
-         	this.setState({
-             	visible: true
-           	});
-      	});
-    },
     render() {
+        const rowSelection = {
+            selectedRowKeys: this.state.selectedRowKeys,
+            onChange: (selectedRowKeys, selectedRows) => {
+                this.setState({
+                    selectedRows: selectedRows,
+                    selectedRowKeys: selectedRowKeys
+                });
+            }
+        };
+        const hasSelected = this.state.selectedRowKeys.length > 0;
         return (
             <div className="foster-box">
                 <div className="foster-content">
                     <div className="content-title">
                         <span>软著申请管理</span>
-						<PatentAdd closeDesc={this.closeDesc}/>
-                    	<PatentChange closeDesc={this.closeDesc}/>
+                        <PatentAdd
+                            companyOption={this.state.companyOption}
+                            authorOption={this.state.authorOption}
+                            onClick={this.addClick}
+                            closeAdd={this.closeAdd} />
                     </div>
                     <div className="foster-query">
-                        <Select placeholder="选择省份" style={{ width: 200 }} onChange={(e) => { this.state.province = e }}>{this.state.provinceOption}</Select>
-                        <Select placeholder="选择公司" style={{ width: 200 }} onChange={(e) => { this.state.unitName = e }}>{this.state.companyOption}</Select>
+                        <Select placeholder="选择省份"
+                            style={{ width: 200 }}
+                            value={this.state.province}
+                            showSearch
+                            filterOption={companySearch}
+                            onChange={(e) => { this.setState({ province: e }) }}>
+                            {this.state.provinceOption}
+                        </Select>
+                        <Select placeholder="选择公司"
+                            style={{ width: 200 }}
+                            value={this.state.unitName}
+                            showSearch
+                            filterOption={companySearch}
+                            onChange={(e) => { this.setState({ unitName: e }) }}>
+                            {this.state.companyOption}
+                        </Select>
                         <Button type="primary" onClick={this.search}>搜索</Button>
                         <Button onClick={this.reset}>重置</Button>
+                        <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
+                            disabled={!hasSelected}
+                            onClick={this.delectRow}>删除<Icon type="minus" /></Button>
                     </div>
                     <div className="foster-table">
                         <Spin spinning={this.state.loading}>
                             <Table columns={this.state.columns}
+                                rowSelection={rowSelection}
                                 dataSource={this.state.dataSource}
                                 pagination={this.state.pagination}
                                 onRowClick={this.tableRowClick} />
                         </Spin>
                     </div>
-                    <PatentChange data={this.state.RowData} showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
+                    <PatentChange
+                        data={this.state.RowData}
+                        authorOption={this.state.authorOption}
+                        showDesc={this.state.showDesc}
+                        closeDesc={this.closeDesc} />
                 </div >
             </div>
         );

+ 33 - 15
js/component/manageCenter/servicesManage/highTech/HighTechApply.jsx

@@ -8,7 +8,7 @@ import moment from 'moment';
 import './highTechFoster.less';
 
 const CognizanceDescFrom = Form.create()(React.createClass({
-    loadData() {
+    loadData(uid, cid, year) {
         this.setState({
             loading: true
         });
@@ -18,9 +18,9 @@ const CognizanceDescFrom = Form.create()(React.createClass({
             crossDomain: false,
             url: globalConfig.context + "/api/admin/cognizanceDetail",
             data: {
-                cid: this.props.data.cid,
-                uid: this.props.data.uid,
-                year: this.props.data.year
+                cid: cid || this.props.data.cid,
+                uid: uid || this.props.data.uid,
+                year: year || this.props.data.year
             },
             success: function (data) {
                 if (data.error.length || !data.data) {
@@ -55,7 +55,7 @@ const CognizanceDescFrom = Form.create()(React.createClass({
             });
         }.bind(this));
     },
-    getStateData() {
+    getStateData(cid) {
         this.setState({
             loading: true
         });
@@ -65,7 +65,7 @@ const CognizanceDescFrom = Form.create()(React.createClass({
             crossDomain: false,
             url: globalConfig.context + "/api/admin/cognizanceLog",
             data: {
-                cid: this.props.data.cid
+                cid: cid || this.props.data.cid
             },
             success: function (data) {
                 if (data.error.length || !data.data) {
@@ -90,14 +90,14 @@ const CognizanceDescFrom = Form.create()(React.createClass({
             });
         }.bind(this));
     },
-    getContactsList() {
+    getContactsList(uid) {
         $.ajax({
             method: "post",
             dataType: "json",
             crossDomain: false,
             url: globalConfig.context + "/api/admin/getContacts",
             data: {
-                uid: this.props.data.uid
+                uid: uid || this.props.data.uid
             },
             success: function (data) {
                 let theOption = [];
@@ -138,7 +138,7 @@ const CognizanceDescFrom = Form.create()(React.createClass({
                 key: 'grossProfit',
             }],
             stateColumns: [{
-                title: '专利状态',
+                title: '认证状态',
                 dataIndex: 'state',
                 key: 'state',
                 render: (text) => { return getCognizanceState(text) }
@@ -190,12 +190,14 @@ const CognizanceDescFrom = Form.create()(React.createClass({
                     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,
@@ -219,8 +221,9 @@ const CognizanceDescFrom = Form.create()(React.createClass({
     },
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
-            this.getStateData();
-            this.loadData();
+            this.getStateData(nextProps.data.cid);
+            this.loadData(nextProps.data.uid, nextProps.data.cid, nextProps.data.year);
+            this.getContactsList(nextProps.data.uid);
         };
     },
     render() {
@@ -249,14 +252,30 @@ const CognizanceDescFrom = Form.create()(React.createClass({
                             <span>{theData.postalAddress}</span>
                         </div>
                         <FormItem className="half-item"
-                            labelCol={{ span: 6 }}
+                            labelCol={{ span: 3 }}
                             wrapperCol={{ span: 14 }}
                         >
+                            <span className="item-title">联系人: </span>
                             {getFieldDecorator('contacts', {
                                 rules: [{ required: true, message: '此项为必填项!' }],
                                 initialValue: theData.contacts
                             })(
-                                <Select placeholder='选择一个联系人'>{this.state.contactsOption}</Select>
+                                <Select
+                                    style={{ display: 'inline-block', width: '200px' }}
+                                    placeholder='选择一个联系人'>
+                                    {this.state.contactsOption}
+                                </Select>
+                                )}
+                        </FormItem>
+                        <FormItem className="half-item"
+                            labelCol={{ span: 3 }}
+                            wrapperCol={{ span: 14 }}
+                        >
+                            <span className="item-title">证书编号: </span>
+                            {getFieldDecorator('certificateNumber', {
+                                initialValue: this.props.data.certificateNumber
+                            })(
+                                <Input style={{ width: '200px' }} placeholder='高企证书编号' />
                                 )}
                         </FormItem>
                     </div>
@@ -865,7 +884,6 @@ const Cognizance = React.createClass({
             selectedRowKeys: [],
             loading: deletedIds.length > 0
         });
-        debugger;
         $.ajax({
             method: "POST",
             dataType: "json",

+ 15 - 2
js/component/tools.js

@@ -13,7 +13,8 @@ import {
     conversionFormList,
     annualReportStateList,
     cognizanceStateList,
-    technologyStateList
+    technologyStateList,
+    copyrightStateList
 } from './dataDic.js';
 
 module.exports = {
@@ -287,10 +288,22 @@ module.exports = {
             return theType;
         }
     },
+    getCopyrightState: function (e) {
+        if (e) {
+            let theType = '';
+            copyrightStateList.map(function (item) {
+                if (item.value == e) {
+                    theType = item.key;
+                };
+            });
+            return theType;
+        }
+    },
     downloadFile: function (path, fileName) {
         window.open(globalConfig.context + '/open/downloadFile?path=' + path + '&fileName=' + fileName)
     },
     companySearch(input, option) {
         return option.props.children.indexOf(input) >= 0
-    }
+    },
+
 }