Browse Source

Merge branch 'master' of https://git.coding.net/aft/AFT-WEB

wubb 8 years ago
parent
commit
c11e55d2ce
25 changed files with 2019 additions and 816 deletions
  1. 5 2
      js/component/account/services/content.jsx
  2. 239 0
      js/component/account/services/copyright/comPatentAdd.jsx
  3. 362 0
      js/component/account/services/copyright/comPatentChange.jsx
  4. 42 0
      js/component/account/services/copyright/comprehensive.less
  5. 265 0
      js/component/account/services/copyright/copyright.jsx
  6. 287 0
      js/component/account/services/copyright/copyright.less
  7. 2 2
      js/component/account/services/leftTab.jsx
  8. 2 2
      js/component/account/set/base.jsx
  9. 27 21
      js/component/account/set/edu.jsx
  10. 27 17
      js/component/account/set/person.jsx
  11. 34 27
      js/component/account/set/pfs.jsx
  12. 48 0
      js/component/dataDic.js
  13. 0 293
      js/component/manageCenter/servicesManage/copyright/changePatent.jsx
  14. 85 91
      js/component/manageCenter/servicesManage/copyright/comPatentAdd.jsx
  15. 293 246
      js/component/manageCenter/servicesManage/copyright/comPatentChange.jsx
  16. 36 9
      js/component/manageCenter/servicesManage/copyright/comprehensive.less
  17. 101 23
      js/component/manageCenter/servicesManage/copyright/copyright.jsx
  18. 50 40
      js/component/manageCenter/servicesManage/highTech/fosterDesc/hrSituation.jsx
  19. 20 14
      js/component/manageCenter/servicesManage/highTech/fosterDesc/orgTechCenter.jsx
  20. 33 15
      js/component/manageCenter/servicesManage/highTech/HighTechApply.jsx
  21. 17 4
      js/component/manageCenter/userManage/orgCertify.jsx
  22. 8 2
      js/component/manageCenter/userManage/orgList.jsx
  23. 17 5
      js/component/manageCenter/userManage/userDesc.jsx
  24. 4 1
      js/component/manageCenter/userManage/userList.jsx
  25. 15 2
      js/component/tools.js

+ 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;
+}

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

@@ -0,0 +1,265 @@
+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.data) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                        return;
+                    };
+                };
+                this.state.contactsOption = [];
+                for (let item in data.data) {
+                    let theData = data.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">

+ 2 - 2
js/component/account/set/base.jsx

@@ -185,8 +185,8 @@ const BaseFrom = Form.create()(React.createClass({
                         initialValue: this.state.sex || null
                     })(
                         <RadioGroup>
-                            <Radio value="male">男</Radio>
-                            <Radio value="female">女</Radio>
+                            <Radio value="">男</Radio>
+                            <Radio value="">女</Radio>
                         </RadioGroup>
                         )}
                 </FormItem>

+ 27 - 21
js/component/account/set/edu.jsx

@@ -34,10 +34,10 @@ class Avatar extends React.Component {
     constructor(props) {
         super(props);
         this.state = {
-            imageUrl: ''
+            imageUrl: '',
+            propsbool: true,
         }
     }
-
     handleChange(info) {
         if (info.file.status === 'done') {
             // Get this url from response in real world.
@@ -45,21 +45,27 @@ class Avatar extends React.Component {
             this.props.urlData(info.file.response.data);
         }
     }
+    componentWillReceiveProps(nextProps) {
+        if (nextProps.picUrl && this.state.propsbool) {
+            this.state.imageUrl = globalConfig.avatarHost + "/upload" + nextProps.picUrl;
+            this.state.propsbool = false;
+        }
+    }
     render() {
         const imageUrl = this.state.imageUrl;
         return (
             <Upload
                 className="avatar-uploader"
-                name={this.props.name}
+                name="avatar"
                 showUploadList={false}
-                action={globalConfig.context + "/api/user/identity/upload"}
+                action={globalConfig.context + "/api/user/avatar/uploadReplace"}
                 data={{ 'sign': this.props.name }}
                 beforeUpload={beforeUpload}
                 onChange={this.handleChange.bind(this)}
-                >
+            >
                 {
                     imageUrl ?
-                        <img src={imageUrl} role="presentation" id={this.props.name} /> :
+                        <img src={imageUrl} role="presentation" className="avatar" /> :
                         <Icon type="plus" className="avatar-uploader-trigger" />
                 }
             </Upload>
@@ -95,8 +101,8 @@ const EduFrom = Form.create()(React.createClass({
     getInitialState() {
         return {
             loading: false,
-            xueweiPicUrl : '',
-            xueliPicUrl : ''
+            xueweiPicUrl: '',
+            xueliPicUrl: ''
         };
     },
     componentDidMount() {
@@ -136,7 +142,7 @@ const EduFrom = Form.create()(React.createClass({
         });
     },
     downloadPic(type) {
-        window.open(globalConfig.context + "/open/downLoadPicture?path="+type)
+        window.open(globalConfig.context + "/open/downLoadPicture?path=" + type)
     },
     handleyear(e) {
         this.state.graduationTimeYear = e;
@@ -165,7 +171,7 @@ const EduFrom = Form.create()(React.createClass({
                     labelCol={{ span: 4 }}
                     wrapperCol={{ span: 6 }}
                     label="学历"
-                    >
+                >
                     {getFieldDecorator('edulvl', {
                         initialValue: this.state.edulvl || null
                     })(
@@ -181,7 +187,7 @@ const EduFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="专业"
-                    >
+                >
                     {getFieldDecorator('edupfs')(
                         <EduPfsSelect defValue={this.state.eduPfs} Professional={this.professional} />
                     )}
@@ -189,7 +195,7 @@ const EduFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="毕业学校"
-                    >
+                >
                     {getFieldDecorator('schoolname', {
                         initialValue: this.state.schoolname || null
                     })(
@@ -201,7 +207,7 @@ const EduFrom = Form.create()(React.createClass({
                     labelCol={{ span: 4 }}
                     wrapperCol={{ span: 4 }}
                     label="毕业时间"
-                    >
+                >
                     {getFieldDecorator('graduationTimeYear')(
                         <YearSelect defValue={this.state.graduationTimeYear || null} handleyear={this.handleyear} />
                     )}
@@ -209,16 +215,16 @@ const EduFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="学历证书"
-                    >
+                >
                     {getFieldDecorator('xueliPic')(
-                        <Avatar name="xueliPic" urlData={this.xueliPicUrl} />
+                        <Avatar name="xueliPic" urlData={this.xueliPicUrl} picUrl={this.state.xueliPicUrl} />
                     )}
-                    <p>{ this.state.xueliPicUrl !== "" ? <Button onClick={this.downloadPic.bind(this,this.state.xueliPicUrl)}>下载证书</Button> : ""}</p>
+                    <p>{this.state.xueliPicUrl !== "" ? <Button onClick={this.downloadPic.bind(this, this.state.xueliPicUrl)}>下载证书</Button> : ""}</p>
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
                     label="学历证书编号"
-                    >
+                >
                     {getFieldDecorator('edunum', {
                         initialValue: this.state.edunum || null
                     })(
@@ -229,16 +235,16 @@ const EduFrom = Form.create()(React.createClass({
                     {...formItemLayout}
                     label="学位证书"
                     hasFeedback
-                    >
+                >
                     {getFieldDecorator('xueweiPic')(
-                        <Avatar name="xueweiPic" urlData={this.xueweiPicUrl} />
+                        <Avatar name="xueweiPic" urlData={this.xueweiPicUrl} picUrl={this.state.xueweiPicUrl} />
                     )}
-                    <p>{this.state.xueweiPicUrl !== "" ? <Button onClick={this.downloadPic.bind(this,this.state.xueweiPicUrl)}>下载证书</Button> : ""}</p>
+                    <p>{this.state.xueweiPicUrl !== "" ? <Button onClick={this.downloadPic.bind(this, this.state.xueweiPicUrl)}>下载证书</Button> : ""}</p>
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
                     label="学位证书编号"
-                    >
+                >
                     {getFieldDecorator('degreenum', {
                         initialValue: this.state.degreenum || null
                     })(

+ 27 - 17
js/component/account/set/person.jsx

@@ -31,7 +31,8 @@ class Avatar extends React.Component {
     constructor(props) {
         super(props);
         this.state = {
-            imageUrl: ''
+            imageUrl: '',
+            propsbool: true,
         }
     }
     handleChange(info) {
@@ -41,6 +42,12 @@ class Avatar extends React.Component {
             this.props.urlData(info.file.response.data);
         }
     }
+    componentWillReceiveProps(nextProps) {
+        if (nextProps.picUrl && this.state.propsbool) {
+            this.state.imageUrl = globalConfig.avatarHost + "/upload" + nextProps.picUrl;
+            this.state.propsbool = false;
+        }
+    }
     render() {
         const imageUrl = this.state.imageUrl;
         return (
@@ -52,7 +59,7 @@ class Avatar extends React.Component {
                 data={{ 'sign': this.props.name }}
                 beforeUpload={beforeUpload}
                 onChange={this.handleChange.bind(this)}
-                >
+            >
                 {
                     imageUrl ?
                         <img src={imageUrl} role="presentation" className="avatar" /> :
@@ -68,6 +75,7 @@ class PicturesWall extends React.Component {
         super(props);
         this.state = {
             previewVisible: false,
+            propsbool: true,
             previewImage: '',
             fileList: [],
         }
@@ -87,9 +95,10 @@ class PicturesWall extends React.Component {
         this.setState({ fileList });
         this.props.fileList(fileList);
     }
-    componentWillReceiveProps(nextProps){
-        if ( nextProps.lifePhotoList ) {
+    componentWillReceiveProps(nextProps) {
+        if (nextProps.lifePhotoList && this.state.propsbool) {
             this.state.fileList = nextProps.lifePhotoList;
+            this.state.propsbool = false;
         }
     }
     render() {
@@ -108,7 +117,7 @@ class PicturesWall extends React.Component {
                     fileList={fileList}
                     onPreview={this.handlePreview}
                     onChange={this.handleChange.bind(this)}
-                    >
+                >
                     {fileList.length >= 9 ? null : uploadButton}
                 </Upload>
                 <Modal visible={previewVisible} footer={null} onCancel={this.handleCancel}>
@@ -130,7 +139,7 @@ const PersonFrom = Form.create()(React.createClass({
                 if (data.data) {
                     addressInit('cmbProvince', 'cmbCity', 'cmbArea',
                         data.data.residenceProvince, data.data.residenceCity, data.data.residenceArea);
-                    let theArr = splitUrl(data.data.lifePhotoUrl, ',', globalConfig.staticHost + '/upload');
+                    let theArr = splitUrl(data.data.lifePhotoUrl, ',', globalConfig.avatarHost + '/upload');
                     this.setState({
                         nickname: data.data.nickname,
                         cmbP: data.data.residenceProvince,
@@ -142,6 +151,7 @@ const PersonFrom = Form.create()(React.createClass({
                         fixTel: data.data.fixedTel,
                         fixTelExtension: data.data.fixedTelExtension,
                         qq: data.data.qq,
+                        personPortraitUrl: data.data.personPortraitUrl,
                         address: data.data.postalAddress,
                         postcode: data.data.postcode,
                         lifePhotoList: theArr
@@ -245,7 +255,7 @@ const PersonFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="社区昵称"
-                    >
+                >
                     {getFieldDecorator('nickname', {
                         initialValue: this.state.nickname || null
                     })(
@@ -255,7 +265,7 @@ const PersonFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="居住地"
-                    >
+                >
                     {getFieldDecorator('province', {
                         initialValue: this.state.cmbA || null
                     })(
@@ -271,9 +281,9 @@ const PersonFrom = Form.create()(React.createClass({
                     label="个人头像"
                     labelCol={{ span: 3 }}
                     wrapperCol={{ span: 21 }}
-                    >
+                >
                     {getFieldDecorator('avatar')(
-                        <Avatar urlData={this.avatarUrl} name='personPortrait' />
+                        <Avatar urlData={this.avatarUrl} name='personPortrait' picUrl={this.state.personPortraitUrl} />
                     )}
                 </FormItem>
                 <div className="set-explain">
@@ -284,7 +294,7 @@ const PersonFrom = Form.create()(React.createClass({
                     labelCol={{ span: 3 }}
                     wrapperCol={{ span: 21 }}
                     label="生活照"
-                    >
+                >
                     {getFieldDecorator('livePic')(
                         <PicturesWall fileList={this.livePicFileList} lifePhotoList={this.state.lifePhotoList} />
                     )}
@@ -293,7 +303,7 @@ const PersonFrom = Form.create()(React.createClass({
                     labelCol={{ span: 3 }}
                     wrapperCol={{ span: 20 }}
                     label="个人简介"
-                    >
+                >
                     {getFieldDecorator('intro', {
                         initialValue: this.state.intro || null
                     })(
@@ -316,7 +326,7 @@ const PersonFrom = Form.create()(React.createClass({
                     {...formItemLayout}
                     label="电子邮箱"
                     hasFeedback
-                    >
+                >
                     {getFieldDecorator('email', {
                         rules: [{
                             type: 'email', message: '请输入正确的邮箱地址!',
@@ -329,7 +339,7 @@ const PersonFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="固定电话"
-                    >
+                >
                     {getFieldDecorator('telephone')(
                         <p>
                             <Input value={this.state.fixTelArea} id="fixTelArea" onChange={this.fixTelAreaChange} /> - <Input value={this.state.fixTel} id="fixTel" onChange={this.fixTelChange} /> - <Input value={this.state.fixTelExtension} id="fixTelExtension" onChange={this.fixTelExtensionChange} />
@@ -339,7 +349,7 @@ const PersonFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="QQ"
-                    >
+                >
                     {getFieldDecorator('qq', {
                         initialValue: this.state.qq || null
                     })(
@@ -349,7 +359,7 @@ const PersonFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="通讯地址"
-                    >
+                >
                     {getFieldDecorator('address', {
                         initialValue: this.state.address || null
                     })(
@@ -359,7 +369,7 @@ const PersonFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="邮编"
-                    >
+                >
                     {getFieldDecorator('postcode', {
                         initialValue: this.state.postcode || null
                     })(

+ 34 - 27
js/component/account/set/pfs.jsx

@@ -33,10 +33,10 @@ class Avatar extends React.Component {
     constructor(props) {
         super(props);
         this.state = {
-            imageUrl: ''
+            imageUrl: '',
+            propsbool: true,
         }
     }
-
     handleChange(info) {
         if (info.file.status === 'done') {
             // Get this url from response in real world.
@@ -44,21 +44,28 @@ class Avatar extends React.Component {
             this.props.urlData(info.file.response.data);
         }
     }
+    componentWillReceiveProps(nextProps) {
+        debugger
+        if (nextProps.picUrl && this.state.propsbool) {
+            this.state.imageUrl = globalConfig.avatarHost + "/upload" + nextProps.picUrl;
+            this.state.propsbool = false;
+        }
+    }
     render() {
         const imageUrl = this.state.imageUrl;
         return (
             <Upload
                 className="avatar-uploader"
-                name={this.props.name}
+                name="avatar"
                 showUploadList={false}
-                action={globalConfig.context + "/api/user/identity/upload"}
-                data={{'sign': this.props.name}}
+                action={globalConfig.context + "/api/user/avatar/uploadReplace"}
+                data={{ 'sign': this.props.name }}
                 beforeUpload={beforeUpload}
                 onChange={this.handleChange.bind(this)}
-                >
+            >
                 {
                     imageUrl ?
-                        <img src={imageUrl} role="presentation" id={this.props.name} /> :
+                        <img src={imageUrl} role="presentation" className="avatar" /> :
                         <Icon type="plus" className="avatar-uploader-trigger" />
                 }
             </Upload>
@@ -98,8 +105,8 @@ const PfsFrom = Form.create()(React.createClass({
     getInitialState() {
         return {
             loading: false,
-            zigePicUrl : '',
-            zhichengPicUrl :''
+            zigePicUrl: '',
+            zhichengPicUrl: ''
         };
     },
     componentWillMount() {
@@ -125,7 +132,7 @@ const PfsFrom = Form.create()(React.createClass({
                         "qualificationGettime": this.state.zigeyear,
                         "qualificationCertificateUrl": this.state.zigePicUrl,
                         "workUnit": values.danwei,
-                        "position": values.touxia,
+                        "position": values.touxian,
                         "experiences": values.jingli,
                         "achievement": values.chengjiu
                     }
@@ -180,7 +187,7 @@ const PfsFrom = Form.create()(React.createClass({
         }
     },
     downloadPic(type) {
-        window.open(globalConfig.context + "/open/downLoadPicture?path="+type)
+        window.open(globalConfig.context + "/open/downLoadPicture?path=" + type)
     },
     render() {
         const { getFieldDecorator } = this.props.form;
@@ -195,7 +202,7 @@ const PfsFrom = Form.create()(React.createClass({
                     {...formItemLayout}
                     label="从事领域"
                     help={'请输入所从事领域的名称,多个领域请以逗号隔开'}
-                    >
+                >
                     {getFieldDecorator('lingyu', {
                         initialValue: this.state.lingyu || null
                     })(
@@ -206,7 +213,7 @@ const PfsFrom = Form.create()(React.createClass({
                     labelCol={{ span: 3 }}
                     wrapperCol={{ span: 4 }}
                     label="从业工龄"
-                    >
+                >
                     {getFieldDecorator('gongling', {
                         initialValue: this.state.gongling
                     })(
@@ -217,7 +224,7 @@ const PfsFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="职称名字"
-                    >
+                >
                     {getFieldDecorator('zhichengname', {
                         initialValue: this.state.zhichengname || null
                     })(
@@ -229,7 +236,7 @@ const PfsFrom = Form.create()(React.createClass({
                     wrapperCol={{ span: 6 }}
                     label="取得时间"
                     hasFeedback
-                    >
+                >
                     {getFieldDecorator('zhichengyear')(
                         <YearSelect defValue={this.state.zhichengyear} handleyear={this.zhichengyear} />
                     )}
@@ -238,19 +245,19 @@ const PfsFrom = Form.create()(React.createClass({
                     {...formItemLayout}
                     label="职称证书"
                     hasFeedback
-                    >
+                >
                     {getFieldDecorator('zhichengPic')(
-                        <Avatar name="zhichengPic" urlData={this.zhichengPic} />
+                        <Avatar name="zhichengPic" urlData={this.zhichengPic} picUrl={this.state.zhichengPicUrl}/>
                     )}
                 </FormItem>
                 <div className="set-explain">
                     <p>要求2M 以下的jpg、jpeg格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
-                    <p>{ this.state.zhichengPicUrl !== "" ? <Button onClick={this.downloadPic.bind(this,this.state.zhichengPicUrl)}>下载证书</Button> : ""}</p>
+                    <p>{this.state.zhichengPicUrl !== "" ? <Button onClick={this.downloadPic.bind(this, this.state.zhichengPicUrl)}>下载证书</Button> : ""}</p>
                 </div>
                 <FormItem
                     {...formItemLayout}
                     label="执业资格"
-                    >
+                >
                     {getFieldDecorator('zigename', {
                         initialValue: this.state.zigename
                     })(
@@ -262,7 +269,7 @@ const PfsFrom = Form.create()(React.createClass({
                     wrapperCol={{ span: 6 }}
                     label="取得时间"
                     hasFeedback
-                    >
+                >
                     {getFieldDecorator('zigeyear')(
                         <YearSelect defValue={this.state.zigeyear} handleyear={this.zigeyear} />
                     )}
@@ -271,19 +278,19 @@ const PfsFrom = Form.create()(React.createClass({
                     {...formItemLayout}
                     label="资格证明"
                     hasFeedback
-                    >
+                >
                     {getFieldDecorator('zigePic')(
-                        <Avatar name="zigePic" urlData={this.zigePic} />
+                        <Avatar name="zigePic" urlData={this.zigePic} picUrl={this.state.zigePicUrl}/>
                     )}
                 </FormItem>
                 <div className="set-explain">
                     <p>要求2M 以下的jpg、jpeg格式的图片。该资料不会公开展示,仅作为审核材料使用。</p>
-                    <p>{this.state.zigePicUrl !== "" ? <Button onClick={this.downloadPic.bind(this,this.state.zigePicUrl)}>下载证书</Button> : ""}</p>
+                    <p>{this.state.zigePicUrl !== "" ? <Button onClick={this.downloadPic.bind(this, this.state.zigePicUrl)}>下载证书</Button> : ""}</p>
                 </div>
                 <FormItem
                     {...formItemLayout}
                     label="工作单位"
-                    >
+                >
                     {getFieldDecorator('danwei', {
                         initialValue: this.state.danwei || null
                     })(
@@ -293,7 +300,7 @@ const PfsFrom = Form.create()(React.createClass({
                 <FormItem
                     {...formItemLayout}
                     label="职位头衔"
-                    >
+                >
                     {getFieldDecorator('touxian', {
                         initialValue: this.state.touxian || null
                     })(
@@ -329,7 +336,7 @@ const PfsFrom = Form.create()(React.createClass({
                         </div>
                     }
                     label=""
-                    >
+                >
                     {getFieldDecorator('jingli', {
                         initialValue: this.state.jingli || null
                     })(
@@ -366,7 +373,7 @@ const PfsFrom = Form.create()(React.createClass({
                         </div>
                     }
                     label=""
-                    >
+                >
                     {getFieldDecorator('chengjiu', {
                         initialValue: this.state.chengjiu || null
                     })(

+ 48 - 0
js/component/dataDic.js

@@ -2998,6 +2998,27 @@ module.exports = {
             key: "已认证"
         }
     ],
+    certifyStepList:[
+        {
+            value: "0",
+            key: "1-填写基本信息"
+        },{
+            value: "1",
+            key: "2-填写银行卡信息"
+        },{
+            value: "2",
+            key: "3-确认信息"
+        },{
+            value: "3",
+            key: "4-提交完成"
+        },{
+            value: "4",
+            key: "5-输入打款金额"
+        },{
+            value: "5",
+            key: "6-认证结果"
+        }
+    ],
     techFieldList: [
         {
             value:1,
@@ -4227,5 +4248,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>
         );

+ 50 - 40
js/component/manageCenter/servicesManage/highTech/fosterDesc/hrSituation.jsx

@@ -1,5 +1,5 @@
 import React from 'react';
-import { Input, InputNumber, Button, Form, Icon, Spin, message, Table, Modal, Upload } from 'antd';
+import { Input, InputNumber, Button, Form, Icon, Spin, message, Table, Modal, Upload, Select } from 'antd';
 import { beforeUploadFile, downloadFile } from '../../../../tools.js';
 import './hrSituation.less'
 import ajax from 'jquery/src/ajax/xhr.js'
@@ -9,9 +9,20 @@ import $ from 'jquery/src/ajax';
 const HrSituationDescFrom = Form.create()(React.createClass({
     getInitialState() {
         return {
-            loading: false
+            loading: false,
+            yearOption: []
         };
     },
+    componentWillMount() {
+        let d = new Date();
+        let _me = this;
+        d = d.getFullYear();
+        for (let i = d; i > d - 20; i--) {
+            _me.state.yearOption.push(
+                <Select.Option value={i.toString()} key={i}>{i}</Select.Option>
+            )
+        }
+    },
     handleSubmit(e) {
         e.preventDefault();
         this.props.form.validateFields((err, values) => {
@@ -112,16 +123,15 @@ const HrSituationDescFrom = Form.create()(React.createClass({
         return (
             <Form onSubmit={this.handleSubmit} className="hrSituation-form">
                 <div className="clearfix">
-                    <FormItem className="half-item"
-                        {...formItemLayout}
-                        label="年份"
-                    >
-                        {getFieldDecorator('year', {
-                            initialValue: this.props.data.year || null
-                        })(
-                            <InputNumber />
-                            )}
-                    </FormItem>
+                    <div className="activityCost-title"><span>年份: </span>
+                        {
+                            theData.year ? <span>{theData.year}</span> :
+                                <Select placeholder="请选择年份" style={{ width: 200 }}
+                                    onSelect={(e, n) => { this.state.year = e }}>
+                                    {this.state.yearOption}
+                                </Select>
+                        }
+                    </div>
                 </div>
                 <p className="hrSituation-title">总体情况</p>
                 <div className="clearfix">
@@ -131,7 +141,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="企业职工"
                     >
                         {getFieldDecorator('firmTotal', {
-                            initialValue: this.props.data.firmTotal || null
+                            initialValue: this.props.data.firmTotal || 0
                         })(
                             <InputNumber />
                             )}
@@ -141,7 +151,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="科技人员"
                     >
                         {getFieldDecorator('techTotal', {
-                            initialValue: this.props.data.techTotal || null
+                            initialValue: this.props.data.techTotal || 0
                         })(
                             <InputNumber />
                             )}
@@ -162,7 +172,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="企业职工"
                     >
                         {getFieldDecorator('firmInService', {
-                            initialValue: this.props.data.firmInService || null
+                            initialValue: this.props.data.firmInService || 0
                         })(
                             <InputNumber />
                             )}
@@ -172,7 +182,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="科技人员"
                     >
                         {getFieldDecorator('techInService', {
-                            initialValue: this.props.data.techInService || null
+                            initialValue: this.props.data.techInService || 0
                         })(
                             <InputNumber />
                             )}
@@ -183,7 +193,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="企业职工"
                     >
                         {getFieldDecorator('firmPartTime', {
-                            initialValue: this.props.data.firmPartTime || null
+                            initialValue: this.props.data.firmPartTime || 0
                         })(
                             <InputNumber />
                             )}
@@ -193,7 +203,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="科技人员"
                     >
                         {getFieldDecorator('techPartTime', {
-                            initialValue: this.props.data.techPartTime || null
+                            initialValue: this.props.data.techPartTime || 0
                         })(
                             <InputNumber />
                             )}
@@ -204,7 +214,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="企业职工"
                     >
                         {getFieldDecorator('firmTemporary', {
-                            initialValue: this.props.data.firmTemporary || null
+                            initialValue: this.props.data.firmTemporary || 0
                         })(
                             <InputNumber />
                             )}
@@ -214,7 +224,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="科技人员"
                     >
                         {getFieldDecorator('techTemporary', {
-                            initialValue: this.props.data.techTemporary || null
+                            initialValue: this.props.data.techTemporary || 0
                         })(
                             <InputNumber />
                             )}
@@ -225,7 +235,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="企业职工"
                     >
                         {getFieldDecorator('firmForeign', {
-                            initialValue: this.props.data.firmForeign || null
+                            initialValue: this.props.data.firmForeign || 0
                         })(
                             <InputNumber />
                             )}
@@ -235,7 +245,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="科技人员"
                     >
                         {getFieldDecorator('techForeign', {
-                            initialValue: this.props.data.techForeign || null
+                            initialValue: this.props.data.techForeign || 0
                         })(
                             <InputNumber />
                             )}
@@ -246,7 +256,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="企业职工"
                     >
                         {getFieldDecorator('firmAbroad', {
-                            initialValue: this.props.data.firmAbroad || null
+                            initialValue: this.props.data.firmAbroad || 0
                         })(
                             <InputNumber />
                             )}
@@ -256,7 +266,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="科技人员"
                     >
                         {getFieldDecorator('techAbroad', {
-                            initialValue: this.props.data.techAbroad || null
+                            initialValue: this.props.data.techAbroad || 0
                         })(
                             <InputNumber />
                             )}
@@ -267,7 +277,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="企业职工"
                     >
                         {getFieldDecorator('firmCore', {
-                            initialValue: this.props.data.firmCore || null
+                            initialValue: this.props.data.firmCore || 0
                         })(
                             <InputNumber />
                             )}
@@ -277,7 +287,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="科技人员"
                     >
                         {getFieldDecorator('techCore', {
-                            initialValue: this.props.data.techCore || null
+                            initialValue: this.props.data.techCore || 0
                         })(
                             <InputNumber />
                             )}
@@ -291,7 +301,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="博士"
                     >
                         {getFieldDecorator('doctor', {
-                            initialValue: this.props.data.doctor || null
+                            initialValue: this.props.data.doctor || 0
                         })(
                             <InputNumber />
                             )}
@@ -301,7 +311,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="硕士"
                     >
                         {getFieldDecorator('master', {
-                            initialValue: this.props.data.master || null
+                            initialValue: this.props.data.master || 0
                         })(
                             <InputNumber />
                             )}
@@ -311,7 +321,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="本科"
                     >
                         {getFieldDecorator('undergraduate', {
-                            initialValue: this.props.data.undergraduate || null
+                            initialValue: this.props.data.undergraduate || 0
                         })(
                             <InputNumber />
                             )}
@@ -321,7 +331,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="大专及以下"
                     >
                         {getFieldDecorator('college', {
-                            initialValue: this.props.data.college || null
+                            initialValue: this.props.data.college || 0
                         })(
                             <InputNumber />
                             )}
@@ -334,7 +344,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="高级职称"
                     >
                         {getFieldDecorator('seniorTitle', {
-                            initialValue: this.props.data.seniorTitle || null
+                            initialValue: this.props.data.seniorTitle || 0
                         })(
                             <InputNumber />
                             )}
@@ -344,7 +354,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="中级职称"
                     >
                         {getFieldDecorator('intermediateTitle', {
-                            initialValue: this.props.data.intermediateTitle || null
+                            initialValue: this.props.data.intermediateTitle || 0
                         })(
                             <InputNumber />
                             )}
@@ -354,7 +364,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="初级职称"
                     >
                         {getFieldDecorator('juniorTitle', {
-                            initialValue: this.props.data.juniorTitle || null
+                            initialValue: this.props.data.juniorTitle || 0
                         })(
                             <InputNumber />
                             )}
@@ -364,7 +374,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="高级技工"
                     >
                         {getFieldDecorator('seniorMechanic', {
-                            initialValue: this.props.data.seniorMechanic || null
+                            initialValue: this.props.data.seniorMechanic || 0
                         })(
                             <InputNumber />
                             )}
@@ -377,7 +387,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="30及以下"
                     >
                         {getFieldDecorator('belowThirty', {
-                            initialValue: this.props.data.belowThirty || null
+                            initialValue: this.props.data.belowThirty || 0
                         })(
                             <InputNumber />
                             )}
@@ -387,7 +397,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="31-34"
                     >
                         {getFieldDecorator('thirtyoneToThirtyfour', {
-                            initialValue: this.props.data.thirtyoneToThirtyfour || null
+                            initialValue: this.props.data.thirtyoneToThirtyfour || 0
                         })(
                             <InputNumber />
                             )}
@@ -397,7 +407,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="41-50"
                     >
                         {getFieldDecorator('fortyoneToFifty', {
-                            initialValue: this.props.data.fortyoneToFifty || null
+                            initialValue: this.props.data.fortyoneToFifty || 0
                         })(
                             <InputNumber />
                             )}
@@ -407,7 +417,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="50以上"
                     >
                         {getFieldDecorator('aboveFifty', {
-                            initialValue: this.props.data.aboveFifty || null
+                            initialValue: this.props.data.aboveFifty || 0
                         })(
                             <InputNumber />
                             )}
@@ -421,7 +431,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="新增就业人数"
                     >
                         {getFieldDecorator('newEmployment', {
-                            initialValue: this.props.data.newEmployment || null
+                            initialValue: this.props.data.newEmployment || 0
                         })(
                             <InputNumber />
                             )}
@@ -432,7 +442,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         label="高校应届毕业生人数"
                     >
                         {getFieldDecorator('graduateNumber', {
-                            initialValue: this.props.data.graduateNumber || null
+                            initialValue: this.props.data.graduateNumber || 0
                         })(
                             <InputNumber />
                             )}

+ 20 - 14
js/component/manageCenter/servicesManage/highTech/fosterDesc/orgTechCenter.jsx

@@ -24,11 +24,11 @@ const CenterListDescFrom = Form.create()(React.createClass({
                     url: globalConfig.context + "/techservice/cognizance/disposeCenterDetail",
                     data: {
                         id: this.props.data.id,
-                        uid: this.props.uid,
+                        cid: this.props.cid,
                         projectName: values.projectName,
-                        projectTimeFormattedDate: values.projectTime.format("YYYY-MM-DD"),
+                        projectTimeFormattedDate: values.projectTimeFormattedDate.format("YYYY-MM-DD"),
                         institution: values.institution,
-                        termTimeFormattedDate: values.termTime.format("YYYY-MM-DD"),
+                        termTimeFormattedDate: values.termTimeFormattedDate.format("YYYY-MM-DD"),
                         protocolUrl: this.state.protocolUrl
                     }
                 }).done(function (data) {
@@ -50,7 +50,7 @@ const CenterListDescFrom = Form.create()(React.createClass({
         const { getFieldDecorator } = this.props.form;
         const theData = this.props.data;
         const formItemLayout = {
-            labelCol: { span: 4 },
+            labelCol: { span: 6 },
             wrapperCol: { span: 12 },
         };
         const _me = this;
@@ -126,7 +126,7 @@ const CenterListDescFrom = Form.create()(React.createClass({
                             }
                         }}
                     >
-                        <Button><Icon type="upload" /> 上传研发费用台账 </Button>
+                        <Button><Icon type="upload" /> 上传协议附件 </Button>
                     </Upload>
                     <p style={{ marginTop: '10px' }}>{theData.protocolUrl ? <a onClick={downloadFile.bind(null, theData.protocolUrl, theData.protocolDownloadFileName)}>{theData.protocolDownloadFileName}</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
                 </div>
@@ -180,8 +180,12 @@ const CenterListDesc = React.createClass({
                         width='800px'
                         footer=''
                     >
-                        <CenterListDescFrom data={this.props.data}
-                            spinState={this.spinChange} closeModal={this.handleCancel} clickOk={this.handleOk} />
+                        <CenterListDescFrom
+                            cid={this.props.cid}
+                            data={this.props.data}
+                            spinState={this.spinChange}
+                            closeModal={this.handleCancel}
+                            clickOk={this.handleOk} />
                     </Modal>
                 </Spin>
             </div>
@@ -190,7 +194,7 @@ const CenterListDesc = React.createClass({
 });
 
 const CenterList = React.createClass({
-    loadOrgTechCenterDetail() {
+    loadOrgTechCenterDetail(uid) {
         this.setState({
             loading: true
         });
@@ -200,7 +204,7 @@ const CenterList = React.createClass({
             crossDomain: false,
             url: globalConfig.context + "/api/admin/center",
             data: {
-                uid: this.props.data.uid
+                uid: uid || this.props.data.uid
             }
         }).done((data) => {
             let theData = data.data;
@@ -325,8 +329,7 @@ const CenterList = React.createClass({
     },
     componentWillReceiveProps(nextProps) {
         if (this.props.data.uid !== nextProps.data.uid) {
-            this.props.data.uid = nextProps.data.uid;
-            this.loadOrgTechCenterDetail();
+            this.loadOrgTechCenterDetail(nextProps.data.uid);
         };
     },
     tableRowClick(record, index) {
@@ -430,7 +433,7 @@ const CenterList = React.createClass({
                         <span>成立时间: </span>
                         <DatePicker
                             allowClear={false}
-                            value={moment(this.state.foundingTime)}
+                            value={this.state.foundingTime ? moment(this.state.foundingTime) : undefined}
                             onChange={(date, dateString) => { this.setState({ foundingTime: dateString }); }}
                         />
                         <span>负责人: </span>
@@ -507,8 +510,11 @@ const CenterList = React.createClass({
                             onRowClick={this.tableRowClick} />
                     </Spin>
                 </div>
-                <CenterListDesc data={this.state.RowData}
-                    showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
+                <CenterListDesc
+                    cid={this.state.cid}
+                    data={this.state.RowData}
+                    showDesc={this.state.showDesc}
+                    closeDesc={this.closeDesc} />
             </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",

+ 17 - 4
js/component/manageCenter/userManage/orgCertify.jsx

@@ -4,7 +4,7 @@ import './userList.less';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 import moment from 'moment';
-import { eduLevelList, auditStatusList } from '../../dataDic.js'
+import { eduLevelList, auditStatusList, certifyStepList } from '../../dataDic.js'
 import { addressInit } from '../../tools.js';
 
 const OrgCertify = Form.create()(React.createClass({
@@ -72,7 +72,7 @@ const OrgCertify = Form.create()(React.createClass({
                     paymentDateFormattedDate: thisData.paymentDateFormattedDate,
                     lastYearTaxReportUrl: thisData.lastYearTaxReportUrl,
                     auditStatus: thisData.auditStatus,
-                    process: thisData.process
+                    process: thisData.process ? String(thisData.process) : undefined
                 });
                 this.props.form.resetFields();
             }.bind(this),
@@ -89,12 +89,18 @@ const OrgCertify = Form.create()(React.createClass({
                 this.setState({
                     loading: true
                 });
+                //
                 let licenceA = document.getElementById('licenceArea').value;
                 let licenceC = document.getElementById('licenceCity').value;
                 let licenceP = document.getElementById('licenceProvince').value;
                 let locationA = document.getElementById('locationArea').value;
                 let locationC = document.getElementById('locationCity').value;
                 let locationP = document.getElementById('locationProvince').value;
+                //金额判断
+                if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
+                    message.warning('请输入0-100以内的金额');
+                    return;
+                };
                 $.ajax({
                     method: "POST",
                     dataType: "json",
@@ -126,7 +132,7 @@ const OrgCertify = Form.create()(React.createClass({
                         validationAmount: values.validationAmount, //打款金额
                         paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
                         auditStatus: values.auditStatus,
-                        process: values.process,
+                        process: this.state.process,
 
                         licenceArea: licenceA,
                         licenceCity: licenceC,
@@ -426,7 +432,14 @@ const OrgCertify = Form.create()(React.createClass({
                     {getFieldDecorator('process', {
                         initialValue: this.state.process
                     })(
-                        <Input />
+                        <Select placeholder="选择要修改的认证步骤" style={{ width: 200 }}
+                            onChange={(e) => { this.state.process = e }}>
+                            {
+                                certifyStepList.map(function (item, i) {
+                                    return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
+                                })
+                            }
+                        </Select>
                         )}
                 </FormItem>
                 <FormItem wrapperCol={{ span: 12, offset: 4 }}>

+ 8 - 2
js/component/manageCenter/userManage/orgList.jsx

@@ -15,6 +15,8 @@ const OrgAdd = React.createClass({
         };
     },
     showModal() {
+        this.state.mobile = undefined;
+        this.state.unitName = undefined;
         this.setState({
             visible: true,
         });
@@ -67,11 +69,15 @@ const OrgAdd = React.createClass({
                     className="admin-desc-content">
                     <div className='orgAdd-input'>
                         <span>用户手机号码:</span>
-                        <Input onChange={(e) => { this.state.mobile = e.target.value }} />
+                        <Input
+                            value={this.state.mobile}
+                            onChange={(e) => { this.setState({ mobile : e.target.value }); }} />
                     </div>
                     <div className='orgAdd-input'>
                         <span>公司名称:</span>
-                        <Input onChange={(e) => { this.state.unitName = e.target.value }} />
+                        <Input
+                            value={this.state.unitName}
+                            onChange={(e) => { this.setState({ unitName: e.target.value }); }} />
                     </div>
                 </Modal>
             </div>

+ 17 - 5
js/component/manageCenter/userManage/userDesc.jsx

@@ -5,7 +5,7 @@ import './userList.less';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 import { addressInit } from '../../tools.js';
-import { auditStatusList } from '../../dataDic.js';
+import { auditStatusList, certifyStepList } from '../../dataDic.js';
 
 const UserForm = Form.create()(React.createClass({
     getInitialState() {
@@ -57,7 +57,7 @@ const UserForm = Form.create()(React.createClass({
                     bankCardNumber: thisData.bankCardNumber,
                     amountMoney: thisData.amountMoney,
                     auditStatus: thisData.auditStatus,
-                    process: thisData.process,
+                    process: thisData.process ? String(thisData.process) : undefined,
                     paymentDateFormattedDate: thisData.paymentDateFormattedDate,
                     paymentDate: thisData.paymentDate
                 });
@@ -76,6 +76,11 @@ const UserForm = Form.create()(React.createClass({
             let cmbP = document.getElementById('cmbProvince').value;
             let cmbC = document.getElementById('cmbCity').value;
             let cmbA = document.getElementById('cmbArea').value;
+            //金额判断
+            if (values.amountMoney && values.amountMoney < 0 && values.amountMoney > 100 && /^\d+(\.\d{2})?$/.test(values.amountMoney)) {
+                message.warning('请输入0-100以内的金额');
+                return;
+            };
             if (!err) {
                 this.setState({
                     loading: true
@@ -104,7 +109,7 @@ const UserForm = Form.create()(React.createClass({
                         amountMoney: values.amountMoney,
                         auditStatus: values.auditStatus,
                         paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
-                        process: values.process
+                        process: this.state.process
                     }
                 }).done(function (data) {
                     if (!data.error.length) {
@@ -283,7 +288,7 @@ const UserForm = Form.create()(React.createClass({
                     {getFieldDecorator('auditStatus', {
                         initialValue: this.state.auditStatus
                     })(
-                        <Select placeholder="选择认证状态" style={{ width: 200 }}
+                        <Select placeholder="选择要修改的认证状态" style={{ width: 200 }}
                             onChange={(e) => { this.state.auditStatus = e }}>
                             {
                                 auditStatusList.map(function (item, i) {
@@ -300,7 +305,14 @@ const UserForm = Form.create()(React.createClass({
                     {getFieldDecorator('process', {
                         initialValue: this.state.process
                     })(
-                        <Input />
+                        <Select placeholder="选择要修改的认证步骤" style={{ width: 200 }}
+                            onChange={(e) => { this.state.process = e }}>
+                            {
+                                certifyStepList.map(function (item, i) {
+                                    return <Select.Option key={i} value={item.value} >{item.key}</Select.Option>
+                                })
+                            }
+                        </Select>
                         )}
                 </FormItem>
                 <FormItem wrapperCol={{ span: 12, offset: 4 }}>

+ 4 - 1
js/component/manageCenter/userManage/userList.jsx

@@ -15,6 +15,7 @@ const OrgAdd = React.createClass({
         };
     },
     showModal() {
+        this.state.mobile;
         this.setState({
             visible: true,
         });
@@ -66,7 +67,9 @@ const OrgAdd = React.createClass({
                     className="admin-desc-content">
                     <div className='orgAdd-input'>
                         <span>用户手机号码:</span>
-                        <Input onChange={(e) => { this.state.mobile = e.target.value }} />
+                        <Input
+                            value={this.state.mobile}
+                            onChange={(e) => { this.setState({ mobile: e.target.value }); }} />
                     </div>
                 </Modal>
             </div>

+ 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
-    }
+    },
+
 }