Browse Source

Accept Merge Request #27 v1.0.22 meger : (master -> test)

Merge Request: v1.0.22 meger
Created By: @seirios
Accepted By: @seirios
URL: https://coding.net/t/aft/p/AFT-WEB/git/merge/27
seirios 8 years ago
parent
commit
bb56a950ab
30 changed files with 1205 additions and 1303 deletions
  1. 296 183
      js/component/account/services/activity.jsx
  2. 1 1
      js/component/account/services/technologyChange.jsx
  3. 8 8
      js/component/groupCertify/personal.jsx
  4. 41 72
      js/component/manageCenter/servicesManage/copyright/comPatentChange.jsx
  5. 143 7
      js/component/manageCenter/servicesManage/copyright/copyright.jsx
  6. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/achievement.jsx
  7. 292 208
      js/component/manageCenter/servicesManage/highTech/fosterDesc/activity.jsx
  8. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/activityCostList.jsx
  9. 0 22
      js/component/manageCenter/servicesManage/highTech/fosterDesc/companyDetail.jsx
  10. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/finance.jsx
  11. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/honorList.jsx
  12. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/hrSituation.jsx
  13. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/innovationAbility.jsx
  14. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/intellectual.jsx
  15. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/orgTechCenter.jsx
  16. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/ratepay.jsx
  17. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/standard.jsx
  18. 1 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/techProduct.jsx
  19. 60 40
      js/component/manageCenter/servicesManage/highTech/highTechApply.jsx
  20. 22 46
      js/component/manageCenter/servicesManage/patent/comPatentAdd.jsx
  21. 63 78
      js/component/manageCenter/servicesManage/patent/comPatentDesc.jsx
  22. 165 22
      js/component/manageCenter/servicesManage/patent/comprehensive.jsx
  23. 3 2
      js/component/manageCenter/servicesManage/patent/comprehensive.less
  24. 49 40
      js/component/manageCenter/servicesManage/technology/applyChange.jsx
  25. 17 3
      js/component/manageCenter/servicesManage/technology/applyManage.jsx
  26. 20 8
      js/component/manageCenter/topTab.jsx
  27. 0 529
      js/component/manageCenter/userManage/orgCertify.jsx
  28. 1 21
      js/component/manageCenter/userManage/orgDesc.jsx
  29. 12 1
      js/component/tools.js
  30. 1 1
      package.json

+ 296 - 183
js/component/account/services/activity.jsx

@@ -1,5 +1,5 @@
 import React from 'react';
-import { Icon, Button, Upload, Input, Spin, Table, message, Select, Modal, DatePicker, Cascader, Transfer, InputNumber } from 'antd';
+import { Icon, Button, Upload, Input, Spin, Table, message, Select, Modal, DatePicker, Cascader, Transfer, InputNumber, Switch, Form } from 'antd';
 import { technicalSourceList } from '../../dataDic.js';
 import { techFieldList } from '../../DicTechFieldList.js';
 import { getTechField, getTechnicalSource, beforeUploadFile, newDownloadFile } from '../../tools.js';
@@ -8,89 +8,102 @@ import moment from 'moment';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 
-const ActivityDesc = React.createClass({
+
+const ActivityForm = Form.create()(React.createClass({
     getInitialState() {
         return {
-            visible: false,
             loading: false,
             targetKeys: [],
             selectedKeys: []
         };
     },
-    handleOk() {
-        this.setState({
-            loading: true,
-        });
+    loadData(id) {
+        this.setState({ loading: true });
         $.ajax({
-            method: "POST",
+            method: "get",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + "/api/user/cognizance/activity",
+            url: globalConfig.context + "/api/user/cognizance/activityDetail",
             data: {
-                id: this.props.data.id,
-                activityName: this.state.activityName,
-                activityNumber: this.state.activityNumber,
-                startDateFormattedDate: this.state.startDateFormattedDate,
-                endDateFormattedDate: this.state.endDateFormattedDate,
-                technicalField1: this.state.techField[0],
-                technicalField2: this.state.techField[1],
-                technicalField3: this.state.techField[2],
-                technicalSource: this.state.technicalSource,
-                intellectualPropertyNumber: this.state.targetKeys.join(","),
-                budget: this.state.budget,
-                firstYearExpenditure: this.state.firstYearExpenditure,
-                secondYearExpenditure: this.state.secondYearExpenditure,
-                thirdYearExpenditure: this.state.thirdYearExpenditure,
-                implement: this.state.implement,
-                technologyInnovation: this.state.technologyInnovation,
-                achievement: this.state.achievement,
-                proofUrl: this.state.proofUrl,
-                projectMode: this.state.projectMode
+                id: id || this.props.data.id
             }
         }).done(function (data) {
-            if (!data.error.length) {
-                message.success('保存成功!');
-                this.setState({
-                    loading: false,
-                    visible: false
-                });
-                this.props.closeDesc(false);
+            if (!data.data) {
+                if (data.error && data.error.length) {
+                    message.warning(data.error[0].message);
+                };
             } else {
-                message.warning(data.error[0].message);
                 this.setState({
-                    loading: false
+                    data: data.data,
+                    targetKeys: data.data.intellectualPropertyNumber ? data.data.intellectualPropertyNumber.split(",") : [],
+                    techField: [Number(data.data.technicalField1), data.data.technicalField2 ? Number(data.data.technicalField2) : null, data.data.technicalField3 ? Number(data.data.technicalField3) : null]
                 });
             };
+        }.bind(this)).always(function (data) {
+            this.setState({ loading: false });
         }.bind(this));
     },
-    handleCancel(e) {
-        this.setState({
-            visible: false,
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                this.setState({ loading: true });
+                $.ajax({
+                    method: "POST",
+                    dataType: "json",
+                    crossDomain: false,
+                    url: globalConfig.context + "/api/user/cognizance/activity",
+                    data: {
+                        id: this.props.data.id,
+                        uid: this.props.uid,
+                        activityName: values.activityName,
+                        activityNumber: values.activityNumber,
+                        projectMode: values.projectMode,
+                        startDateFormattedDate: values.startDate ? values.startDate.format("YYYY-MM-DD") : null,
+                        endDateFormattedDate: values.endDate ? values.endDate.format("YYYY-MM-DD") : null,
+                        technicalField1: values.techField[0],
+                        technicalField2: values.techField[1],
+                        technicalField3: values.techField[2],
+                        technicalSource: values.technicalSource,
+                        intellectualPropertyNumber: this.state.targetKeys.join(","),
+                        budget: values.budget,
+                        implement: values.implement,
+                        technologyInnovation: values.technologyInnovation,
+                        achievement: values.achievement,
+                        proofUrl: this.state.proofUrl
+                    }
+                }).done(function (data) {
+                    if (!data.error.length) {
+                        message.success('保存成功!');
+                        this.props.closeModal(true);
+                    } else {
+                        message.warning(data.error[0].message);
+                    };
+                    this.setState({ loading: false });
+                }.bind(this));
+            }
         });
-        this.props.closeDesc(false);
+    },
+    componentWillMount() {
+        if (this.props.data.id) {
+            this.loadData();
+        } else {
+            this.state.data = {};
+            this.state.targetKeys = [];
+            this.state.techField = undefined;
+        };
     },
     componentWillReceiveProps(nextProps) {
-        this.state.visible = nextProps.showDesc;
-        if (!this.props.showDesc && nextProps.showDesc) {
-            this.state.id = nextProps.data.id;
-            this.state.activityName = nextProps.data.activityName;
-            this.state.activityNumber = nextProps.data.activityNumber;
-            this.state.startDateFormattedDate = nextProps.data.startDateFormattedDate;
-            this.state.endDateFormattedDate = nextProps.data.endDateFormattedDate;
-            this.state.techField = nextProps.data.techField;
-            this.state.technicalSource = nextProps.data.technicalSource;
-            this.state.targetKeys = nextProps.data.intellectualPropertyNumber || [];
-            this.state.budget = nextProps.data.budget;
-            this.state.firstYearExpenditure = nextProps.data.firstYearExpenditure;
-            this.state.secondYearExpenditure = nextProps.data.secondYearExpenditure;
-            this.state.thirdYearExpenditure = nextProps.data.thirdYearExpenditure;
-            this.state.implement = nextProps.data.implement;
-            this.state.technologyInnovation = nextProps.data.technologyInnovation;
-            this.state.achievement = nextProps.data.achievement;
+        if (!this.props.visible && nextProps.visible) {
             this.state.mockData = nextProps.data.mockData;
-            this.state.projectMode = nextProps.data.projectMode ? String(nextProps.data.projectMode) : undefined;
-            this.state.proofUrl = nextProps.data.proofUrl;
-            this.state.proofDownloadFileName = nextProps.data.proofDownloadFileName;
+            this.props.form.resetFields();
+            if (nextProps.data.id) {
+                this.loadData(nextProps.data.id);
+            } else {
+                this.state.data = {};
+                this.state.targetKeys = [];
+                this.state.techField = undefined;
+            };
         };
     },
     intellectualChange(nextTargetKeys, direction, moveKeys) {
@@ -100,63 +113,108 @@ const ActivityDesc = React.createClass({
         this.setState({ selectedKeys: [...sourceSelectedKeys, ...targetSelectedKeys] });
     },
     render() {
-        if (this.props.data) {
+        const FormItem = Form.Item;
+        const { getFieldDecorator } = this.props.form;
+        const theData = this.state.data;
+        const formItemLayout = {
+            labelCol: { span: 6 },
+            wrapperCol: { span: 12 },
+        };
+        if (theData) {
             return (
-                <div className="admin-desc">
-                    <Modal title="企业研究开发活动情况详情" visible={this.state.visible} onCancel={this.handleCancel}
-                        width='800px' footer={[
-                            <Button key="submit" type="primary" size="large" loading={this.state.loading} onClick={this.handleOk}>保存</Button>,
-                            <Button key="back" type="ghost" size="large" onClick={this.handleCancel}>取消</Button>
-                        ]}
-                        className="admin-desc-content">
+                <Spin spinning={this.state.loading} className='spin-box'>
+                    <Form onSubmit={this.handleSubmit} id="admin-desc-content">
                         <div className="clearfix">
-                            <div className="half-div">
-                                <p>研发活动编号:</p>
-                                <Input value={this.state.activityNumber}
-                                    onChange={(e) => { this.setState({ activityNumber: e.target.value }); }} />
-                            </div>
-                            <div className="half-div">
-                                <p>研发活动名称:</p>
-                                <Input value={this.state.activityName}
-                                    onChange={(e) => { this.setState({ activityName: e.target.value }); }} />
-                            </div>
-                            <div className="half-div">
-                                <p>开始日期:</p>
-                                <DatePicker
-                                    value={this.state.startDateFormattedDate ? moment(this.state.startDateFormattedDate) : null}
-                                    onChange={(data, dataString) => { this.setState({ startDateFormattedDate: dataString }); }} />
-                            </div>
-                            <div className="half-div">
-                                <p>结束日期:</p>
-                                <DatePicker
-                                    value={this.state.endDateFormattedDate ? moment(this.state.endDateFormattedDate) : null}
-                                    onChange={(data, dataString) => { this.setState({ endDateFormattedDate: dataString }); }} />
-                            </div>
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="研发活动编号"
+                            >
+                                {getFieldDecorator('activityNumber', {
+                                    initialValue: theData.activityNumber
+                                })(
+                                    <Input />
+                                    )}
+                            </FormItem>
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="研发活动名称"
+                            >
+                                {getFieldDecorator('activityName', {
+                                    initialValue: theData.activityName
+                                })(
+                                    <Input />
+                                    )}
+                            </FormItem>
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="开始日期"
+                            >
+                                {getFieldDecorator('startDate', {
+                                    initialValue: theData.startDateFormattedDate ? moment(theData.startDateFormattedDate) : null
+                                })(
+                                    <DatePicker />
+                                    )}
+                            </FormItem>
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="结束日期"
+                            >
+                                {getFieldDecorator('endDate', {
+                                    initialValue: theData.endDateFormattedDate ? moment(theData.endDateFormattedDate) : null
+                                })(
+                                    <DatePicker />
+                                    )}
+                            </FormItem>
                         </div>
-                        <div>
-                            <p>技术领域:</p>
-                            <Cascader
-                                style={{ width: 500 }}
-                                options={techFieldList}
-                                value={this.state.techField}
-                                onChange={(value, selectedOptions) => { this.setState({ techField: value }); console.log(value) }}
-                                placeholder="选择技术领域"
-                                showSearch
-                            />,
+                        <div className="clearfix">
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="技术领域"
+                            >
+                                {getFieldDecorator('techField', {
+                                    initialValue: this.state.techField
+                                })(
+                                    <Cascader
+                                        style={{ width: 500 }}
+                                        options={techFieldList}
+                                        placeholder="选择技术领域"
+                                        showSearch
+                                    />
+                                    )}
+                            </FormItem>
                         </div>
-                        <div className="half-div">
-                            <p>技术来源:</p>
-                            <Select placeholder="选择技术来源" style={{ width: 230 }}
-                                value={this.state.technicalSource}
-                                onChange={(e) => { this.setState({ technicalSource: e }) }}>
-                                {
-                                    technicalSourceList.map(function (item, i) {
-                                        return <Select.Option key={1000 + i} value={item.value} >{item.key}</Select.Option>
-                                    })
-                                }
-                            </Select>
+                        <div className="clearfix">
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="技术来源"
+                            >
+                                {getFieldDecorator('technicalSource', {
+                                    initialValue: theData.technicalSource ? String(theData.technicalSource) : undefined,
+                                })(
+                                    <Select placeholder="选择技术来源" style={{ width: 230 }}>
+                                        {
+                                            technicalSourceList.map(function (item, i) {
+                                                return <Select.Option key={1000 + i} value={item.value} >{item.key}</Select.Option>
+                                            })
+                                        }
+                                    </Select>
+                                    )}
+                            </FormItem>
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="立项类型"
+                            >
+                                {getFieldDecorator('projectMode', {
+                                    initialValue: theData.projectMode
+                                })(
+                                    <Select style={{ width: 120 }}>
+                                        <Select.Option value='0'>内部立项</Select.Option>
+                                        <Select.Option value='1'>外部立项</Select.Option>
+                                    </Select>
+                                    )}
+                            </FormItem>
                         </div>
-                        <div style={{ marginTop: '10px' }}>
+                        <div style={{ marginBottom: '20px' }}>
                             <p>知识产权编号:</p>
                             <Transfer
                                 dataSource={this.props.mockData}
@@ -172,82 +230,88 @@ const ActivityDesc = React.createClass({
                                 render={item => `${item.name}-${item.key}`}
                             />
                         </div>
-                        <div>
-                            <p>研发经费总预算(万元):</p>
-                            <InputNumber value={this.state.budget || 0}
-                                onChange={(e) => { this.setState({ budget: e }); }} />
-                        </div>
+                        <FormItem className="half-div"
+                            labelCol={{ span: 8 }}
+                            wrapperCol={{ span: 12 }}
+                            label="研发经费总预算"
+                        >
+                            {getFieldDecorator('budget', {
+                                initialValue: theData.budget
+                            })(
+                                <InputNumber />
+                                )}
+                            <span>万元</span>
+                        </FormItem>
                         <div className="clearfix" >
-                            <p>研发经费近三年总支出(万元):</p>
-                            <div className="half-div">
-                                <span>总计(万元):</span>
-                                <InputNumber value={
-                                    this.state.firstYearExpenditure + this.state.secondYearExpenditure + this.state.thirdYearExpenditure || 0
-                                } />
-                            </div>
-                            <div className="half-div">
-                                <span>其中(前一年):</span>
-                                <span>{this.state.firstYearExpenditure}
-                                </span>
-                            </div>
-                            <div className="half-div">
-                                <span>其中(前二年):</span>
-                                <span>{this.state.secondYearExpenditure}
-                                </span>
-                            </div>
-                            <div className="half-div">
-                                <span>其中(前三年):</span>
-                                <span>{this.state.thirdYearExpenditure}
-                                </span>
-                            </div>
+                            <p>研发经费近三年总支出:</p>
+                            <FormItem className="half-item"
+                                labelCol={{ span: 8 }}
+                                wrapperCol={{ span: 12 }}
+                                label="总计"
+                            >
+                                <span>{
+                                    (theData.firstYearExpenditure || 0) +
+                                    (theData.secondYearExpenditure || 0) +
+                                    (theData.thirdYearExpenditure || 0)
+                                }</span>
+                                <span>万元</span>
+                            </FormItem>
+                            <FormItem className="half-item"
+                                labelCol={{ span: 8 }}
+                                wrapperCol={{ span: 12 }}
+                                label="其中(前一年)"
+                            >
+                                <span>{theData.firstYearExpenditure}</span>
+                                <span>万元</span>
+                            </FormItem>
+                            <FormItem className="half-item"
+                                labelCol={{ span: 8 }}
+                                wrapperCol={{ span: 12 }}
+                                label="其中(前二年)"
+                            >
+                                <span>{theData.secondYearExpenditure}</span>
+                                <span>万元</span>
+                            </FormItem>
+                            <FormItem className="half-item"
+                                labelCol={{ span: 8 }}
+                                wrapperCol={{ span: 12 }}
+                                label="其中(前三年)"
+                            >
+                                <span>{theData.thirdYearExpenditure}</span>
+                                <span>万元</span>
+                            </FormItem>
                         </div>
                         <div className="clearfix">
                             <div className="half-div">
                                 <p>目的及组织实施方式(限400字):</p>
-                                <Input type="textarea" rows={6}
-                                    value={this.state.implement}
-                                    onChange={(e) => {
-                                        if (e.target.value.length > 400) {
-                                            return;
-                                        }
-                                        this.setState({ implement: e.target.value });
-                                    }} />
+                                {getFieldDecorator('implement', {
+                                    initialValue: theData.implement
+                                })(
+                                    <Input type="textarea" rows={6} />
+                                    )}
                             </div>
                             <div className="half-div">
                                 <p>核心技术及创新点(限400字):</p>
-                                <Input type="textarea" rows={6}
-                                    value={this.state.technologyInnovation}
-                                    onChange={(e) => {
-                                        if (e.target.value.length > 400) {
-                                            return;
-                                        }
-                                        this.setState({ technologyInnovation: e.target.value });
-                                    }} />
+                                {getFieldDecorator('technologyInnovation', {
+                                    initialValue: theData.technologyInnovation
+                                })(
+                                    <Input type="textarea" rows={6} />
+                                    )}
                             </div>
                             <div className="half-div">
                                 <p>取得的阶段性成果(限400字):</p>
-                                <Input type="textarea" rows={6}
-                                    value={this.state.achievement}
-                                    onChange={(e) => {
-                                        if (e.target.value.length > 400) {
-                                            return;
-                                        }
-                                        this.setState({ achievement: e.target.value });
-                                    }} />
+                                {getFieldDecorator('achievement', {
+                                    initialValue: theData.achievement
+                                })(
+                                    <Input type="textarea" rows={6} />
+                                    )}
                             </div>
                         </div>
-                        <Select style={{ width: 120 }}
-                            placeholder='请选择立项类型'
-                            value={this.state.projectMode}
-                            onChange={(e) => { this.setState({ projectMode: e }); }}>
-                            <Select.Option value='1'>内部立项</Select.Option>
-                            <Select.Option value='2'>外部立项</Select.Option>
-                        </Select>
                         <div style={{ width: '50%' }}>
                             <Upload
                                 name="ratepay"
-                                action={globalConfig.context + "/api/user/cognizance/uploadProof"}
-                                data={{ 'sign': 'proof' }}
+                                action={globalConfig.context + "/api/admin/uploadProof"}
+                                data={{ 'sign': 'proof', 'uid': this.props.uid }}
                                 beforeUpload={beforeUploadFile}
                                 showUploadList={false}
                                 onChange={(info) => {
@@ -269,17 +333,63 @@ const ActivityDesc = React.createClass({
                             >
                                 <Button><Icon type="upload" /> 上传立项证明材料 </Button>
                             </Upload>
-                            <p>{this.state.proofUrl ? <a onClick={newDownloadFile.bind(null, this.state.id, 'proof', '/api/user/cognizance/downloadProof')}>{this.state.proofDownloadFileName}</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
+                            <p>{theData.proofUrl ? <a onClick={newDownloadFile.bind(null, theData.id, 'proof', '/api/admin/downloadProof')}>{theData.proofDownloadFileName}</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
                         </div>
-                    </Modal>
-                </div>
-            );
+                        <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 >
+                </Spin >
+            )
         } else {
-            return <div></div>
-        }
+            return (<div></div>)
+        };
+    }
+}));
+
+const ActivityDesc = React.createClass({
+    getInitialState() {
+        return {
+            visible: false,
+            loading: false
+        };
+    },
+    handleCancel(e) {
+        this.setState({
+            visible: false,
+        });
+        this.props.closeDesc(false);
+        if (e) {
+            this.props.closeDesc(false, true);
+        };
+    },
+    componentWillReceiveProps(nextProps) {
+        this.state.visible = nextProps.showDesc;
+    },
+    render() {
+        return (
+            <div className="admin-desc">
+                <Modal title="企业研究开发活动情况详情"
+                    visible={this.state.visible}
+                    onCancel={this.handleCancel}
+                    width='800px'
+                    footer=''
+                    className="admin-desc-content">
+                    <ActivityForm
+                        visible={this.state.visible}
+                        data={this.props.data}
+                        uid={this.props.uid}
+                        mockData={this.props.mockData}
+                        spinState={this.spinChange}
+                        closeModal={this.handleCancel} />
+                </Modal>
+            </div>
+        );
     },
 });
 
+
 const Activity = React.createClass({
     loadData(pageNo) {
         this.state.data = [];
@@ -345,6 +455,7 @@ const Activity = React.createClass({
                     technicalField3: thisdata.technicalField3,
                     technicalSource: String(thisdata.technicalSource),
                     intellectualPropertyNumber: thisdata.intellectualPropertyNumber ? thisdata.intellectualPropertyNumber.split(",") : [],
+                    intellectualPropertyNumberText: thisdata.intellectualPropertyNumber,
                     budget: thisdata.budget,
                     firstYearExpenditure: thisdata.firstYearExpenditure,
                     secondYearExpenditure: thisdata.secondYearExpenditure,
@@ -421,8 +532,8 @@ const Activity = React.createClass({
                     render: (text) => { return getTechnicalSource(text) }
                 }, {
                     title: '知识产权编号',
-                    dataIndex: 'intellectualPropertyNumber',
-                    key: 'intellectualPropertyNumber'
+                    dataIndex: 'intellectualPropertyNumberText',
+                    key: 'intellectualPropertyNumberText'
                 }, {
                     title: '开始时间',
                     dataIndex: 'startDateFormattedDate',
@@ -477,9 +588,11 @@ const Activity = React.createClass({
             this.loadData();
         }.bind(this));
     },
-    closeDesc(e) {
+    closeDesc(e, s) {
         this.state.showDesc = e;
-        this.loadData();
+        if (s) {
+            this.loadData();
+        };
     },
     search() {
         this.loadData();

+ 1 - 1
js/component/account/services/technologyChange.jsx

@@ -85,7 +85,7 @@ const ApplyChangeFrom = Form.create()(React.createClass({
             projectModeState: false,
             subsidyState: false,
             stateColumns: [{
-                title: '专利状态',
+                title: '科技项目状态',
                 dataIndex: 'state',
                 key: 'state',
                 render: (text) => { return getCognizanceState(text) }

+ 8 - 8
js/component/groupCertify/personal.jsx

@@ -58,8 +58,8 @@ const Content = Form.create()(React.createClass({
             success: function (data) {
                 if (data.data) {
                     this.setState({
-                        contacts: data.data.contacts,
-                        contactMobile: data.data.contactMobile,
+                        firstContacts: data.data.firstContacts,
+                        firstMobile: data.data.firstMobile,
                         aftUsername: data.data.aftUsername,
                         unitName: data.data.unitName,
                         registeredCapital: data.data.registeredCapital,
@@ -126,8 +126,8 @@ const Content = Form.create()(React.createClass({
                     crossDomain: false,
                     url: globalConfig.context + "/api/user/orgNextPro",
                     data: {
-                        contacts: values.contacts,
-                        contactMobile: values.contactMobile,
+                        firstContacts: values.firstContacts,
+                        firstMobile: values.firstMobile,
                         aftUsername: values.aftUsername,
                         unitName: values.unitName,
                         registeredCapital: values.registeredCapital,
@@ -301,8 +301,8 @@ const Content = Form.create()(React.createClass({
                         {...formItemLayout}
                         label="联系人"
                     >
-                        {getFieldDecorator('contacts', {
-                            initialValue: this.state.contacts || null,
+                        {getFieldDecorator('firstContacts', {
+                            initialValue: this.state.firstContacts || null,
                             rules: [{ required: true, message: '请输入联系人姓名!' }]
                         })(
                             <Input />
@@ -313,8 +313,8 @@ const Content = Form.create()(React.createClass({
                         label="联系方式"
                         extra={<span><Icon type="exclamation-circle" /> 请填写联系人手机号码,我们会将重要进度以短信形式通知您</span>}
                     >
-                        {getFieldDecorator('contactMobile', {
-                            initialValue: this.state.contactMobile || null,
+                        {getFieldDecorator('firstMobile', {
+                            initialValue: this.state.firstMobile || null,
                             rules: [{ validator: this.checkPhone }]
                         })(
                             <Input placeholder="建议使用常用手机" />

+ 41 - 72
js/component/manageCenter/servicesManage/copyright/comPatentChange.jsx

@@ -40,37 +40,6 @@ const CopyrightDescForm = Form.create()(React.createClass({
     },
     componentWillMount() {
         this.loadData();
-        this.getOptionList();
-    },
-    getOptionList() {
-        this.setState({
-            loading: true
-        });
-        $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/admin/copyright/status",
-            success: function (data) {
-                let _me = this;
-                if (!data.data) {
-                    if (data.error && data.error.length) {
-                        message.warning(data.error[0].message);
-                        return;
-                    };
-                };
-                _me.state.stateOption = [];
-                for (var item in data.data) {
-                    _me.state.stateOption.push(
-                        <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
-                    )
-                };
-            }.bind(this),
-        }).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
     },
     loadData(uid, id) {
         this.setState({
@@ -261,6 +230,46 @@ const CopyrightDescForm = Form.create()(React.createClass({
                             )}
                     </Col>
                 </Row>
+                <p>状态流转记录: </p>
+                <Table style={{ margin: '10px 0', background: "#eee" }}
+                    pagination={false}
+                    dataSource={this.state.stateTable}
+                    columns={this.state.stateColumns} />
+                <div className="clearfix">
+                    <FormItem className="third-item"
+                        {...formItemLayout}
+                        label="状态流转"
+                    >
+                        {getFieldDecorator('status')(
+                            <Select placeholder="选择一个状态">{this.props.statusOption}</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>
                 <Row className="express-desc-row">
                     <Col span={4}>编号</Col>
                     <Col span={8}>{theData.serialNumber}</Col>
@@ -387,47 +396,6 @@ const CopyrightDescForm = Form.create()(React.createClass({
                     </Upload>
                     <p style={{ margin: '10px 0' }}>{theData.certificateUrl ? <a onClick={copyrightDownloadFile.bind(null, theData.id, 'copyright_auth', '/api/admin/copyright/download')}>软著证书</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
                 </div>
-                <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('status')(
-                            <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>
@@ -481,6 +449,7 @@ const CopyrightDesc = React.createClass({
                         <CopyrightDescForm
                             visible={this.state.visible}
                             authorOption={this.props.authorOption}
+                            statusOption={this.props.statusOption}
                             data={this.props.data}
                             spinState={this.spinChange}
                             closeModal={this.handleCancel}

+ 143 - 7
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, Switch } from 'antd';
+import { Icon, Button, Input, Select, Spin, Table, DatePicker, message, Cascader, Switch, Modal } from 'antd';
 import { provinceArr, copyrightStateList } from '../../../dataDic.js';
-import { getTime, companySearch, getCopyrightState, getInUrgentTime } from '../../../tools.js';
+import { getTime, companySearch, getCopyrightState, getInUrgentTime, getSearchUrl } from '../../../tools.js';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 import PatentAdd from './comPatentAdd.jsx';
@@ -27,7 +27,7 @@ const copyright = React.createClass({
                 province: this.state.province,
                 uid: this.state.unitName,
                 copyrightName: this.state.copyrightName,
-                status: this.state.status,
+                status: this.state.searchStatus,
                 createTime: this.state.createTime,
                 acceptTime: this.state.acceptTime,
                 authTime: this.state.authTime
@@ -64,7 +64,8 @@ const copyright = React.createClass({
                         thirdContact: thisdata.thirdContact,
                         authorizedDateFormattedDate: thisdata.authorizedDateFormattedDate,
                         createTimeFormattedDate: thisdata.createTimeFormattedDate,
-                        acceptTimeFormattedDate: thisdata.acceptTimeFormattedDate
+                        acceptTimeFormattedDate: thisdata.acceptTimeFormattedDate,
+                        founder: thisdata.founder
                     });
                 };
                 this.state.pagination.defaultCurrent = data.data.pageNo;
@@ -135,6 +136,36 @@ const copyright = React.createClass({
             });
         }.bind(this));
     },
+    getStateList() {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/copyright/status",
+            success: function (data) {
+                let _me = this;
+                if (!data.data) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                        return;
+                    };
+                };
+                _me.state.statusOption = [];
+                for (var item in data.data) {
+                    _me.state.statusOption.push(
+                        <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
+                    )
+                };
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
     getInitialState() {
         return {
             visible: false,
@@ -243,6 +274,10 @@ const copyright = React.createClass({
                         };
                         return;
                     }
+                }, {
+                    title: '创建人',
+                    dataIndex: 'founder',
+                    key: 'founder'
                 }
             ],
             dataSource: []
@@ -263,6 +298,16 @@ const copyright = React.createClass({
         this.loadData();
         this.getAuthorList();
         this.getCompanyList();
+        this.getStateList();
+        if (window.location.search) {
+            let theArr = getSearchUrl(window.location.search);
+            let theObj = {};
+            theObj.id = theArr[0];
+            theObj.uid = theArr[1];
+            if (theObj.id != 'null' && theObj.uid != 'null') {
+                this.tableRowClick(theObj);
+            };
+        };
     },
     tableRowClick(record, index) {
         this.state.RowData = record;
@@ -331,12 +376,61 @@ const copyright = React.createClass({
         this.state.province = undefined;
         this.state.unitName = undefined;
         this.state.copyrightName = undefined;
-        this.state.status = undefined;
+        this.state.searchStatus = undefined;
         this.state.createTime = [];
         this.state.acceptTime = [];
         this.state.authTime = [];
         this.loadData();
     },
+    circulation() {
+        let deletedIds = [];
+        for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
+            let rowItem = this.state.selectedRows[idx];
+            if (rowItem.id) {
+                deletedIds.push(rowItem.id)
+            }
+        }
+        this.setState({
+            selectedRowKeys: [],
+            loading: deletedIds.length > 0
+        });
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/copyright/circulation",
+            data: {
+                ids: deletedIds,
+                principal: this.state.principal,
+                status: this.state.status,
+                comment: this.state.comment,
+                recordTimeFormattedDate: this.state.recordTime
+            }
+        }).done(function (data) {
+            if (!data.error.length) {
+                message.success('保存成功!');
+                this.setState({
+                    loading: false,
+                    visible: false
+                });
+            } else {
+                message.warning(data.error[0].message);
+            };
+            this.loadData();
+        }.bind(this));
+    },
+    showModal() {
+        this.setState({
+            visible: true,
+            principal: undefined,
+            status: undefined,
+            comment: undefined,
+            recordTime: undefined
+        });
+    },
+    handleCancel() {
+        this.setState({ visible: false });
+    },
     render() {
         const rowSelection = {
             selectedRowKeys: this.state.selectedRowKeys,
@@ -381,8 +475,8 @@ const copyright = React.createClass({
                             value={this.state.copyrightName}
                             onChange={(e) => { this.setState({ copyrightName: e.target.value }); }} />
                         <Select style={{ width: 120 }}
-                            value={this.state.status}
-                            onChange={(e) => { this.setState({ status: e }) }}
+                            value={this.state.searchStatus}
+                            onChange={(e) => { this.setState({ searchStatus: e }) }}
                             placeholder="选择一个状态">{this.state.stateOption}</Select>
                         <span>更多搜索  <Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
                         <Button type="primary" onClick={this.search}>搜索</Button>
@@ -390,6 +484,8 @@ const copyright = React.createClass({
                         <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
                             disabled={!hasSelected}
                             onClick={this.delectRow}>删除<Icon type="minus" /></Button>
+                        <Button disabled={!hasSelected} style={{ marginTop: '10px' }}
+                            type="ghost" onClick={this.showModal}>软著批量流转<Icon type="retweet" /></Button>
                         <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
                             <span>派单时间:</span>
                             <RangePicker style={{ width: '240px' }}
@@ -423,8 +519,48 @@ const copyright = React.createClass({
                     <PatentChange
                         data={this.state.RowData}
                         authorOption={this.state.authorOption}
+                        statusOption={this.state.statusOption}
                         showDesc={this.state.showDesc}
                         closeDesc={this.closeDesc} />
+                    <Modal title="软著批量流转" visible={this.state.visible}
+                        onCancel={this.handleCancel}
+                        width='800px'
+                        footer={[
+                            <Button key="submit" type="primary" size="large" onClick={this.circulation}>保存</Button>,
+                            <Button key="back" type="ghost" size="large" onClick={this.handleCancel}>取消</Button>,
+                        ]} className="patent-desc-content">
+                        <div className="clearfix">
+                            <div className="widthThird">
+                                <span>状态流转:</span>
+                                <Select placeholder='请选择状态'
+                                    value={this.state.status}
+                                    style={{ width: 150 }}
+                                    onChange={(e) => { this.setState({ status: e }); }}>
+                                    {this.state.statusOption}
+                                </Select>
+                            </div>
+                            <p className="widthThird">
+                                <span>处理时间:</span>
+                                <DatePicker
+                                    value={this.state.recordTime ? moment(this.state.recordTime) : undefined}
+                                    format="YYYY-MM-DD HH:mm:ss"
+                                    onChange={(data, dataString) => { this.setState({ recordTime: dataString }); }} />
+                            </p>
+                            <div className="widthThird">
+                                <span>负责人:</span>
+                                <Select placeholder='请填写负责人'
+                                    value={this.state.principal}
+                                    style={{ width: 150 }}
+                                    onChange={(e) => { this.setState({ principal: e }); }}>
+                                    {this.state.authorOption}
+                                </Select>
+                            </div>
+                        </div>
+                        <div>
+                            <span>备注:</span>
+                            <Input value={this.state.comment} placeholder='请填写备注' style={{ width: 400 }} onChange={(e) => { this.setState({ comment: e.target.value }); }} />
+                        </div>
+                    </Modal>
                 </div >
             </div>
         );

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/fosterDesc/achievement.jsx

@@ -441,7 +441,7 @@ const Achievement = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.achievement = 1 : this.state.proportion.achievement = 0;
-                            saveProportion(this.state.proportion.id, 'achievement', this.state.proportion.achievement);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'achievement', this.state.proportion.achievement);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

+ 292 - 208
js/component/manageCenter/servicesManage/highTech/fosterDesc/activity.jsx

@@ -1,5 +1,5 @@
 import React from 'react';
-import { Icon, Button, Upload, Input, Spin, Table, message, Select, Modal, DatePicker, Cascader, Transfer, InputNumber, Switch } from 'antd';
+import { Icon, Button, Upload, Input, Spin, Table, message, Select, Modal, DatePicker, Cascader, Transfer, InputNumber, Switch, Form } from 'antd';
 import { technicalSourceList } from '../../../../dataDic.js';
 import { techFieldList } from '../../../../DicTechFieldList.js';
 import { getTechField, getTechnicalSource, beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
@@ -7,113 +7,101 @@ import moment from 'moment';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 
-const ActivityDesc = React.createClass({
+const ActivityForm = Form.create()(React.createClass({
     getInitialState() {
         return {
-            visible: false,
             loading: false,
             targetKeys: [],
             selectedKeys: []
         };
     },
-    handleOk() {
-        this.setState({
-            loading: true,
-        });
+    loadData(id) {
+        this.setState({ loading: true });
         $.ajax({
-            method: "POST",
+            method: "get",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + "/api/admin/activity",
+            url: globalConfig.context + "/api/admin/activityDetail",
             data: {
-                id: this.props.data.id,
-                uid: this.props.uid,
-                activityName: this.state.activityName,
-                activityNumber: this.state.activityNumber,
-                startDateFormattedDate: this.state.startDateFormattedDate,
-                endDateFormattedDate: this.state.endDateFormattedDate,
-                technicalField1: this.state.techField[0],
-                technicalField2: this.state.techField[1],
-                technicalField3: this.state.techField[2],
-                technicalSource: this.state.technicalSource,
-                intellectualPropertyNumber: this.state.targetKeys.join(","),
-                budget: this.state.budget,
-                firstYearExpenditure: this.state.firstYearExpenditure,
-                secondYearExpenditure: this.state.secondYearExpenditure,
-                thirdYearExpenditure: this.state.thirdYearExpenditure,
-                implement: this.state.implement,
-                technologyInnovation: this.state.technologyInnovation,
-                achievement: this.state.achievement,
-                proofUrl: this.state.proofUrl
-            },
-            success: function (data) {
-                if (data.data) {
-                    this.setState({
-                        id: this.props.data.id,
-                        activityName: this.state.activityName,
-                        activityNumber: this.state.activityNumber,
-                        startDateFormattedDate: this.state.startDateFormattedDate,
-                        endDateFormattedDate: this.state.endDateFormattedDate,
-                        techField: this.state.techField,
-                        technicalSource: this.state.technicalSource,
-                        intellectualPropertyNumber: this.state.targetKeys,
-                        budget: this.state.budget,
-                        firstYearExpenditure: this.state.firstYearExpenditure,
-                        secondYearExpenditure: this.state.secondYearExpenditure,
-                        thirdYearExpenditure: this.state.thirdYearExpenditure,
-                        implement: this.state.implement,
-                        technologyInnovation: this.state.technologyInnovation,
-                        achievement: this.state.achievement,
-                        projectMode: this.state.projectMode
-                    });
-                } else if (data.error.length && data.error[0].message) {
-                    message.warning(data.error[0].message);
-                }
-            }.bind(this),
+                id: id || this.props.data.id
+            }
         }).done(function (data) {
-            if (!data.error.length) {
-                message.success('保存成功!');
-                this.setState({
-                    loading: false,
-                    visible: false
-                });
-                this.props.closeDesc(false, true);
-            } else {
-                message.warning(data.error[0].message);
-                this.setState({
-                    loading: false
-                });
+            if (!data.data) {
+                if (data.error && data.error.length) {
+                    message.warning(data.error[0].message);
+                };
             };
+            this.setState({
+                data: data.data,
+                targetKeys: data.data.intellectualPropertyNumber ? data.data.intellectualPropertyNumber.split(",") : [],
+                techField: [Number(data.data.technicalField1), data.data.technicalField2 ? Number(data.data.technicalField2) : null, data.data.technicalField3 ? Number(data.data.technicalField3) : null]
+            });
+        }.bind(this)).always(function (data) {
+            this.setState({ loading: false });
         }.bind(this));
     },
-    handleCancel(e) {
-        this.setState({
-            visible: false,
+    handleSubmit(e) {
+        e.preventDefault();
+        this.props.form.validateFields((err, values) => {
+            if (!err) {
+                this.setState({ loading: true });
+                $.ajax({
+                    method: "POST",
+                    dataType: "json",
+                    crossDomain: false,
+                    url: globalConfig.context + "/api/admin/activity",
+                    data: {
+                        id: this.props.data.id,
+                        uid: this.props.uid,
+                        activityName: values.activityName,
+                        activityNumber: values.activityNumber,
+                        projectMode: values.projectMode,
+                        startDateFormattedDate: values.startDate ? values.startDate.format("YYYY-MM-DD") : null,
+                        endDateFormattedDate: values.endDate ? values.endDate.format("YYYY-MM-DD") : null,
+                        technicalField1: values.techField[0],
+                        technicalField2: values.techField[1],
+                        technicalField3: values.techField[2],
+                        technicalSource: values.technicalSource,
+                        intellectualPropertyNumber: this.state.targetKeys.join(","),
+                        budget: values.budget,
+                        implement: values.implement,
+                        technologyInnovation: values.technologyInnovation,
+                        achievement: values.achievement,
+                        proofUrl: this.state.proofUrl
+                    }
+                }).done(function (data) {
+                    if (!data.error.length) {
+                        message.success('保存成功!');
+                        this.props.closeModal(true);
+                    } else {
+                        message.warning(data.error[0].message);
+                    };
+                    this.setState({ loading: false });
+                }.bind(this));
+            }
         });
-        this.props.closeDesc(false);
+    },
+    componentWillMount() {
+        if (this.props.data.id) {
+            this.loadData();
+        } else {
+            this.state.data = {};
+            this.state.targetKeys = [];
+            this.state.techField = undefined;
+        };
     },
     componentWillReceiveProps(nextProps) {
-        if (!this.state.showDesc && nextProps.showDesc) {
-            this.state.activityName = nextProps.data.activityName;
-            this.state.activityNumber = nextProps.data.activityNumber;
-            this.state.startDateFormattedDate = nextProps.data.startDateFormattedDate;
-            this.state.endDateFormattedDate = nextProps.data.endDateFormattedDate;
-            this.state.techField = nextProps.data.techField;
-            this.state.technicalSource = nextProps.data.technicalSource;
-            this.state.targetKeys = nextProps.data.intellectualPropertyNumber || [];
-            this.state.budget = nextProps.data.budget;
-            this.state.firstYearExpenditure = nextProps.data.firstYearExpenditure;
-            this.state.secondYearExpenditure = nextProps.data.secondYearExpenditure;
-            this.state.thirdYearExpenditure = nextProps.data.thirdYearExpenditure;
-            this.state.implement = nextProps.data.implement;
-            this.state.technologyInnovation = nextProps.data.technologyInnovation;
-            this.state.achievement = nextProps.data.achievement;
-            this.state.projectMode = nextProps.data.projectMode ? String(nextProps.data.projectMode) : undefined;
-            this.state.proofUrl = nextProps.data.proofUrl;
-            this.state.proofDownloadFileName = nextProps.data.proofDownloadFileName;
+        if (!this.props.visible && nextProps.visible) {
             this.state.mockData = nextProps.data.mockData;
+            this.props.form.resetFields();
+            if (nextProps.data.id) {
+                this.loadData(nextProps.data.id);
+            } else {
+                this.state.data = {};
+                this.state.targetKeys = [];
+                this.state.techField = undefined;
+            };
         };
-        this.state.visible = nextProps.showDesc;
     },
     intellectualChange(nextTargetKeys, direction, moveKeys) {
         this.setState({ targetKeys: nextTargetKeys });
@@ -122,63 +110,108 @@ const ActivityDesc = React.createClass({
         this.setState({ selectedKeys: [...sourceSelectedKeys, ...targetSelectedKeys] });
     },
     render() {
-        if (this.props.data) {
+        const FormItem = Form.Item;
+        const { getFieldDecorator } = this.props.form;
+        const theData = this.state.data;
+        const formItemLayout = {
+            labelCol: { span: 6 },
+            wrapperCol: { span: 12 },
+        };
+        if (theData) {
             return (
-                <div className="admin-desc">
-                    <Modal title="企业研究开发活动情况详情" visible={this.state.visible} onCancel={this.handleCancel}
-                        width='800px' footer={[
-                            <Button key="submit" type="primary" size="large" loading={this.state.loading} onClick={this.handleOk}>保存</Button>,
-                            <Button key="back" type="ghost" size="large" onClick={this.handleCancel}>取消</Button>
-                        ]}
-                        className="admin-desc-content">
+                <Spin spinning={this.state.loading} className='spin-box'>
+                    <Form onSubmit={this.handleSubmit} id="admin-desc-content">
                         <div className="clearfix">
-                            <div className="half-div">
-                                <p>研发活动编号:</p>
-                                <Input value={this.state.activityNumber}
-                                    onChange={(e) => { this.setState({ activityNumber: e.target.value }); }} />
-                            </div>
-                            <div className="half-div">
-                                <p>研发活动名称:</p>
-                                <Input value={this.state.activityName}
-                                    onChange={(e) => { this.setState({ activityName: e.target.value }); }} />
-                            </div>
-                            <div className="half-div">
-                                <p>开始日期:</p>
-                                <DatePicker
-                                    value={this.state.startDateFormattedDate ? moment(this.state.startDateFormattedDate) : null}
-                                    onChange={(data, dataString) => { this.setState({ startDateFormattedDate: dataString }); }} />
-                            </div>
-                            <div className="half-div">
-                                <p>结束日期:</p>
-                                <DatePicker
-                                    value={this.state.endDateFormattedDate ? moment(this.state.endDateFormattedDate) : null}
-                                    onChange={(data, dataString) => { this.setState({ endDateFormattedDate: dataString }); }} />
-                            </div>
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="研发活动编号"
+                            >
+                                {getFieldDecorator('activityNumber', {
+                                    initialValue: theData.activityNumber
+                                })(
+                                    <Input />
+                                    )}
+                            </FormItem>
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="研发活动名称"
+                            >
+                                {getFieldDecorator('activityName', {
+                                    initialValue: theData.activityName
+                                })(
+                                    <Input />
+                                    )}
+                            </FormItem>
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="开始日期"
+                            >
+                                {getFieldDecorator('startDate', {
+                                    initialValue: theData.startDateFormattedDate ? moment(theData.startDateFormattedDate) : null
+                                })(
+                                    <DatePicker />
+                                    )}
+                            </FormItem>
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="结束日期"
+                            >
+                                {getFieldDecorator('endDate', {
+                                    initialValue: theData.endDateFormattedDate ? moment(theData.endDateFormattedDate) : null
+                                })(
+                                    <DatePicker />
+                                    )}
+                            </FormItem>
                         </div>
-                        <div>
-                            <p>技术领域:</p>
-                            <Cascader
-                                style={{ width: 500 }}
-                                options={techFieldList}
-                                value={this.state.techField}
-                                onChange={(value, selectedOptions) => { this.setState({ techField: value }); console.log(value) }}
-                                placeholder="选择技术领域"
-                                showSearch
-                            />,
+                        <div className="clearfix">
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="技术领域"
+                            >
+                                {getFieldDecorator('techField', {
+                                    initialValue: this.state.techField
+                                })(
+                                    <Cascader
+                                        style={{ width: 500 }}
+                                        options={techFieldList}
+                                        placeholder="选择技术领域"
+                                        showSearch
+                                    />
+                                    )}
+                            </FormItem>
                         </div>
-                        <div className="half-div">
-                            <p>技术来源:</p>
-                            <Select placeholder="选择技术来源" style={{ width: 230 }}
-                                value={this.state.technicalSource}
-                                onChange={(e) => { this.setState({ technicalSource: e }) }}>
-                                {
-                                    technicalSourceList.map(function (item, i) {
-                                        return <Select.Option key={1000 + i} value={item.value} >{item.key}</Select.Option>
-                                    })
-                                }
-                            </Select>
+                        <div className="clearfix">
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="技术来源"
+                            >
+                                {getFieldDecorator('technicalSource', {
+                                    initialValue: theData.technicalSource ? String(theData.technicalSource) : undefined,
+                                })(
+                                    <Select placeholder="选择技术来源" style={{ width: 230 }}>
+                                        {
+                                            technicalSourceList.map(function (item, i) {
+                                                return <Select.Option key={1000 + i} value={item.value} >{item.key}</Select.Option>
+                                            })
+                                        }
+                                    </Select>
+                                    )}
+                            </FormItem>
+                            <FormItem className="half-item"
+                                {...formItemLayout}
+                                label="立项类型"
+                            >
+                                {getFieldDecorator('projectMode', {
+                                    initialValue: theData.projectMode
+                                })(
+                                    <Select style={{ width: 120 }}>
+                                        <Select.Option value='0'>内部立项</Select.Option>
+                                        <Select.Option value='1'>外部立项</Select.Option>
+                                    </Select>
+                                    )}
+                            </FormItem>
                         </div>
-                        <div style={{ marginTop: '10px' }}>
+                        <div style={{ marginBottom: '20px' }}>
                             <p>知识产权编号:</p>
                             <Transfer
                                 dataSource={this.props.mockData}
@@ -194,77 +227,83 @@ const ActivityDesc = React.createClass({
                                 render={item => `${item.name}-${item.key}`}
                             />
                         </div>
-                        <div>
-                            <p>研发经费总预算(万元):</p>
-                            <InputNumber value={this.state.budget || 0}
-                                onChange={(e) => { this.setState({ budget: e }); }} />
-                        </div>
+                        <FormItem className="half-div"
+                            labelCol={{ span: 8 }}
+                            wrapperCol={{ span: 12 }}
+                            label="研发经费总预算"
+                        >
+                            {getFieldDecorator('budget', {
+                                initialValue: theData.budget
+                            })(
+                                <InputNumber />
+                                )}
+                            <span>万元</span>
+                        </FormItem>
                         <div className="clearfix" >
-                            <p>研发经费近三年总支出(万元):</p>
-                            <div className="half-div">
-                                <span>总计(万元):</span>
+                            <p>研发经费近三年总支出:</p>
+                            <FormItem className="half-item"
+                                labelCol={{ span: 8 }}
+                                wrapperCol={{ span: 12 }}
+                                label="总计"
+                            >
                                 <span>{
-                                    (this.state.firstYearExpenditure || 0) +
-                                    (this.state.secondYearExpenditure || 0) +
-                                    (this.state.thirdYearExpenditure || 0)
+                                    (theData.firstYearExpenditure || 0) +
+                                    (theData.secondYearExpenditure || 0) +
+                                    (theData.thirdYearExpenditure || 0)
                                 }</span>
-                            </div>
-                            <div className="half-div">
-                                <span>其中(前一年):</span>
-                                <span>{this.state.firstYearExpenditure}
-                                </span>
-                            </div>
-                            <div className="half-div">
-                                <span>其中(前二年):</span>
-                                <span>{this.state.secondYearExpenditure}</span>
-                            </div>
-                            <div className="half-div">
-                                <span>其中(前三年):</span>
-                                <span>{this.state.thirdYearExpenditure}</span>
-                            </div>
+                                <span>万元</span>
+                            </FormItem>
+                            <FormItem className="half-item"
+                                labelCol={{ span: 8 }}
+                                wrapperCol={{ span: 12 }}
+                                label="其中(前一年)"
+                            >
+                                <span>{theData.firstYearExpenditure}</span>
+                                <span>万元</span>
+                            </FormItem>
+                            <FormItem className="half-item"
+                                labelCol={{ span: 8 }}
+                                wrapperCol={{ span: 12 }}
+                                label="其中(前二年)"
+                            >
+                                <span>{theData.secondYearExpenditure}</span>
+                                <span>万元</span>
+                            </FormItem>
+                            <FormItem className="half-item"
+                                labelCol={{ span: 8 }}
+                                wrapperCol={{ span: 12 }}
+                                label="其中(前三年)"
+                            >
+                                <span>{theData.thirdYearExpenditure}</span>
+                                <span>万元</span>
+                            </FormItem>
                         </div>
                         <div className="clearfix">
                             <div className="half-div">
                                 <p>目的及组织实施方式(限400字):</p>
-                                <Input type="textarea" rows={6}
-                                    value={this.state.implement}
-                                    onChange={(e) => {
-                                        if (e.target.value.length > 400) {
-                                            return;
-                                        }
-                                        this.setState({ implement: e.target.value });
-                                    }} />
+                                {getFieldDecorator('implement', {
+                                    initialValue: theData.implement
+                                })(
+                                    <Input type="textarea" rows={6} />
+                                    )}
                             </div>
                             <div className="half-div">
                                 <p>核心技术及创新点(限400字):</p>
-                                <Input type="textarea" rows={6}
-                                    value={this.state.technologyInnovation}
-                                    onChange={(e) => {
-                                        if (e.target.value.length > 400) {
-                                            return;
-                                        }
-                                        this.setState({ technologyInnovation: e.target.value });
-                                    }} />
+                                {getFieldDecorator('technologyInnovation', {
+                                    initialValue: theData.technologyInnovation
+                                })(
+                                    <Input type="textarea" rows={6} />
+                                    )}
                             </div>
                             <div className="half-div">
                                 <p>取得的阶段性成果(限400字):</p>
-                                <Input type="textarea" rows={6}
-                                    value={this.state.achievement}
-                                    onChange={(e) => {
-                                        if (e.target.value.length > 400) {
-                                            return;
-                                        }
-                                        this.setState({ achievement: e.target.value });
-                                    }} />
+                                {getFieldDecorator('achievement', {
+                                    initialValue: theData.achievement
+                                })(
+                                    <Input type="textarea" rows={6} />
+                                    )}
                             </div>
                         </div>
-                        <Select style={{ width: 120 }}
-                            placeholder='请选择立项类型'
-                            value={this.state.projectMode}
-                            onChange={(e) => { this.setState({ projectMode: e }); }}>
-                            <Select.Option value='1'>内部立项</Select.Option>
-                            <Select.Option value='2'>外部立项</Select.Option>
-                        </Select>
                         <div style={{ width: '50%' }}>
                             <Upload
                                 name="ratepay"
@@ -291,14 +330,58 @@ const ActivityDesc = React.createClass({
                             >
                                 <Button><Icon type="upload" /> 上传立项证明材料 </Button>
                             </Upload>
-                            <p>{this.state.proofUrl ? <a onClick={newDownloadFile.bind(null, this.props.data.id, 'proof', '/api/admin/downloadProof')}>{this.state.proofDownloadFileName}</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
+                            <p>{theData.proofUrl ? <a onClick={newDownloadFile.bind(null, theData.id, 'proof', '/api/admin/downloadProof')}>{theData.proofDownloadFileName}</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
                         </div>
-                    </Modal>
-                </div>
-            );
+                        <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 >
+                </Spin >
+            )
         } else {
-            return <div></div>
-        }
+            return (<div></div>)
+        };
+    }
+}));
+
+const ActivityDesc = React.createClass({
+    getInitialState() {
+        return {
+            visible: false,
+            loading: false
+        };
+    },
+    handleCancel(e) {
+        this.setState({
+            visible: false,
+        });
+        if (e) {
+            this.props.closeDesc(true);
+        };
+    },
+    componentWillReceiveProps(nextProps) {
+        this.state.visible = nextProps.showDesc;
+    },
+    render() {
+        return (
+            <div className="admin-desc">
+                <Modal title="企业研究开发活动情况详情"
+                    visible={this.state.visible}
+                    onCancel={this.handleCancel}
+                    width='800px'
+                    footer=''
+                    className="admin-desc-content">
+                    <ActivityForm
+                        visible={this.state.visible}
+                        data={this.props.data}
+                        uid={this.props.uid}
+                        mockData={this.props.mockData}
+                        spinState={this.spinChange}
+                        closeModal={this.handleCancel} />
+                </Modal>
+            </div>
+        );
     },
 });
 
@@ -371,6 +454,7 @@ const Activity = React.createClass({
                     technicalField3: thisdata.technicalField3,
                     technicalSource: thisdata.technicalSource ? String(thisdata.technicalSource) : undefined,
                     intellectualPropertyNumber: thisdata.intellectualPropertyNumber ? thisdata.intellectualPropertyNumber.split(",") : [],
+                    intellectualPropertyNumberText: thisdata.intellectualPropertyNumber,
                     budget: thisdata.budget,
                     firstYearExpenditure: thisdata.firstYearExpenditure,
                     secondYearExpenditure: thisdata.secondYearExpenditure,
@@ -449,8 +533,8 @@ const Activity = React.createClass({
                     render: (text) => { return getTechnicalSource(text) }
                 }, {
                     title: '知识产权编号',
-                    dataIndex: 'intellectualPropertyNumber',
-                    key: 'intellectualPropertyNumber'
+                    dataIndex: 'intellectualPropertyNumberText',
+                    key: 'intellectualPropertyNumberText'
                 }, {
                     title: '开始时间',
                     dataIndex: 'startDateFormattedDate',
@@ -505,9 +589,9 @@ const Activity = React.createClass({
             this.loadData();
         }.bind(this));
     },
-    closeDesc(e, s) {
-        this.state.showDesc = e;
-        if (s) {
+    closeDesc(e) {
+        this.state.showDesc = false;
+        if (e) {
             this.loadData();
         };
     },
@@ -543,7 +627,7 @@ const Activity = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.activity = 1 : this.state.proportion.activity = 0;
-                            saveProportion(this.state.proportion.id, 'activity', this.state.proportion.activity);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'activity', this.state.proportion.activity);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/fosterDesc/activityCostList.jsx

@@ -624,7 +624,7 @@ const Activity = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.activityCost = 1 : this.state.proportion.activityCost = 0;
-                            saveProportion(this.state.proportion.id, 'activityCost', this.state.proportion.activityCost);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'activityCost', this.state.proportion.activityCost);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

+ 0 - 22
js/component/manageCenter/servicesManage/highTech/fosterDesc/companyDetail.jsx

@@ -563,28 +563,6 @@ const CompanyDetail = Form.create()(React.createClass({
                         <p className="content-title">联系人信息</p>
                         <FormItem className="half-item"
                             {...formItemLayout}
-                            label="姓名"
-                        >
-                            {getFieldDecorator('contacts', {
-                                rules: [{ required: true, message: '此项为必填项!' }],
-                                initialValue: theData.contacts
-                            })(
-                                <Input />
-                                )}
-                        </FormItem>
-                        <FormItem className="half-item"
-                            {...formItemLayout}
-                            label="手机"
-                        >
-                            {getFieldDecorator('contactMobile', {
-                                rules: [{ required: true, message: '此项为必填项!' }],
-                                initialValue: theData.contactMobile
-                            })(
-                                <Input />
-                                )}
-                        </FormItem>
-                        <FormItem className="half-item"
-                            {...formItemLayout}
                             label="电话"
                         >
                             {getFieldDecorator('contactsFixedTel', {

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/fosterDesc/finance.jsx

@@ -569,7 +569,7 @@ const Finance = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.finance = 1 : this.state.proportion.finance = 0;
-                            saveProportion(this.state.proportion.id, 'finance', this.state.proportion.finance);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'finance', this.state.proportion.finance);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/fosterDesc/honorList.jsx

@@ -371,7 +371,7 @@ const HonorList = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.honorDatum = 1 : this.state.proportion.honorDatum = 0;
-                            saveProportion(this.state.proportion.id, 'honorDatum', this.state.proportion.honorDatum);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'honorDatum', this.state.proportion.honorDatum);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

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

@@ -779,7 +779,7 @@ const HrSituation = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.humanResource = 1 : this.state.proportion.humanResource = 0;
-                            saveProportion(this.state.proportion.id, 'humanResource', this.state.proportion.humanResource);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'humanResource', this.state.proportion.humanResource);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/fosterDesc/innovationAbility.jsx

@@ -91,7 +91,7 @@ const Base = React.createClass({
                                 unCheckedChildren={'未完成'}
                                 onChange={(e) => {
                                     e ? this.state.proportion.ability = 1 : this.state.proportion.ability = 0;
-                                    saveProportion(this.state.proportion.id, 'ability', this.state.proportion.ability);
+                                    saveProportion(this.state.proportion.id, this.props.data.uid, 'ability', this.state.proportion.ability);
                                     this.setState({ proportion: this.state.proportion });
                                 }} />
                         </p>

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/fosterDesc/intellectual.jsx

@@ -194,7 +194,7 @@ const Intellectual = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.intellectualProperty = 1 : this.state.proportion.intellectualProperty = 0;
-                            saveProportion(this.state.proportion.id, 'intellectualProperty', this.state.proportion.intellectualProperty);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'intellectualProperty', this.state.proportion.intellectualProperty);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

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

@@ -439,7 +439,7 @@ const CenterList = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.institution = 1 : this.state.proportion.institution = 0;
-                            saveProportion(this.state.proportion.id, 'institution', this.state.proportion.institution);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'institution', this.state.proportion.institution);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/fosterDesc/ratepay.jsx

@@ -510,7 +510,7 @@ const Ratepay = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.ratepay = 1 : this.state.proportion.ratepay = 0;
-                            saveProportion(this.state.proportion.id, 'ratepay', this.state.proportion.ratepay);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'ratepay', this.state.proportion.ratepay);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/fosterDesc/standard.jsx

@@ -363,7 +363,7 @@ const Standard = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.standard = 1 : this.state.proportion.standard = 0;
-                            saveProportion(this.state.proportion.id, 'standard', this.state.proportion.standard);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'standard', this.state.proportion.standard);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/fosterDesc/techProduct.jsx

@@ -544,7 +544,7 @@ const TechProduct = React.createClass({
                         unCheckedChildren={'未完成'}
                         onChange={(e) => {
                             e ? this.state.proportion.techProject = 1 : this.state.proportion.techProject = 0;
-                            saveProportion(this.state.proportion.id, 'techProject', this.state.proportion.techProject);
+                            saveProportion(this.state.proportion.id, this.props.data.uid, 'techProject', this.state.proportion.techProject);
                             this.setState({ proportion: this.state.proportion });
                         }} />
                 </div>

+ 60 - 40
js/component/manageCenter/servicesManage/highTech/highTechApply.jsx

@@ -2,7 +2,7 @@ import React from 'react';
 import { Icon, InputNumber, Form, Button, Input, Radio, Select, Spin, Table, DatePicker, message, Cascader, Modal } from 'antd';
 import { provinceArr, cognizanceStateList } from '../../../dataDic.js';
 import { techFieldList } from '../../../DicTechFieldList.js';
-import { getTime, getCognizanceState, companySearch } from '../../../tools.js';
+import { getTime, getCognizanceState, companySearch, getSearchUrl } from '../../../tools.js';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 import moment from 'moment';
@@ -251,6 +251,7 @@ const CognizanceDescFrom = Form.create()(React.createClass({
                         state: values.state,
                         principal: values.principal,
                         comment: values.comment,
+                        year: this.state.data.year
                     }
                 }).done(function (data) {
                     if (!data.error.length) {
@@ -306,6 +307,48 @@ const CognizanceDescFrom = Form.create()(React.createClass({
                                 <span className="item-title">申请年份: </span>
                                 <span>{theData.year}</span>
                             </div>
+                        </div>
+                        <div className="form-title">状态流转记录: </div>
+                        <Table style={{ marginBottom: '20px', background: "#eee" }}
+                            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>
+                        <div className="clearfix">
                             <FormItem className="half-item"
                                 labelCol={{ span: 3 }}
                                 wrapperCol={{ span: 14 }}
@@ -449,44 +492,6 @@ const CognizanceDescFrom = Form.create()(React.createClass({
                                 </Radio.Group>
                                 )}
                         </FormItem>
-                        <div className="form-title">状态流转记录: </div>
-                        <Table 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>
@@ -785,7 +790,8 @@ const Cognizance = React.createClass({
                         issuingDate: thisdata.issuingDate,
                         consultant: thisdata.consultant,
                         createTimeFormattedDate: thisdata.createTimeFormattedDate,
-                        issuingDateFormattedDate: thisdata.issuingDateFormattedDate
+                        issuingDateFormattedDate: thisdata.issuingDateFormattedDate,
+                        founder: thisdata.founder
                     });
                 };
                 this.state.pagination.current = data.data.pageNo;
@@ -928,6 +934,10 @@ const Cognizance = React.createClass({
                     dataIndex: 'issuingDate',
                     key: 'issuingDate',
                     render: (text) => { return getTime(text, 36) }
+                }, {
+                    title: '创建人',
+                    dataIndex: 'founder',
+                    key: 'founder'
                 }
             ],
             dataSource: []
@@ -943,6 +953,16 @@ const Cognizance = React.createClass({
         this.loadData();
         this.getAuthorList();
         this.getCompanyList();
+        if (window.location.search) {
+            let theArr = getSearchUrl(window.location.search);
+            let theObj = {};
+            theObj.cid = theArr[0];
+            theObj.uid = theArr[1];
+            theObj.year = theArr[2];
+            if (theObj.cid != 'null' && theObj.uid != 'null' && theObj.year != 'null') {
+                this.tableRowClick(theObj);
+            };
+        };
         //        this.getContactsList();
     },
     tableRowClick(record, index) {

+ 22 - 46
js/component/manageCenter/servicesManage/patent/comPatentAdd.jsx

@@ -18,10 +18,17 @@ class Avatar extends React.Component {
             return;
         };
         if (info.file.status === 'done') {
-            // Get this url from response in real world.
+            if (!info.file.response.error.length) {
+                message.success(`${info.file.name} 文件上传成功!`);
+            } else {
+                message.warning(info.file.response.error[0].message);
+                return;
+            };
             getBase64(info.file.originFileObj, imageUrl => this.setState({ imageUrl }));
             this.props.urlData(info.file.response.data);
-        }
+        } else if (info.file.status === 'error') {
+            message.error(`${info.file.name} 文件上传失败。`);
+        };
     }
     render() {
         return (
@@ -123,11 +130,8 @@ const PatentAddFrom = Form.create()(React.createClass({
                         'firstInventorName': values.firstInventorName,
                         'patentDes': values.intro,
                         'secondInventorName': values.secondInventorName,
+                        'office': values.office,
                         'thirdInventorName': values.thirdInventorName,
-                        'office':values.office,
-                        //'firstInventorIsPublish': this.state.firstCheck,
-                        //'secondInventorIsPublish': this.state.secondCheck,
-                        //'thirdInventorIsPublish': this.state.thirdCheck,
                         'patentProryStatementUrl': this.state.avatarUrl
                     }
                 }).done(function (data) {
@@ -145,27 +149,6 @@ const PatentAddFrom = Form.create()(React.createClass({
             }
         });
     },
-    // 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;
     },
@@ -212,17 +195,6 @@ const PatentAddFrom = Form.create()(React.createClass({
                         )}
                 </FormItem>
                 <FormItem
-                    {...formItemLayout}
-                    label="事务所"
-                >
-                    {getFieldDecorator('office', {
-                        rules: [{ required: true, message: '请填写一个事务所!' }],
-                        initialValue: this.state.office || null
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
                     labelCol={{ span: 24 }}
                     wrapperCol={{ span: 18 }}
                     label="专利简要描述"
@@ -235,26 +207,30 @@ const PatentAddFrom = Form.create()(React.createClass({
                             rows={6} />
                         )}
                 </FormItem>
+                <FormItem
+                    {...formItemLayout}
+                    label="事务所"
+                >
+                    {getFieldDecorator('office')(
+                        <Input className="mini-input" />
+                    )}
+                </FormItem>
                 <p>第一发明人</p>
                 <FormItem
                     {...formItemLayout}
                     label="姓名"
                 >
-                    {getFieldDecorator('firstInventorName', {
-                        rules: [{ required: true, message: '请输入姓名!' }]
-                    })(
+                    {getFieldDecorator('firstInventorName')(
                         <Input className="mini-input" />
-                        )}
+                    )}
                 </FormItem>
                 <FormItem
                     {...formItemLayout}
                     label="身份证"
                 >
-                    {getFieldDecorator('firstInventorID', {
-                        rules: [{ required: true, message: '请输入身份证号!' }]
-                    })(
+                    {getFieldDecorator('firstInventorID')(
                         <Input className="mini-input" />
-                        )}
+                    )}
                 </FormItem>
                 <p>第二发明人</p>
                 <FormItem

+ 63 - 78
js/component/manageCenter/servicesManage/patent/comPatentDesc.jsx

@@ -4,7 +4,7 @@ import './comprehensive.less';
 import ajax from 'jquery/src/ajax/xhr.js';
 import moment from 'moment';
 import $ from 'jquery/src/ajax';
-import { patentTypeList, patentFieldList, patentStateList } from '../../../dataDic.js';
+import { patentTypeList, patentStateList, industryList } from '../../../dataDic.js';
 import { getBase64, beforeUpload, getPatentState, getTime, newDownloadFile } from '../../../tools.js';
 
 class Avatar extends React.Component {
@@ -53,8 +53,7 @@ const PatentDesc = React.createClass({
             loading: false,
             patentTypeOption: [],
             patentFieldOption: [],
-            patentStateOption: [],
-            adminOption: [],
+            industryOption: [],
             stateTable: [],
             stateColumns: [{
                 title: '申请状态',
@@ -96,20 +95,12 @@ const PatentDesc = React.createClass({
             crossDomain: false,
             url: globalConfig.context + "/api/admin/patent/logs",
             data: { pid: this.state.xid }
-        }), $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/admin/patent/getPrincipal"
-        }), $.ajax({
-            method: "get",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/admin/patent/patentStatus"
-        })).done((data1, data2, data3, data4) => {
+        })).done((data1, data2) => {
             let _me = this;
-            if (data1[0].error.length) {
-                message.warning(data1[0].error[0].message);
+            if (!data1[0].data) {
+                if (data1[0].error.length) {
+                    message.warning(data1[0].error[0].message);
+                };
             } else {
                 this.state.data = data1[0].data;
                 this.state.patentDes = data1[0].data.patentDes;
@@ -123,8 +114,10 @@ const PatentDesc = React.createClass({
                 this.state.uid = data1[0].data.uid;
                 this.state.id = data1[0].data.id;
             };
-            if (data2[0].error.length) {
-                message.warning(data2[0].error[0].message);
+            if (!data2[0].data) {
+                if (data2[0].error.length) {
+                    message.warning(data2[0].error[0].message);
+                };
             } else {
                 _me.state.stateTable = [];
                 data2[0].data.map(function (item) {
@@ -140,27 +133,6 @@ const PatentDesc = React.createClass({
                     });
                 });
             };
-            if (data3[0].error.length) {
-                message.warning(data3[0].error[0].message);
-            } else {
-                for (var item in data3[0].data) {
-                    _me.state.adminOption.push(
-                        <Select.Option value={item} key={item}>{data3[0].data[item]}</Select.Option>
-                    )
-                };
-            };
-            if (!data4[0].data) {
-                if (data4[0].error && data4[0].error.length) {
-                    message.warning(data4[0].error[0].message);
-                };
-            } else {
-                _me.state.patentStateOption = [];
-                for (var item in data4[0].data) {
-                    _me.state.patentStateOption.push(
-                        <Select.Option value={item} key={item}>{data4[0].data[item]}</Select.Option>
-                    )
-                };
-            };
         }).always(function () {
             this.setState({
                 loading: false
@@ -196,14 +168,14 @@ const PatentDesc = React.createClass({
     getOption() {
         let _me = this;
         _me.state.patentTypeOption = [];
-        _me.state.patentFieldOption = [];
+        _me.state.industryOption = [];
         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(
+        industryList.map(function (item) {
+            _me.state.industryOption.push(
                 <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
             )
         });
@@ -274,7 +246,6 @@ const PatentDesc = React.createClass({
         this.state.adminName = undefined;
         this.state.recordTime = undefined;
         this.state.comment = undefined;
-        this.state.adminOption = [];
         if (nextProps.data && !this.state.visible && nextProps.showDesc) {
             this.state.xid = nextProps.data.pid;
             this.loadData();
@@ -329,6 +300,43 @@ const PatentDesc = React.createClass({
                                     </Select>
                                 </div>
                             </div>
+                            <p>专利状态流转记录:</p>
+                            <Table
+                                style={{ margin: '10px 0', background: "#eee" }}
+                                pagination={false}
+                                dataSource={this.state.stateTable}
+                                columns={this.state.stateColumns} />
+                            <div className="clearfix">
+                                <div className="widthThird">
+                                    <span>状态流转:</span>
+                                    <Select placeholder='请选择状态'
+                                        value={this.state.patentStateAdd}
+                                        style={{ width: 150 }}
+                                        onChange={(e) => { this.setState({ patentStateAdd: e }); }}>
+                                        {this.props.patentStateOption}
+                                    </Select>
+                                </div>
+                                <p className="widthThird">
+                                    <span>处理时间:</span>
+                                    <DatePicker
+                                        value={this.state.recordTime ? moment(this.state.recordTime) : undefined}
+                                        format="YYYY-MM-DD HH:mm:ss"
+                                        onChange={(data, dataString) => { this.setState({ recordTime: dataString }); }} />
+                                </p>
+                                <div className="widthThird">
+                                    <span>负责人:</span>
+                                    <Select placeholder='请填写负责人'
+                                        value={this.state.adminName}
+                                        style={{ width: 150 }}
+                                        onChange={(e) => { this.setState({ adminName: e }); }}>
+                                        {this.props.adminOption}
+                                    </Select>
+                                </div>
+                            </div>
+                            <div>
+                                <span>备注:</span>
+                                <Input value={this.state.comment} placeholder='请填写备注' style={{ width: 400 }} onChange={(e) => { this.setState({ comment: e.target.value }); }} />
+                            </div>
                             <div>
                                 <p className="widthHalf"><span>事务所:</span><Input value={this.state.office} onChange={(e) => { this.setState({ office: e.target.value }); }} /></p>
                             </div>
@@ -339,13 +347,22 @@ const PatentDesc = React.createClass({
                             <div>
                                 <p className="widthHalf"><span>专利名称:</span><Input value={this.state.patentName} onChange={(e) => { this.setState({ patentName: e.target.value }); }} /></p>
                                 <div className="widthHalf"><span>专利类型:</span>
-                                    <Select value={this.state.patentCatagory} style={{ width: 200 }} onChange={(e) => { this.setState({ patentCatagory: e }); }}>{this.state.patentTypeOption}</Select>
+                                    <Select value={this.state.patentCatagory}
+                                        style={{ width: 260 }}
+                                        onChange={(e) => { this.setState({ patentCatagory: e }); }}>
+                                        {this.state.patentTypeOption}
+                                    </Select>
                                 </div>
                             </div>
                             <div>
                                 <p className="widthHalf"><span>专利状态:</span>{getPatentState(theData.patentState)}</p>
-                                <div className="widthHalf"><span>专利领域:</span>
-                                    <Select value={this.state.patentField} style={{ width: 200 }} onChange={(e) => { this.setState({ patentField: e }); }}>{this.state.patentFieldOption}</Select>
+                                <div className="widthHalf"><span>所属行业:</span>
+                                    <Select
+                                        value={this.state.patentField}
+                                        style={{ width: 260 }}
+                                        onChange={(e) => { this.setState({ patentField: e }); }}>
+                                        {this.state.industryOption}
+                                    </Select>
                                 </div>
                             </div>
                             <div>
@@ -413,38 +430,6 @@ const PatentDesc = React.createClass({
                                 <Avatar urlData={this.getPatentCertificateUrl} name='patent_certificate' uid={theData.uid} id={theData.id} />
                             </div>
                             <div className="avatar-text"><span>专利稿件上传</span><span>授权通知书上传</span><span>专利证书上传</span></div>
-                            <div className="clearfix">
-                                <p>专利状态流转记录:</p>
-                                <Table
-                                    style={{ margin: '10px 0' }}
-                                    pagination={false}
-                                    dataSource={this.state.stateTable}
-                                    columns={this.state.stateColumns} />
-                                <div className="widthThird">
-                                    <span>状态流转:</span>
-                                    <Select placeholder='请选择状态' value={this.state.patentStateAdd} style={{ width: 150 }} onChange={(e) => { this.setState({ patentStateAdd: e }); }}>{this.state.patentStateOption}</Select>
-                                </div>
-                                <p className="widthThird">
-                                    <span>处理时间:</span>
-                                    <DatePicker
-                                        value={this.state.recordTime ? moment(this.state.recordTime) : undefined}
-                                        format="YYYY-MM-DD HH:mm:ss"
-                                        onChange={(data, dataString) => { this.setState({ recordTime: dataString }); }} />
-                                </p>
-                                <div className="widthThird">
-                                    <span>负责人:</span>
-                                    <Select placeholder='请填写负责人'
-                                        value={this.state.adminName}
-                                        style={{ width: 150 }}
-                                        onChange={(e) => { this.setState({ adminName: e }); }}>
-                                        {this.state.adminOption}
-                                    </Select>
-                                </div>
-                            </div>
-                            <div>
-                                <span>备注:</span>
-                                <Input value={this.state.comment} placeholder='请填写备注' style={{ width: 400 }} onChange={(e) => { this.setState({ comment: e.target.value }); }} />
-                            </div>
                         </Modal>
                     </Spin>
                 </div>

+ 165 - 22
js/component/manageCenter/servicesManage/patent/comprehensive.jsx

@@ -1,7 +1,7 @@
 import React from 'react';
-import { Icon, Button, Input, Select, Spin, Table, Switch, DatePicker, message, Upload } from 'antd';
+import { Icon, Button, Input, Select, Spin, Table, Switch, DatePicker, message, Upload, Modal } from 'antd';
 import { patentTypeList, patentStateList, provinceArr } from '../../../dataDic.js';
-import { getTime, getPatentState, beforeUploadFile, companySearch } from '../../../tools.js';
+import { getTime, getPatentState, beforeUploadFile, companySearch, getSearchUrl } from '../../../tools.js';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 import moment from 'moment';
@@ -86,7 +86,8 @@ const Patent = React.createClass({
                         createTime: thisdata.createTime,   //派单日
                         author: thisdata.author, //撰写人
                         office: thisdata.office, //事务所
-                        principal: thisdata.principal //负责人
+                        principal: thisdata.principal, //负责人
+                        founder: thisdata.founder //创建人
                     });
                 };
                 this.state.pagination.current = data.data.pageNo;
@@ -102,26 +103,63 @@ const Patent = React.createClass({
             });
         }.bind(this));
     },
-    getCompanyList() {
+    getOptionList() {
         this.setState({
             loading: true
         });
-        $.ajax({
+        $.when($.ajax({
             method: "get",
             dataType: "json",
             crossDomain: false,
             url: globalConfig.context + "/api/admin/getUnitNames",
-            success: function (data) {
-                if (data.error.length || !data.data) {
-                    return;
+            data: { "pid": this.state.xid },
+        }), $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/patent/getPrincipal"
+        }), $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/patent/patentStatus"
+        })).done((data1, data2, data3) => {
+            let _me = this;
+            if (!data1[0].data) {
+                if (data1[0].error.length) {
+                    message.warning(data1[0].error[0].message);
                 };
-                let _me = this;
-                for (var item in data.data) {
+            } else {
+                for (var item in data1[0].data) {
                     _me.state.companyOption.push(
-                        <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
+                        <Select.Option value={item} key={item}>{data1[0].data[item]}</Select.Option>
                     )
                 };
-            }.bind(this),
+            };
+            if (!data2[0].data) {
+                if (data2[0].error.length) {
+                    message.warning(data2[0].error[0].message);
+                };
+            } else {
+                _me.state.adminOption = [];
+                for (var item in data2[0].data) {
+                    _me.state.adminOption.push(
+                        <Select.Option value={item} key={item}>{data2[0].data[item]}</Select.Option>
+                    )
+                };
+            };
+            if (!data3[0].data) {
+                if (data3[0].error && data3[0].error.length) {
+                    message.warning(data3[0].error[0].message);
+                };
+            } else {
+                _me.state.patentStateOption = [];
+                for (var item in data3[0].data) {
+                    _me.state.patentStateOption.push(
+                        <Select.Option value={item} key={item}>{data3[0].data[item]}</Select.Option>
+                    )
+                };
+            };
         }).always(function () {
             this.setState({
                 loading: false
@@ -140,6 +178,7 @@ const Patent = React.createClass({
             searchMore: true,
             data: [],
             loading: false,
+            visible: false,
             selectedRowKeys: [],
             selectedRows: [],
             pagination: {
@@ -199,6 +238,10 @@ const Patent = React.createClass({
                     dataIndex: 'endTime',
                     key: 'endTime',
                     render: text => { return getTime(text) },
+                }, {
+                    title: '创建人',
+                    dataIndex: 'founder',
+                    key: 'founder'
                 }
             ],
             dataSource: []
@@ -222,7 +265,16 @@ const Patent = React.createClass({
             )
         });
         this.loadData();
-        this.getCompanyList();
+        this.getOptionList();
+        if (window.location.search) {
+            let theArr = getSearchUrl(window.location.search);
+            let theObj = {};
+            theObj.pid = theArr[0];
+            theObj.uid = theArr[1];
+            if (theObj.pid != 'null' && theObj.uid != 'null') {
+                this.tableRowClick(theObj);
+            };
+        };
     },
     tableRowClick(record, index) {
         this.state.RowData = record;
@@ -327,6 +379,55 @@ const Patent = React.createClass({
             this.loadData();
         }.bind(this));
     },
+    circulation() {
+        let deletedIds = [];
+        for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
+            let rowItem = this.state.selectedRows[idx];
+            if (rowItem.pid) {
+                deletedIds.push(rowItem.pid)
+            }
+        }
+        this.setState({
+            selectedRowKeys: [],
+            loading: deletedIds.length > 0
+        });
+        $.ajax({
+            method: "POST",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/patent/circulation",
+            data: {
+                ids: deletedIds,
+                principal: this.state.principal,
+                state: this.state.status,
+                comment: this.state.comment,
+                recordTimeFormattedDate: this.state.recordTime
+            }
+        }).done(function (data) {
+            if (!data.error.length) {
+                message.success('保存成功!');
+                this.setState({
+                    loading: false,
+                    visible: false
+                });
+            } else {
+                message.warning(data.error[0].message);
+            };
+            this.loadData();
+        }.bind(this));
+    },
+    showModal() {
+        this.setState({
+            visible: true,
+            principal: undefined,
+            status: undefined,
+            comment: undefined,
+            recordTime: undefined
+        });
+    },
+    handleCancel() {
+        this.setState({ visible: false });
+    },
     render() {
         const rowSelection = {
             selectedRowKeys: this.state.selectedRowKeys,
@@ -381,12 +482,16 @@ const Patent = React.createClass({
                     <Input value={this.state.searchValue} style={{ width: 160 }} onChange={this.searchSelect} />
                     <Select placeholder="专利状态" value={this.state.patentState} style={{ width: 160 }} onChange={(e) => { this.setState({ patentState: e }); }}>{this.state.patentStateOption}</Select>
                     <span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
-                    <Button type="primary" onClick={this.search}>搜索</Button>
+                    <Button style={{ marginLeft: '20px' }}
+                        type="primary"
+                        onClick={this.search}>搜索</Button>
                     <Button onClick={this.reset}>重置</Button>
                     <Button type="ghost" onClick={this.exportComposite}>导出</Button>
                     <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
                         disabled={!hasSelected}
                         onClick={this.delectRow}>删除<Icon type="minus" /></Button>
+                    <Button disabled={!hasSelected} style={{ marginTop: '10px' }}
+                        type="ghost" onClick={this.showModal}>专利批量流转<Icon type="retweet" /></Button>
                     <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
                         <div>
                             <span>派单日:</span>
@@ -404,7 +509,7 @@ const Patent = React.createClass({
                             <Select placeholder="选择省份"
                                 showSearch
                                 filterOption={companySearch}
-                                style={{ width: 200 }}
+                                style={{ width: 100 }}
                                 onChange={(e) => { this.state.province = e }}>
                                 {this.state.provinceOption}
                             </Select>
@@ -427,16 +532,54 @@ const Patent = React.createClass({
                             onRowClick={this.tableRowClick} />
                     </Spin>
                 </div>
-                <PatentDesc data={this.state.RowData} showDesc={this.state.showDesc} closeDesc={this.closeDesc} />
+                <PatentDesc
+                    data={this.state.RowData}
+                    adminOption={this.state.adminOption}
+                    patentStateOption={this.state.patentStateOption}
+                    showDesc={this.state.showDesc}
+                    closeDesc={this.closeDesc} />
+                <Modal title="专利批量流转" visible={this.state.visible}
+                    onCancel={this.handleCancel}
+                    width='800px'
+                    footer={[
+                        <Button key="submit" type="primary" size="large" onClick={this.circulation}>保存</Button>,
+                        <Button key="back" type="ghost" size="large" onClick={this.handleCancel}>取消</Button>,
+                    ]} className="patent-desc-content">
+                    <div className="clearfix">
+                        <div className="widthThird">
+                            <span>状态流转:</span>
+                            <Select placeholder='请选择状态'
+                                value={this.state.status}
+                                style={{ width: 150 }}
+                                onChange={(e) => { this.setState({ status: e }); }}>
+                                {this.state.patentStateOption}
+                            </Select>
+                        </div>
+                        <p className="widthThird">
+                            <span>处理时间:</span>
+                            <DatePicker
+                                value={this.state.recordTime ? moment(this.state.recordTime) : undefined}
+                                format="YYYY-MM-DD HH:mm:ss"
+                                onChange={(data, dataString) => { this.setState({ recordTime: dataString }); }} />
+                        </p>
+                        <div className="widthThird">
+                            <span>负责人:</span>
+                            <Select placeholder='请填写负责人'
+                                value={this.state.principal}
+                                style={{ width: 150 }}
+                                onChange={(e) => { this.setState({ principal: e }); }}>
+                                {this.state.adminOption}
+                            </Select>
+                        </div>
+                    </div>
+                    <div>
+                        <span>备注:</span>
+                        <Input value={this.state.comment} placeholder='请填写备注' style={{ width: 400 }} onChange={(e) => { this.setState({ comment: e.target.value }); }} />
+                    </div>
+                </Modal>
             </div >
         );
     }
 });
 
 export default Patent;
-
-// <span>授权日:</span>
-//     <RangePicker style={{ width: '240px' }}
-//         allowClear={false}
-//         value={[moment(this.state.authTime[0]), moment(this.state.authTime[1])]}
-//         onChange={(date, dateString) => { this.setState({ authTime: dateString }) }} />

+ 3 - 2
js/component/manageCenter/servicesManage/patent/comprehensive.less

@@ -39,7 +39,7 @@
             margin-right: 20px;
         }
         button {
-            margin-left: 20px;
+            margin-right: 20px;
         }
         >span {
             margin-left: 20px;
@@ -49,12 +49,13 @@
         }
         .search-more {
             >div {
-                margin-top: 10px;
                 >span {
                     margin-right: 10px;
+                    margin-top: 10px;
                 }
                 >div {
                     margin-right: 20px;
+                    margin-top: 10px;
                 }
             }
         }

+ 49 - 40
js/component/manageCenter/servicesManage/technology/applyChange.jsx

@@ -69,8 +69,9 @@ const ApplyChangeFrom = Form.create()(React.createClass({
                         key: i,
                         state: data.data[i].state,
                         recordTime: data.data[i].recordTime,
-                        recordTimeFormattedDate:data.data[i].recordTimeFormattedDate,
+                        recordTimeFormattedDate: data.data[i].recordTimeFormattedDate,
                         principal: data.data[i].principal,
+                        operator: data.data[i].operator,
                         comment: data.data[i].comment
                     });
                 };
@@ -175,7 +176,7 @@ const ApplyChangeFrom = Form.create()(React.createClass({
             projectModeState: false,
             subsidyState: false,
             stateColumns: [{
-                title: '专利状态',
+                title: '科技项目状态',
                 dataIndex: 'state',
                 key: 'state',
                 render: (text) => { return getTechnologyState(text) }
@@ -188,6 +189,10 @@ const ApplyChangeFrom = Form.create()(React.createClass({
                 dataIndex: 'principal',
                 key: 'principal',
             }, {
+                title: '操作人',
+                dataIndex: 'operator',
+                key: 'operator',
+            }, {
                 title: '备注',
                 dataIndex: 'comment',
                 key: 'comment',
@@ -310,6 +315,48 @@ const ApplyChangeFrom = Form.create()(React.createClass({
                             </FormItem>
                         </div>
                     </div>
+                    <div>
+                        <div className="item-title">状态流转记录: </div>
+                        <Table style={{ background: "#eee",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>
+                    </div>
                     <div className="clearfix">
                         <FormItem className="third-item"
                             {...formItemLayout}
@@ -427,44 +474,6 @@ const ApplyChangeFrom = Form.create()(React.createClass({
                         </Upload>
                         <p style={{ marginTop: '10px' }}>{theData.approvalUrl ? <a onClick={techDownloadFile.bind(null, "/api/admin/techproject/download", this.state.data.id)}>项目材料</a> : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
                     </div>
-                    <div className="form-title">状态流转记录: </div>
-                    <Table 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>

+ 17 - 3
js/component/manageCenter/servicesManage/technology/applyManage.jsx

@@ -1,7 +1,7 @@
 import React from 'react';
 import { Icon, Button, Select, Spin, Table, message } from 'antd';
 import { provinceArr } from '../../../dataDic.js';
-import { companySearch, getTechnologyState } from '../../../tools.js';
+import { companySearch, getTechnologyState, getSearchUrl } from '../../../tools.js';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 import './technology.less';
@@ -60,7 +60,8 @@ const ApplyManage = React.createClass({
                         website: thisdata.website,
                         accountNumber: thisdata.accountNumber,
                         password: thisdata.password,
-                        consultant: thisdata.consultant
+                        consultant: thisdata.consultant,
+                        founder: thisdata.founder
                     });
                 };
                 this.state.pagination.current = data.data.pageNo;
@@ -172,7 +173,7 @@ const ApplyManage = React.createClass({
             companyOption: [],
             companyAddOption: [],
             authorOption: [],
-            consultantOption:[],
+            consultantOption: [],
             selectedRows: [],
             selectedRowKeys: [],
             loading: false,
@@ -244,6 +245,10 @@ const ApplyManage = React.createClass({
                     title: '负责人',
                     dataIndex: 'consultant',
                     key: 'consultant'
+                }, {
+                    title: '创建人',
+                    dataIndex: 'founder',
+                    key: 'founder'
                 }
             ],
             dataSource: []
@@ -260,6 +265,15 @@ const ApplyManage = React.createClass({
         this.getAuthorList();
         this.getCompanyList();
         this.getConsultant();
+        if (window.location.search) {
+            let theArr = getSearchUrl(window.location.search);
+            let theObj = {};
+            theObj.pid = theArr[0];
+            theObj.uid = theArr[1];
+            if (theObj.pid != 'null' && theObj.uid != 'null') {
+                this.tableRowClick(theObj);
+            };
+        };
     },
     tableRowClick(record, index) {
         this.state.RowData = record;

+ 20 - 8
js/component/manageCenter/topTab.jsx

@@ -48,15 +48,15 @@ const MessageModal = React.createClass({
                     dataIndex: 'noticeType',
                     key: 'noticeType',
                     render: (text) => {
-                        switch (text) {
+                        switch (text[0]) {
                             case 1:
-                                return <a href={globalConfig.context + "/admin/servicesManage/patent.html#comprehensive"}> 专利申请管理 </a>;
+                                return <a href={globalConfig.context + "/admin/servicesManage/patent.html?rid=" + text[1] + "&uid=" + text[2] + "#comprehensive"}> 专利申请管理 </a>;
                             case 3:
-                                return <a href={globalConfig.context + "/admin/servicesManage/copyright.html#copyright"}> 软著申请管理 </a>;
+                                return <a href={globalConfig.context + "/admin/servicesManage/copyright.html?rid=" + text[1] + "&uid=" + text[2] + "#copyright"}> 软著申请管理 </a>;
                             case 2:
-                                return <a href={globalConfig.context + "/admin/servicesManage/highTech.html#highTechApply"}> 高企认定管理 </a>;
+                                return <a href={globalConfig.context + "/admin/servicesManage/highTech.html?rid=" + text[1] + "&uid=" + text[2] + "&year=" + text[3] + "#highTechApply"}> 高企认定管理 </a>;
                             case 4:
-                                return <a href={globalConfig.context + "/admin/servicesManage/technology.html#applyManage"}> 科技项目申报管理 </a>;
+                                return <a href={globalConfig.context + "/admin/servicesManage/technology.html?rid=" + text[1] + "&uid=" + text[2] + "#applyManage"}> 科技项目申报管理 </a>;
                         }
                     }
                 }, {
@@ -67,6 +67,14 @@ const MessageModal = React.createClass({
                     title: '内容',
                     dataIndex: 'content',
                     key: 'content',
+                }, {
+                    title: '公司',
+                    dataIndex: 'unitName',
+                    key: 'unitName',
+                }, {
+                    title: '业务员',
+                    dataIndex: 'principle',
+                    key: 'principle',
                 }
             ],
             data: []
@@ -100,10 +108,12 @@ const MessageModal = React.createClass({
                     key: i + 1,
                     id: thisdata.id,
                     aid: thisdata.aid,
-                    noticeType: thisdata.noticeType,
+                    noticeType: [thisdata.noticeType, thisdata.rid, thisdata.uid, thisdata.year],
                     content: thisdata.content,
                     createTime: thisdata.createTime,
                     createTimeFormattedDate: thisdata.createTimeFormattedDate,
+                    principle: thisdata.principle,
+                    unitName: thisdata.unitName
                 });
             };
             this.state.pagination.current = data.data.pageNo;
@@ -146,10 +156,12 @@ const MessageModal = React.createClass({
                     key: i + 1,
                     id: thisdata.id,
                     aid: thisdata.aid,
-                    noticeType: thisdata.noticeType,
+                    noticeType: [thisdata.noticeType, thisdata.rid, thisdata.uid, thisdata.year],
                     content: thisdata.content,
                     createTime: thisdata.createTime,
                     createTimeFormattedDate: thisdata.createTimeFormattedDate,
+                    principle: thisdata.principle,
+                    unitName: thisdata.unitName
                 });
             };
             this.state.UnreadPagination.current = data.data.pageNo;
@@ -189,7 +201,7 @@ const MessageModal = React.createClass({
                 <Spin spinning={this.state.loading} className='spin-box'>
                     <Modal title="信息中心" visible={this.state.visible}
                         onOk={this.handleOk} onCancel={this.handleCancel}
-                        width='600px' footer=''
+                        width='800px' footer=''
                     >
                         <Tabs defaultActiveKey="1">
                             <Tabs.TabPane tab="新信息" key="1">

+ 0 - 529
js/component/manageCenter/userManage/orgCertify.jsx

@@ -1,529 +0,0 @@
-import React from 'react';
-import { Icon, message, Input, Select, Button, Form, DatePicker } from 'antd';
-import './userList.less';
-import ajax from 'jquery/src/ajax/xhr.js';
-import $ from 'jquery/src/ajax';
-import moment from 'moment';
-import { eduLevelList, auditStatusList, certifyStepList } from '../../dataDic.js'
-import { addressInit } from '../../tools.js';
-
-const OrgCertify = Form.create()(React.createClass({
-    getInitialState() {
-        return {
-            visible: false,
-            loading: false,
-            eduLvlOption: [],
-            auditStatusOption: []
-        };
-    },
-    loadData(uid) {
-        this.state.data = [];
-        this.setState({
-            loading: true
-        });
-        $.ajax({
-            method: "post",
-            dataType: "json",
-            crossDomain: false,
-            url: globalConfig.context + "/api/admin/orgDetail",
-            data: {
-                uid: uid
-            },
-            success: function (data) {
-                let thisData = data.data;
-                if (!thisData) {
-                    if (data.error && data.error.length) {
-                        message.warning(data.error[0].message);
-                    };
-                    thisData = {};
-                };
-                addressInit('licenceProvince', 'licenceCity', 'licenceArea',
-                    thisData.licenceProvince, thisData.licenceCity, thisData.licenceArea);
-                addressInit('locationProvince', 'locationCity', 'locationArea',
-                    thisData.locationProvince, thisData.locationCity, thisData.locationArea);
-                this.setState({
-                    id: thisData.id,
-                    contacts: thisData.contacts,
-                    contactMobile: thisData.contactMobile,
-                    fixedTel: thisData.fixedTel,
-                    qq: thisData.qq,
-                    postalAddress: thisData.postalAddress,
-                    postcode: thisData.postcode,
-                    aftUsername: thisData.aftUsername,
-                    unitName: thisData.unitName,
-                    identityType: thisData.identityType, //组织性质
-                    registeredCapital: thisData.registeredCapital, //注册资金
-
-                    firstContacts: thisData.firstContacts,
-                    firstMobile: thisData.firstMobile,
-                    secondContacts: thisData.secondContacts,
-                    secondMobile: thisData.secondMobile,
-                    thirdContacts: thisData.thirdContacts,
-                    thirdMobile: thisData.thirdMobile,
-
-                    legalPerson: thisData.legalPerson,
-                    legalPersonIdCard: thisData.legalPersonIdCard,
-
-                    licenceNumber: thisData.licenceNumber,
-                    licenceScanningUrl: thisData.licenceScanningUrl,
-                    orgCode: thisData.orgCode,
-                    orgCodeUrl: thisData.orgCodeUrl,
-
-                    bankAccount: thisData.bankAccount,
-                    banks: thisData.banks,
-                    bankBranch: thisData.bankBranch,
-                    bankCardNumber: thisData.bankCardNumber,
-
-                    validationAmount: thisData.validationAmount, //打款金额
-                    paymentDate: thisData.paymentDate,
-                    paymentDateFormattedDate: thisData.paymentDateFormattedDate,
-                    lastYearTaxReportUrl: thisData.lastYearTaxReportUrl,
-                    auditStatus: thisData.auditStatus,
-                    //process: thisData.process ? String(thisData.process) : undefined
-                });
-                this.props.form.resetFields();
-            }.bind(this),
-        }).always(function () {
-            this.setState({
-                loading: false
-            });
-        }.bind(this));
-    },
-    handleSubmit(e) {
-        e.preventDefault();
-        this.props.form.validateFields((err, values) => {
-            if (!err) {
-                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",
-                    crossDomain: false,
-                    url: globalConfig.context + "/api/admin/updateOrgDetail",
-                    data: {
-                        uid: this.props.uid,
-                        id: this.state.id,
-                        contacts: values.contacts,
-                        contactMobile: values.contactMobile,
-                        postalAddress: values.postalAddress,
-                        postcode: values.postcode,
-                        aftUsername: values.aftUsername,
-                        unitName: values.unitName,
-                        identityType: values.identityType, //组织性质
-                        registeredCapital: values.registeredCapital, //注册资金
-
-                        legalPerson: values.legalPerson,
-                        legalPersonIdCard: values.legalPersonIdCard,
-
-                        licenceNumber: values.licenceNumber,
-                        orgCode: values.orgCode,
-
-                        firstContacts: values.firstContacts,
-                        firstMobile: values.firstMobile,
-                        secondContacts: values.secondContacts,
-                        secondMobile: values.secondMobile,
-                        thirdContacts: values.thirdContacts,
-                        thirdMobile: values.thirdMobile,
-
-                        bankAccount: values.bankAccount,
-                        banks: values.banks,
-                        bankBranch: values.bankBranch,
-                        bankCardNumber: values.bankCardNumber,
-
-                        validationAmount: values.validationAmount, //打款金额
-                        paymentDateFormattedDate: values.paymentDateFormattedDate ? values.paymentDateFormattedDate.format("YYYY-MM-DD") : undefined,
-                        auditStatus: values.auditStatus,
-                        //process: this.state.process,
-
-                        licenceArea: licenceA,
-                        licenceCity: licenceC,
-                        licenceProvince: licenceP,
-                        locationArea: locationA,
-                        locationCity: locationC,
-                        locationProvince: locationP
-                    }
-                }).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.handleOk();
-                }.bind(this));
-            }
-        });
-    },
-    handleCancel() {
-        this.props.closeDesc(false);
-    },
-    componentWillMount() {
-        let _me = this;
-        eduLevelList.map(function (item, i) {
-            _me.state.eduLvlOption.push(
-                <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>
-            );
-        });
-        auditStatusList.map(function (item, i) {
-            _me.state.auditStatusOption.push(
-                <Select.Option key={item.key} value={item.value} >{item.key}</Select.Option>
-            );
-        });
-    },
-    componentDidMount() {
-        addressInit('licenceProvince', 'licenceCity', 'licenceArea');
-        addressInit('locationProvince', 'locationCity', 'locationArea');
-        this.loadData(this.props.uid);
-    },
-    componentWillReceiveProps(nextProps) {
-        if (!this.props.visible && nextProps.visible) {
-            this.loadData(nextProps.uid);
-        };
-    },
-    render() {
-        const { getFieldDecorator } = this.props.form;
-        const FormItem = Form.Item
-        const formItemLayout = {
-            labelCol: { span: 6 },
-            wrapperCol: { span: 12 },
-        };
-        return (
-            <Form horizontal onSubmit={this.handleSubmit} className="person-form">
-                <FormItem
-                    {...formItemLayout}
-                    label="公司名称"
-                >
-                    {getFieldDecorator('unitName', {
-                        initialValue: this.state.unitName
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="认证名称"
-                >
-                    {getFieldDecorator('aftUsername', {
-                        initialValue: this.state.aftUsername
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="身份类型"
-                >
-                    {getFieldDecorator('identityType', {
-                        initialValue: this.state.identityType
-                    })(
-                        <Select placeholder="身份类型" style={{ width: 200 }}
-                            onChange={(e) => { this.state.identityType = e }}>
-                            {this.state.eduLvlOption}
-                        </Select>
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="联系人"
-                >
-                    {getFieldDecorator('contacts', {
-                        initialValue: this.state.contacts
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="联系人电话"
-                >
-                    {getFieldDecorator('contactMobile', {
-                        initialValue: this.state.contactMobile
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="第一联系人"
-                >
-                    {getFieldDecorator('firstContacts', {
-                        initialValue: this.state.firstContacts
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="第一联系人电话"
-                >
-                    {getFieldDecorator('firstMobile', {
-                        initialValue: this.state.firstMobile
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="第二联系人"
-                >
-                    {getFieldDecorator('secondContacts', {
-                        initialValue: this.state.secondContacts
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="第二联系人电话"
-                >
-                    {getFieldDecorator('secondMobile', {
-                        initialValue: this.state.secondMobile
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="第三联系人"
-                >
-                    {getFieldDecorator('thirdContacts', {
-                        initialValue: this.state.thirdContacts
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="联系人电话"
-                >
-                    {getFieldDecorator('thirdMobile', {
-                        initialValue: this.state.thirdMobile
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="法人"
-                >
-                    {getFieldDecorator('legalPerson', {
-                        initialValue: this.state.legalPerson
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="法人身份证号"
-                >
-                    {getFieldDecorator('legalPersonIdCard', {
-                        initialValue: this.state.legalPersonIdCard
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="注册资金"
-                >
-                    {getFieldDecorator('registeredCapital', {
-                        initialValue: this.state.registeredCapital
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="营业执照编号"
-                >
-                    {getFieldDecorator('licenceNumber', {
-                        initialValue: this.state.licenceNumber
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    labelCol={{ span: 6 }}
-                    wrapperCol={{ span: 18 }}
-                    label="营业执照所在地"
-                >
-                    {getFieldDecorator('licenceAddress')(
-                        <div>
-                            <select id="licenceProvince" name="licenceProvince"></select>
-                            <select id="licenceCity" name="licenceCity"></select>
-                            <select id="licenceArea" name="licenceArea"></select>
-                        </div>
-                    )}
-                </FormItem>
-                <FormItem
-                    labelCol={{ span: 6 }}
-                    wrapperCol={{ span: 18 }}
-                    label="营业执照图片"
-                >
-                    <div className="idcard-img clearfix">
-                        {this.state.licenceScanningUrl ? <div>
-                            <div className="idcard-imgbox">
-                                <img src={globalConfig.context + '/open/writeImage?path=' + this.state.licenceScanningUrl} alt="点击查看大图"
-                                    onClick={(e) => { window.open(e.target.src) }} />
-                            </div>
-                        </div> : <div><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</div>}
-                    </div>
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="组织机构代码"
-                >
-                    {getFieldDecorator('orgCode', {
-                        initialValue: this.state.orgCode
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    labelCol={{ span: 6 }}
-                    wrapperCol={{ span: 18 }}
-                    label="组织机构代码证图片"
-                >
-                    <div className="idcard-img clearfix">
-                        {this.state.orgCodeUrl ? <div>
-                            <div className="idcard-imgbox">
-                                <img src={globalConfig.context + '/open/writeImage?path=' + this.state.orgCodeUrl} alt="点击查看大图"
-                                    onClick={(e) => { window.open(e.target.src) }} />
-                            </div>
-                        </div> : <div><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</div>}
-                    </div>
-                </FormItem>
-                <FormItem
-                    labelCol={{ span: 6 }}
-                    wrapperCol={{ span: 18 }}
-                    label="上年度纳税报表"
-                >
-                    <div className="idcard-img clearfix">
-                        {this.state.lastYearTaxReportUrl ? <div>
-                            <div className="idcard-imgbox">
-                                <img src={globalConfig.context + '/open/writeImage?path=' + this.state.lastYearTaxReportUrl} alt="点击查看大图"
-                                    onClick={(e) => { window.open(e.target.src) }} />
-                            </div>
-                        </div> : <div><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传</div>}
-                    </div>
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="开户银行"
-                >
-                    {getFieldDecorator('banks', {
-                        initialValue: this.state.banks
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="开户银行支行"
-                >
-                    {getFieldDecorator('bankBranch', {
-                        initialValue: this.state.bankBranch
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="银行卡号"
-                >
-                    {getFieldDecorator('bankCardNumber', {
-                        initialValue: this.state.bankCardNumber
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    labelCol={{ span: 6 }}
-                    wrapperCol={{ span: 18 }}
-                    label="开户行所在地"
-                >
-                    {getFieldDecorator('locationAddress')(
-                        <div>
-                            <select id="locationProvince" name="locationProvince"></select>
-                            <select id="locationCity" name="locationCity"></select>
-                            <select id="locationArea" name="locationArea"></select>
-                        </div>
-                    )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="打款金额"
-                >
-                    {getFieldDecorator('validationAmount', {
-                        initialValue: this.state.validationAmount
-                    })(
-                        <Input />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="打款日期"
-                >
-                    {getFieldDecorator('paymentDateFormattedDate', {
-                        initialValue: this.state.paymentDate ? moment(this.state.paymentDate) : null
-                    })(
-                        <DatePicker />
-                        )}
-                </FormItem>
-                <FormItem
-                    {...formItemLayout}
-                    label="认证状态"
-                >
-                    {getFieldDecorator('auditStatus', {
-                        initialValue: this.state.auditStatus
-                    })(
-                        <Select placeholder="选择认证状态" style={{ width: 200 }}
-                            onChange={(e) => { this.state.auditStatus = e }}>
-                            {this.state.auditStatusOption}
-                        </Select>
-                        )}
-                </FormItem>
-                <FormItem wrapperCol={{ span: 12, offset: 4 }}>
-                    <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
-                    <Button className="set-submit" type="ghost" onClick={this.handleCancel} >取消</Button>
-                </FormItem>
-            </Form >
-        );
-    }
-}));
-
-export default OrgCertify;
-
-                // <FormItem
-                //     {...formItemLayout}
-                //     label="认证步骤"
-                // >
-                //     {getFieldDecorator('process', {
-                //         initialValue: this.state.process
-                //     })(
-                //         <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>

+ 1 - 21
js/component/manageCenter/userManage/orgDesc.jsx

@@ -230,26 +230,6 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="联系人"
-                        >
-                            {getFieldDecorator('contacts', {
-                                initialValue: this.state.contacts
-                            })(
-                                <Input />
-                                )}
-                        </FormItem>
-                        <FormItem
-                            {...formItemLayout}
-                            label="联系人电话"
-                        >
-                            {getFieldDecorator('contactMobile', {
-                                initialValue: this.state.contactMobile
-                            })(
-                                <Input />
-                                )}
-                        </FormItem>
-                        <FormItem
-                            {...formItemLayout}
                             label="第一联系人"
                         >
                             {getFieldDecorator('firstContacts', {
@@ -300,7 +280,7 @@ const OrgCertify = Form.create()(React.createClass({
                         </FormItem>
                         <FormItem
                             {...formItemLayout}
-                            label="联系人电话"
+                            label="第三联系人电话"
                         >
                             {getFieldDecorator('thirdMobile', {
                                 initialValue: this.state.thirdMobile

+ 12 - 1
js/component/tools.js

@@ -507,7 +507,7 @@ module.exports = {
             }
         });
     },
-    saveProportion(id,sign,status){
+    saveProportion(id,uid,sign,status){
         $.ajax({
             method: "post",
             dataType: "json",
@@ -515,6 +515,7 @@ module.exports = {
             url: globalConfig.context + '/api/admin/confirmProportion',
             data:{ 
                 "id": id,
+                "uid":uid,
                 "sign":sign,
                 "status":status
             },
@@ -527,5 +528,15 @@ module.exports = {
                 };
             }
         });
+    },
+    //获取window.location.search传的值
+    getSearchUrl(e){
+        let searchURL = e;
+        searchURL = searchURL.substring(1, searchURL.length);
+        let theArr = [
+            searchURL.split("&")[0].split("=")[1],
+            searchURL.split("&")[1].split("=")[1],
+            searchURL.split("&")[2] ? searchURL.split("&")[2].split("=")[1] : undefined];
+        return theArr;
     }
 }

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "afanti",
-  "version": "1.0.20",
+  "version": "1.0.22",
   "description": "",
   "main": "index.js",
   "scripts": {