Browse Source

v1.0.17 update

yee 8 years ago
parent
commit
70572387a6
25 changed files with 1107 additions and 574 deletions
  1. 15 5
      js/component/account/services/finance.jsx
  2. 18 8
      js/component/account/services/ratepay.jsx
  3. 30 30
      js/component/dataDic.js
  4. 2 1
      js/component/manageCenter/servicesManage/copyright/comPatentChange.jsx
  5. 2 3
      js/component/manageCenter/servicesManage/highTech/fosterDesc/ablt.less
  6. 15 3
      js/component/manageCenter/servicesManage/highTech/fosterDesc/achievement.jsx
  7. 14 2
      js/component/manageCenter/servicesManage/highTech/fosterDesc/activity.jsx
  8. 15 3
      js/component/manageCenter/servicesManage/highTech/fosterDesc/activityCostList.jsx
  9. 655 474
      js/component/manageCenter/servicesManage/highTech/fosterDesc/companyDetail.jsx
  10. 28 1
      js/component/manageCenter/servicesManage/highTech/fosterDesc/content.jsx
  11. 21 0
      js/component/manageCenter/servicesManage/highTech/fosterDesc/content.less
  12. 29 7
      js/component/manageCenter/servicesManage/highTech/fosterDesc/finance.jsx
  13. 16 4
      js/component/manageCenter/servicesManage/highTech/fosterDesc/honorList.jsx
  14. 16 4
      js/component/manageCenter/servicesManage/highTech/fosterDesc/hrSituation.jsx
  15. 22 4
      js/component/manageCenter/servicesManage/highTech/fosterDesc/innovationAbility.jsx
  16. 15 3
      js/component/manageCenter/servicesManage/highTech/fosterDesc/intellectual.jsx
  17. 15 3
      js/component/manageCenter/servicesManage/highTech/fosterDesc/orgTechCenter.jsx
  18. 30 8
      js/component/manageCenter/servicesManage/highTech/fosterDesc/ratepay.jsx
  19. 17 5
      js/component/manageCenter/servicesManage/highTech/fosterDesc/standard.jsx
  20. 14 2
      js/component/manageCenter/servicesManage/highTech/fosterDesc/techProduct.jsx
  21. 1 2
      js/component/manageCenter/servicesManage/patent/comPatentDesc.jsx
  22. 1 1
      js/component/manageCenter/servicesManage/technology/applyChange.jsx
  23. 74 0
      js/component/manageCenter/userManage/orgCertify.jsx
  24. 41 0
      js/component/tools.js
  25. 1 1
      package.json

+ 15 - 5
js/component/account/services/finance.jsx

@@ -53,7 +53,9 @@ const FinanceDescFrom = Form.create()(React.createClass({
                 <Select.Option value={i.toString()} key={i}>{i}</Select.Option>
             )
         };
-        this.loadData();
+        if (this.props.data.year) {
+            this.loadData();
+        };
     },
     handleSubmit(e) {
         e.preventDefault();
@@ -102,9 +104,17 @@ const FinanceDescFrom = Form.create()(React.createClass({
     },
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
-            this.loadData(nextProps.data.year);
+            if (nextProps.data.year) {
+                this.loadData(nextProps.data.year);
+            };
             this.props.form.resetFields();
         };
+        if (this.props.visible && !nextProps.visible) {
+            this.state.managementCost = undefined;
+            this.state.researchCost = undefined;
+            this.state.grossProfit = undefined;
+            this.state.operatingProfit = undefined;
+        };
     },
     checkResearchCost(rule, value, callback) {
         const form = this.props.form;
@@ -119,8 +129,8 @@ const FinanceDescFrom = Form.create()(React.createClass({
         const { getFieldDecorator } = this.props.form;
         const theData = this.props.data;
         const formItemLayout = {
-            labelCol: { span: 10 },
-            wrapperCol: { span: 12 },
+            labelCol: { span: 8 },
+            wrapperCol: { span: 16 },
         };
         const _me = this;
         return (
@@ -129,7 +139,7 @@ const FinanceDescFrom = Form.create()(React.createClass({
                     {
                         theData.year ? <span>{theData.year}</span> :
                             <Select placeholder="请选择年份" style={{ width: 200 }}
-                                onSelect={(e, n) => { this.state.year = e}}>
+                                onSelect={(e, n) => { this.state.year = e, this.loadData(e); }}>
                                 {this.state.yearOption}
                             </Select>
                     }

+ 18 - 8
js/component/account/services/ratepay.jsx

@@ -52,7 +52,9 @@ const RatepayDescFrom = Form.create()(React.createClass({
                 <Select.Option value={i.toString()} key={i}>{i}</Select.Option>
             )
         };
-        this.loadData();
+        if (this.props.data.year) {
+            this.loadData();
+        };
     },
     handleSubmit(e) {
         e.preventDefault();
@@ -98,17 +100,25 @@ const RatepayDescFrom = Form.create()(React.createClass({
     },
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
-            this.loadData(nextProps.data.year);
+            if (nextProps.data.year) {
+                this.loadData(nextProps.data.year);
+            };
             this.props.form.resetFields();
         };
+        if (this.props.visible && !nextProps.visible) {
+            this.state.managementCost = undefined;
+            this.state.researchCost = undefined;
+            this.state.grossProfit = undefined;
+            this.state.operatingProfit = undefined;
+        };
     },
     render() {
         const FormItem = Form.Item;
         const { getFieldDecorator } = this.props.form;
         const theData = this.props.data;
         const formItemLayout = {
-            labelCol: { span: 10 },
-            wrapperCol: { span: 12 },
+            labelCol: { span: 8 },
+            wrapperCol: { span: 16 },
         };
         const _me = this;
         return (
@@ -117,7 +127,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                     {
                         theData.year ? <span>{theData.year}</span> :
                             <Select placeholder="请选择年份" style={{ width: 200 }}
-                                onSelect={(e, n) => { this.state.year = e }}>
+                                onSelect={(e, n) => { this.state.year = e, this.loadData(e); }}>
                                 {this.state.yearOption}
                             </Select>
                     }
@@ -156,7 +166,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                         })(
                             <InputNumber />
                             )}
-                        {this.state.operatingProfit && this.state.operatingProfit != this.props.form.getFieldValue('operatingProfit') ? <span style={{color:'#f50'}}>与财务报表不一致!</span> : <span></span>}
+                        {this.state.operatingProfit && this.state.operatingProfit != this.props.form.getFieldValue('operatingProfit') ? <span style={{ color: '#f50' }}>与财务报表不一致!</span> : <span></span>}
                     </FormItem>
                     <FormItem className="half-item"
                         {...formItemLayout}
@@ -212,7 +222,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                         })(
                             <InputNumber />
                             )}
-                        {this.state.grossProfit && this.state.grossProfit != this.props.form.getFieldValue('grossProfit') ? <span style={{color:'#f50'}}>与财务报表不一致!</span> : <span></span>}
+                        {this.state.grossProfit && this.state.grossProfit != this.props.form.getFieldValue('grossProfit') ? <span style={{ color: '#f50' }}>与财务报表不一致!</span> : <span></span>}
                     </FormItem>
                     <FormItem className="half-item"
                         {...formItemLayout}
@@ -224,7 +234,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                         })(
                             <InputNumber />
                             )}
-                        {this.state.researchCost && this.state.researchCost != this.props.form.getFieldValue('researchCost') ? <span style={{color:'#f50'}}>与财务报表不一致!</span> : <span></span>}
+                        {this.state.researchCost && this.state.researchCost != this.props.form.getFieldValue('researchCost') ? <span style={{ color: '#f50' }}>与财务报表不一致!</span> : <span></span>}
                     </FormItem>
                 </div>
                 <div className="hrSituation-roster">

+ 30 - 30
js/component/dataDic.js

@@ -465,112 +465,112 @@ module.exports = {
     //注册类型
     companyType:[
         {
-            value:1,
+            value:"1",
             label:"内资企业",
             children:[
                 {
-                    value:11,
+                    value:"11",
                     label:"国有企业"
                 },{
-                    value:12,
+                    value:"12",
                     label:"集体企业"
                 },{
-                    value:13,
+                    value:"13",
                     label:"股份合作企业"
                 },{
-                    value:14,
+                    value:"14",
                     label:"联营企业",
                     children:[
                         {
-                            value:141,
+                            value:"141",
                             label:"国有联营企业"
                         },{
-                            value:142,
+                            value:"142",
                             label:"集体联营企业"
                         },{
-                            value:143,
+                            value:"143",
                             label:"国有与集体联营企业"
                         },{
-                            value:144,
+                            value:"144",
                             label:"其他联营企业"
                         },
                     ]
                 },{
-                    value:15,
+                    value:"15",
                     label:"有限责任公司",
                     children:[
                         {
-                            value:151,
+                            value:"151",
                             label:"国有独资公司"
                         },{
-                            value:152,
+                            value:"152",
                             label:"其他有限责任公司"
                         }
                     ]
                 },{
-                    value:16,
+                    value:"16",
                     label:"股份有限公司"
                 },{
-                    value:17,
+                    value:"17",
                     label:"私营企业",
                     children:[
                         {
-                            value:171,
+                            value:"171",
                             label:"私营独资企业"
                         },{
-                            value:172,
+                            value:"172",
                             label:"私营合伙企业"
                         },{
-                            value:173,
+                            value:"173",
                             label:"私营有限责任公司"
                         },{
-                            value:174,
+                            value:"174",
                             label:"私营股份有限公司"
                         }
                     ]
                 },{
-                    value:18,
+                    value:"18",
                     label:"其他企业"
                 }
             ]
         },{
-            value:2,
+            value:"2",
             label:"港、澳、台商投资企业",
             children:[
                 {
-                    value:21,
+                    value:"21",
                     label:"合资经营企业(港或澳、台资)"
                 },{
-                    value:22,
+                    value:"22",
                     label:"合作经营企业(港或澳、台资)"
                 },{
-                    value:23,
+                    value:"23",
                     label:"港、澳、台商独资经营企业"
                 },{
-                    value:24,
+                    value:"24",
                     label:"港、澳、台商投资股份有限公司"
                 }
             ]
         },{
-            value:3,
+            value:"3",
             label:"外商投资企业",
             children:[
                 {
-                    value:31,
+                    value:"31",
                     label:"中外合资经营企业"
                 },{
-                    value:32,
+                    value:"32",
                     label:"中外合作经营企业"
                 },{
-                    value:33,
+                    value:"33",
                     label:"外资企业"
                 },{
-                    value:34,
+                    value:"34",
                     label:"外商投资股份有限公司"
                 }
             ]
         },{
-            value:999,
+            value:"999",
             label:"无法分类"
         }
     ]

+ 2 - 1
js/component/manageCenter/servicesManage/copyright/comPatentChange.jsx

@@ -142,6 +142,7 @@ const CopyrightDescForm = Form.create()(React.createClass({
             this.setState({
                 id: detailData.id,
                 province: detailData.province,
+                postalAddress:detailData.postalAddress,
                 unitName: detailData.unitName,
                 serialNumber: detailData.serialNumber,
                 createTime: detailData.createTime,
@@ -245,7 +246,7 @@ const CopyrightDescForm = Form.create()(React.createClass({
                 </Row>
                 <Row className="express-desc-row">
                     <Col span={4}>公司地址</Col>
-                    <Col span={6}>{theData.province}/{theData.city}/{theData.area}</Col>
+                    <Col span={6}>{theData.postalAddress}</Col>
                     <Col span={4}>联系人</Col>
                     <Col span={6}>
                         {getFieldDecorator('contact', {

+ 2 - 3
js/component/manageCenter/servicesManage/highTech/fosterDesc/ablt.less

@@ -6,10 +6,9 @@
         color: #333;
         font-size: 16px;
         margin-bottom: 10px;
-        span {
+        .proportion {
             font-size: 12px;
-            color: #999;
-            margin-left: 10px;
+            margin-left: 20px;
         }
     }
     .tips-title {

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

@@ -1,7 +1,7 @@
 import React from 'react';
-import { Icon, Form, Button, Input, Spin, Table, message, Select, Modal, InputNumber, Upload } from 'antd';
+import { Icon, Form, Button, Input, Spin, Table, message, Select, Modal, InputNumber, Upload, Switch } from 'antd';
 import './techProduct.less';
-import { getConversionForm, beforeUploadFile, newDownloadFile } from '../../../../tools.js';
+import { getConversionForm, beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
 import { conversionFormList, technicalSourceList } from '../../../../dataDic.js';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
@@ -162,7 +162,7 @@ const AchievementDescFrom = Form.create()(React.createClass({
                     <Upload
                         name="ratepay"
                         action={globalConfig.context + "/api/admin/uploadAchievement"}
-                        data={{ 'sign': 'achievement','uid': this.props.uid }}
+                        data={{ 'sign': 'achievement', 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
                         showUploadList={false}
                         onChange={(info) => {
@@ -312,6 +312,8 @@ const Achievement = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     getInitialState() {
         return {
@@ -432,6 +434,16 @@ const Achievement = React.createClass({
             <div className="user-content" >
                 <div className="content-title">
                     <span>科技成果转化</span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.achievement == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.achievement = 1 : this.state.proportion.achievement = 0;
+                            saveProportion(this.state.proportion.id, 'achievement', this.state.proportion.achievement);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="user-search">
                     <p>

+ 14 - 2
js/component/manageCenter/servicesManage/highTech/fosterDesc/activity.jsx

@@ -1,8 +1,8 @@
 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 } from 'antd';
 import { technicalSourceList } from '../../../../dataDic.js';
 import { techFieldList } from '../../../../DicTechFieldList.js';
-import { getTechField, getTechnicalSource, beforeUploadFile, newDownloadFile } from '../../../../tools.js';
+import { getTechField, getTechnicalSource, beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
 import moment from 'moment';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
@@ -417,6 +417,8 @@ const Activity = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     getInitialState() {
         return {
@@ -543,6 +545,16 @@ const Activity = React.createClass({
             <div className="user-content" >
                 <div className="content-title">
                     <span>企业研究开发活动情况表</span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.activity == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.activity = 1 : this.state.proportion.activity = 0;
+                            saveProportion(this.state.proportion.id, 'activity', this.state.proportion.activity);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="user-search">
                     <Input placeholder="研发活动名称" value={this.state.activityName}

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

@@ -1,7 +1,7 @@
 import React from 'react';
-import { Icon, Form, Upload, Button, Input, Spin, Table, message, Select, Modal, DatePicker, InputNumber } from 'antd';
+import { Switch, Icon, Form, Upload, Button, Input, Spin, Table, message, Select, Modal, DatePicker, InputNumber } from 'antd';
 import './activityCostList.less';
-import { beforeUploadFile, newDownloadFile } from '../../../../tools.js';
+import { beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
 import YearSelect from '../../../../yearSelect.jsx';
 import moment from 'moment';
 import ajax from 'jquery/src/ajax/xhr.js';
@@ -379,7 +379,7 @@ const Activity = React.createClass({
                 pageSize: this.state.pagination.pageSize,
                 uid: this.props.data.uid,
                 activityNumber: this.state.activityNumber,
-                year:this.state.year
+                year: this.state.year
             }
         }), $.ajax({
             method: "post",
@@ -457,6 +457,8 @@ const Activity = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     getInitialState() {
         return {
@@ -615,6 +617,16 @@ const Activity = React.createClass({
             <div className="user-content" >
                 <div className="content-title">
                     <span>企业研究开发费用结构明细</span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.activityCost == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.activityCost = 1 : this.state.proportion.activityCost = 0;
+                            saveProportion(this.state.proportion.id, 'activityCost', this.state.proportion.activityCost);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="user-search">
                     <Input placeholder="研发活动编号" value={this.state.activityNumber}

File diff suppressed because it is too large
+ 655 - 474
js/component/manageCenter/servicesManage/highTech/fosterDesc/companyDetail.jsx


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

@@ -1,7 +1,7 @@
 import React from 'react';
 import { Button, Radio } from 'antd';
 import './content.less';
-import { getTime } from '../../../../tools';
+import { getTime, getProportion } from '../../../../tools';
 import CompanyDetail from './companyDetail';
 
 
@@ -148,6 +148,28 @@ const Content = React.createClass({
             let e = { target: { value: "companyDetail" } }
             this.onChange(e);
         };
+        if (nextProps.data) {
+            let _me = this;
+            getProportion(nextProps.data.uid, function (data) {
+                let s = 0;
+                s = (
+                    (data.institution ? 5 : 0)
+                    + (data.activity ? 15 : 0)
+                    + (data.activityCost ? 15 : 0)
+                    + (data.techProject ? 10 : 0)
+                    + (data.intellectualProperty ? 15 : 0)
+                    + (data.achievement ? 10 : 0)
+                    + (data.ratepay ? 5 : 0)
+                    + (data.finance ? 5 : 0)
+                    + (data.humanResource ? 5 : 0)
+                    + (data.honorDatum ? 5 : 0)
+                    + (data.ability ? 5 : 0)
+                    + (data.standard ? 5 : 0))
+                _me.setState({
+                    progressNumber: s
+                });
+            });
+        };
     },
     render() {
         if (this.props.data) {
@@ -160,6 +182,11 @@ const Content = React.createClass({
                             {this.props.data.issuingDate ?
                                 <span className="company-time"> 有效期 {getTime(this.props.data.issuingDate)} 至 {getTime(this.props.data.issuingDate, 36)} </span> : ''
                             }
+                            <span className="company-number">当前进度: </span>
+                            <span className="progress-bar">
+                                <i style={{ width: this.state.progressNumber + '%' }}></i>
+                            </span>
+                            <span className="progress-num">{this.state.progressNumber}%</span>
                             <Button className="foster-return" type="primary" onClick={this.returnFoster}>返回高企培育列表</Button>
                         </div>
                         <div className="clearfix foster-component">

+ 21 - 0
js/component/manageCenter/servicesManage/highTech/fosterDesc/content.less

@@ -19,6 +19,22 @@
             .company-time {
                 color: #333;
             }
+            .progress-bar {
+                display: inline-block;
+                width: 30%;
+                height: 12px;
+                background: #eee;
+                border-radius: 6px;
+                position: relative;
+                >i {
+                    position: absolute;
+                    top: 0;
+                    left: 0;
+                    background: #58a3ff;
+                    height: 12px;
+                    border-radius: 6px;
+                }
+            }
         }
         .foster-component {
             margin-top: 10px;
@@ -57,6 +73,11 @@
     .content-title {
         font-size: 16px;
         color: #333;
+        margin-bottom: 10px;
+        .proportion {
+            font-size: 12px;
+            margin-left: 20px;
+        }
     }
     .user-search {
         input {

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

@@ -1,7 +1,7 @@
 import React from 'react';
-import { Icon, Form, Button, Input, Spin, Table, message, Select, Modal, InputNumber, Upload } from 'antd';
+import { Switch, Icon, Form, Button, Input, Spin, Table, message, Select, Modal, InputNumber, Upload } from 'antd';
 import './techProduct.less';
-import { beforeUploadFile, newDownloadFile } from '../../../../tools.js';
+import { beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
 import moment from 'moment';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
@@ -17,7 +17,7 @@ const FinanceDescFrom = Form.create()(React.createClass({
             crossDomain: false,
             url: globalConfig.context + "/api/admin/financeDetail",
             data: {
-                uid: uid != undefined ? uid : this.props.data.uid,
+                uid: uid != undefined ? uid : this.props.data.uid || this.props.uid,
                 year: year != undefined ? year : this.props.data.year
             }
         }).done((data) => {
@@ -56,7 +56,9 @@ const FinanceDescFrom = Form.create()(React.createClass({
                 <Select.Option value={i.toString()} key={i}>{i}</Select.Option>
             )
         };
-        this.loadData();
+        if (this.props.data.uid) {
+            this.loadData();
+        };
     },
     handleSubmit(e) {
         e.preventDefault();
@@ -106,9 +108,17 @@ const FinanceDescFrom = Form.create()(React.createClass({
     },
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
-            this.loadData(nextProps.data.id, nextProps.data.year);
+            if (nextProps.data.uid) {
+                this.loadData(nextProps.data.uid, nextProps.data.year);
+            };
             this.props.form.resetFields();
         };
+        if (this.props.visible && !nextProps.visible) {
+            this.state.managementCost = undefined;
+            this.state.researchCost = undefined;
+            this.state.grossProfit = undefined;
+            this.state.operatingProfit = undefined;
+        };
     },
     checkResearchCost(rule, value, callback) {
         const form = this.props.form;
@@ -123,8 +133,8 @@ const FinanceDescFrom = Form.create()(React.createClass({
         const { getFieldDecorator } = this.props.form;
         const theData = this.props.data;
         const formItemLayout = {
-            labelCol: { span: 10 },
-            wrapperCol: { span: 12 },
+            labelCol: { span: 8 },
+            wrapperCol: { span: 16 },
         };
         const _me = this;
         return (
@@ -423,6 +433,8 @@ const Finance = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     getInitialState() {
         return {
@@ -550,6 +562,16 @@ const Finance = React.createClass({
             <div className="user-content" >
                 <div className="content-title">
                     <span>财务报表信息</span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.finance == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.finance = 1 : this.state.proportion.finance = 0;
+                            saveProportion(this.state.proportion.id, 'finance', this.state.proportion.finance);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="user-search">
                     <p>

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

@@ -1,7 +1,7 @@
 import React from 'react';
-import { Icon, Form, Button, Input, Spin, Table, message, Modal, Upload, DatePicker } from 'antd';
+import { Switch, Icon, Form, Button, Input, Spin, Table, message, Modal, Upload, DatePicker } from 'antd';
 import './techProduct.less';
-import { beforeUploadFile, newDownloadFile } from '../../../../tools.js';
+import { beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
 import moment from 'moment';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
@@ -115,7 +115,7 @@ const HonorListDescFrom = Form.create()(React.createClass({
                     <Upload
                         name="ratepay"
                         action={globalConfig.context + "/api/admin/uploadHonor"}
-                        data={{ 'sign': 'honor','uid': this.props.uid }}
+                        data={{ 'sign': 'honor', 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
                         showUploadList={false}
                         onChange={(info) => {
@@ -236,7 +236,7 @@ const HonorList = React.createClass({
                     enclosureDownloadFileName: thisdata.enclosureDownloadFileName,
                     enclosure: [thisdata.id, thisdata.enclosureDownloadFileName],
                     //issuingTimeFormattedDate: thisdata.issuingTimeFormattedDate,
-                    year:thisdata.year,
+                    year: thisdata.year,
                     issuingMechanism: thisdata.issuingMechanism
                 });
             };
@@ -251,6 +251,8 @@ const HonorList = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     getInitialState() {
         return {
@@ -362,6 +364,16 @@ const HonorList = React.createClass({
             <div className="user-content" >
                 <div className="content-title">
                     <span>企业荣誉及其他证明材料</span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.honorDatum == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.honorDatum = 1 : this.state.proportion.honorDatum = 0;
+                            saveProportion(this.state.proportion.id, 'honorDatum', this.state.proportion.honorDatum);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="user-search">
                     <p>

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

@@ -1,6 +1,6 @@
 import React from 'react';
-import { Input, InputNumber, Button, Form, Icon, Spin, message, Table, Modal, Upload, Select } from 'antd';
-import { beforeUploadFile, newDownloadFile } from '../../../../tools.js';
+import { Switch, Input, InputNumber, Button, Form, Icon, Spin, message, Table, Modal, Upload, Select } from 'antd';
+import { beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
 import './hrSituation.less'
 import ajax from 'jquery/src/ajax/xhr.js'
 import $ from 'jquery/src/ajax';
@@ -452,7 +452,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                     <Upload
                         name="ratepay"
                         action={globalConfig.context + "/api/admin/uploadRoster"}
-                        data={{ 'sign': 'roster','year': (this.state.year || theData.year),'uid': this.props.uid }}
+                        data={{ 'sign': 'roster', 'year': (this.state.year || theData.year), 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
                         showUploadList={false}
                         onChange={(info) => {
@@ -480,7 +480,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                     <Upload
                         name="ratepay"
                         action={globalConfig.context + "/api/admin/uploadSocialSecurity"}
-                        data={{ 'sign': 'social_security','year': (this.state.year || theData.year),'uid': this.props.uid }}
+                        data={{ 'sign': 'social_security', 'year': (this.state.year || theData.year), 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
                         showUploadList={false}
                         onChange={(info) => {
@@ -650,6 +650,8 @@ const HrSituation = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     getInitialState() {
         return {
@@ -770,6 +772,16 @@ const HrSituation = React.createClass({
             <div className="user-content" >
                 <div className="content-title">
                     <span>人力资源状况</span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.humanResource == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.humanResource = 1 : this.state.proportion.humanResource = 0;
+                            saveProportion(this.state.proportion.id, 'humanResource', this.state.proportion.humanResource);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="user-search">
                     <p>

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

@@ -2,7 +2,8 @@ import React from 'react';
 import './ablt.less';
 import ajax from 'jquery/src/ajax/xhr.js'
 import $ from 'jquery/src/ajax';
-import { Input, Button, Spin, message } from 'antd';
+import { Switch, Input, Button, Spin, message } from 'antd';
+import { getProportion, saveProportion } from '../../../../tools.js';
 
 const Base = React.createClass({
     getInitialState() {
@@ -11,7 +12,7 @@ const Base = React.createClass({
             tags: []
         };
     },
-    componentWillMount() {
+    loadData() {
         this.setState({
             loading: true
         });
@@ -25,7 +26,7 @@ const Base = React.createClass({
             success: function (data) {
                 if (data.data) {
                     this.setState({
-                        id:data.data.id,
+                        id: data.data.id,
                         intellectRight: data.data.intellectRight,
                         scienceAchievement: data.data.scienceAchievement,
                         researchInnovation: data.data.researchInnovation,
@@ -40,6 +41,11 @@ const Base = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
+    },
+    componentWillMount() {
+        this.loadData()
     },
     submit() {
         let theTags = this.state.tags.join(",");
@@ -76,7 +82,19 @@ const Base = React.createClass({
             <Spin spinning={this.state.loading} className='spin-box'>
                 <div className="set-ablt">
                     <div className="acc-detail clearfix">
-                        <p className="acc-title">能力标签</p>
+                        <p className="acc-title">
+                            <span>能力标签</span>
+                            <span className="proportion"> 是否已完成:</span>
+                            <Switch
+                                checked={this.state.proportion && this.state.proportion.ability == 1 ? true : false}
+                                checkedChildren={'已完成'}
+                                unCheckedChildren={'未完成'}
+                                onChange={(e) => {
+                                    e ? this.state.proportion.ability = 1 : this.state.proportion.ability = 0;
+                                    saveProportion(this.state.proportion.id, 'ability', this.state.proportion.ability);
+                                    this.setState({ proportion: this.state.proportion });
+                                }} />
+                        </p>
                         <div className="acc-area">
                             <p>知识产权对企业竞争力的作用 (限400字) </p>
                             <Input type="textarea" rows={6}

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

@@ -1,7 +1,7 @@
 import React from 'react';
-import { Icon, Button, Input, Spin, Table, message, Select, Modal, DatePicker } from 'antd';
+import { Switch, Icon, Button, Input, Spin, Table, message, Select, Modal, DatePicker } from 'antd';
 import { technicalSourceList } from '../../../../dataDic.js';
-import { getCatagory, getIntellectualObtainWay } from '../../../../tools.js';
+import { getCatagory, getIntellectualObtainWay, getProportion, saveProportion } from '../../../../tools.js';
 import moment from 'moment';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
@@ -47,7 +47,7 @@ const Intellectual = React.createClass({
                     authorizationDateFormattedDate: thisdata.authorizationDateFormattedDate,
                     propertyRightUrl: thisdata.propertyRightUrl,
                     propertyRightDownloadFileName: thisdata.propertyRightDownloadFileName,
-                    type:thisdata.type
+                    type: thisdata.type
                 });
             };
             this.state.pagination.current = data.data.pageNo;
@@ -61,6 +61,8 @@ const Intellectual = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     getInitialState() {
         return {
@@ -185,6 +187,16 @@ const Intellectual = React.createClass({
             <div className="user-content" >
                 <div className="content-title">
                     <span>知识产权列表</span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.intellectualProperty == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.intellectualProperty = 1 : this.state.proportion.intellectualProperty = 0;
+                            saveProportion(this.state.proportion.id, 'intellectualProperty', this.state.proportion.intellectualProperty);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="user-search">
                     <span>开始日期:</span>

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

@@ -1,7 +1,7 @@
 import React from 'react';
-import { Icon, Form, Button, Input, Spin, Table, message, Modal, Upload, DatePicker } from 'antd';
+import { Icon, Form, Button, Input, Spin, Table, message, Modal, Upload, DatePicker, Switch } from 'antd';
 import './techProduct.less';
-import { beforeUploadFile, newDownloadFile } from '../../../../tools.js';
+import { beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
 import moment from 'moment';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
@@ -231,6 +231,8 @@ const CenterList = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     loadData(pageNo) {
         this.state.data = [];
@@ -429,7 +431,17 @@ const CenterList = React.createClass({
         return (
             <div className="user-content" >
                 <div className="content-title">
-                    <span>研发部门</span>
+                    <span>研发部门 </span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.institution == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.institution = 1 : this.state.proportion.institution = 0;
+                            saveProportion(this.state.proportion.id, 'institution', this.state.proportion.institution);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="clearfix">
                     <div className="orgTech-item">

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

@@ -1,7 +1,7 @@
 import React from 'react';
-import { Icon, Form, Button, Input, Spin, Table, message, Select, Modal, InputNumber, Upload } from 'antd';
+import { Switch, Icon, Form, Button, Input, Spin, Table, message, Select, Modal, InputNumber, Upload } from 'antd';
 import './techProduct.less';
-import { beforeUploadFile, newDownloadFile } from '../../../../tools.js';
+import { beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 
@@ -53,7 +53,9 @@ const RatepayDescFrom = Form.create()(React.createClass({
                 <Select.Option value={i.toString()} key={i}>{i}</Select.Option>
             )
         };
-        this.loadData();
+        if (this.props.data.uid) {
+            this.loadData();
+        };
     },
     handleSubmit(e) {
         e.preventDefault();
@@ -100,9 +102,17 @@ const RatepayDescFrom = Form.create()(React.createClass({
     },
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
-            this.loadData(nextProps.data.id, nextProps.data.year);
+            if (nextProps.data.uid) {
+                this.loadData(nextProps.data.uid, nextProps.data.year);
+            };
             this.props.form.resetFields();
         };
+        if (this.props.visible && !nextProps.visible) {
+            this.state.managementCost = undefined;
+            this.state.researchCost = undefined;
+            this.state.grossProfit = undefined;
+            this.state.operatingProfit = undefined;
+        };
     },
     render() {
         const FormItem = Form.Item;
@@ -146,7 +156,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                         })(
                             <InputNumber />
                             )}
-                        {this.state.managementCost && this.state.managementCost != this.props.form.getFieldValue('managementCost') ? <span style={{color:'#f50'}}>与财务报表不一致!</span> : <span></span>}
+                        {this.state.managementCost && this.state.managementCost != this.props.form.getFieldValue('managementCost') ? <span style={{ color: '#f50' }}>与财务报表不一致!</span> : <span></span>}
                     </FormItem>
                     <FormItem className="half-item"
                         {...formItemLayout}
@@ -158,7 +168,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                         })(
                             <InputNumber />
                             )}
-                        {this.state.operatingProfit && this.state.operatingProfit != this.props.form.getFieldValue('operatingProfit') ? <span style={{color:'#f50'}}>与财务报表不一致!</span> : <span></span>}
+                        {this.state.operatingProfit && this.state.operatingProfit != this.props.form.getFieldValue('operatingProfit') ? <span style={{ color: '#f50' }}>与财务报表不一致!</span> : <span></span>}
                     </FormItem>
                     <FormItem className="half-item"
                         {...formItemLayout}
@@ -214,7 +224,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                         })(
                             <InputNumber />
                             )}
-                        {this.state.grossProfit && this.state.grossProfit != this.props.form.getFieldValue('grossProfit') ? <span style={{color:'#f50'}}>与财务报表不一致!</span> : <span></span>}
+                        {this.state.grossProfit && this.state.grossProfit != this.props.form.getFieldValue('grossProfit') ? <span style={{ color: '#f50' }}>与财务报表不一致!</span> : <span></span>}
                     </FormItem>
                     <FormItem className="half-item"
                         {...formItemLayout}
@@ -226,7 +236,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                         })(
                             <InputNumber />
                             )}
-                        {this.state.researchCost && this.state.researchCost != this.props.form.getFieldValue('researchCost') ? <span style={{color:'#f50'}}>与财务报表不一致!</span> : <span></span>}
+                        {this.state.researchCost && this.state.researchCost != this.props.form.getFieldValue('researchCost') ? <span style={{ color: '#f50' }}>与财务报表不一致!</span> : <span></span>}
                     </FormItem>
                 </div>
                 <div className="hrSituation-roster">
@@ -372,6 +382,8 @@ const Ratepay = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     getInitialState() {
         return {
@@ -491,6 +503,16 @@ const Ratepay = React.createClass({
             <div className="user-content" >
                 <div className="content-title">
                     <span>企业所得税纳税申信息</span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.ratepay == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.ratepay = 1 : this.state.proportion.ratepay = 0;
+                            saveProportion(this.state.proportion.id, 'ratepay', this.state.proportion.ratepay);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="user-search">
                     <p>

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

@@ -1,6 +1,6 @@
 import React from 'react';
-import { Icon, Button, Input, Spin, Table, message, Radio, Select, Modal, Upload } from 'antd';
-import { beforeUploadFile, newDownloadFile } from '../../../../tools.js';
+import { Switch, Icon, Button, Input, Spin, Table, message, Radio, Select, Modal, Upload } from 'antd';
+import { beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 
@@ -28,7 +28,7 @@ const StandardDesc = React.createClass({
                 year: this.state.year,
                 standardLevel: this.state.standardLevel,
                 participateWay: this.state.participateWay,
-                enclosureUrl:this.state.enclosureUrl
+                enclosureUrl: this.state.enclosureUrl
             },
             success: function (data) {
                 if (data.data) {
@@ -38,7 +38,7 @@ const StandardDesc = React.createClass({
                         standardNumber: data.data.standardNumber,
                         standardLevel: data.data.standardLevel,
                         participateWay: data.data.participateWay,
-                        enclosureUrl:this.state.enclosureUrl
+                        enclosureUrl: this.state.enclosureUrl
                     });
                 } else if (data.error.length && data.error[0].message) {
                     message.warning(data.error[0].message);
@@ -199,7 +199,7 @@ const Standard = React.createClass({
                         standardName: thisdata.standardName,
                         standardNumber: thisdata.standardNumber,
                         year: thisdata.year,
-                        enclosureUrl:thisdata.enclosureUrl,
+                        enclosureUrl: thisdata.enclosureUrl,
                         standardLevel: thisdata.standardLevel,
                         participateWay: thisdata.participateWay,
                         createTime: thisdata.createTime,
@@ -218,6 +218,8 @@ const Standard = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     getInitialState() {
         return {
@@ -354,6 +356,16 @@ const Standard = React.createClass({
             <div className="user-content" >
                 <div className="content-title">
                     <span>标准制定情况汇总</span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.standard == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.standard = 1 : this.state.proportion.standard = 0;
+                            saveProportion(this.state.proportion.id, 'standard', this.state.proportion.standard);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="user-search">
                     <Input placeholder="标准名称" value={this.state.standardName}

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

@@ -1,8 +1,8 @@
 import React from 'react';
-import { Icon, Upload, Form, Button, Radio, Input, Spin, Table, message, Select, Modal, Cascader, Transfer, InputNumber } from 'antd';
+import { Switch, Icon, Upload, Form, Button, Radio, Input, Spin, Table, message, Select, Modal, Cascader, Transfer, InputNumber } from 'antd';
 import { technicalSourceList } from '../../../../dataDic.js';
 import { techFieldList } from '../../../../DicTechFieldList.js';
-import { getTechField, getTechnicalSource, beforeUploadFile, newDownloadFile } from '../../../../tools.js';
+import { getTechField, getTechnicalSource, beforeUploadFile, newDownloadFile, getProportion, saveProportion } from '../../../../tools.js';
 import moment from 'moment';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
@@ -413,6 +413,8 @@ const TechProduct = React.createClass({
                 loading: false
             });
         }.bind(this));
+        let _me = this;
+        getProportion(this.props.data.uid, function (data) { _me.setState({ proportion: data }); });
     },
     getInitialState() {
         return {
@@ -535,6 +537,16 @@ const TechProduct = React.createClass({
             <div className="user-content" >
                 <div className="content-title">
                     <span>高新技术产品(服务)情况表</span>
+                    <span className="proportion"> 是否已完成:</span>
+                    <Switch
+                        checked={this.state.proportion && this.state.proportion.techProject == 1 ? true : false}
+                        checkedChildren={'已完成'}
+                        unCheckedChildren={'未完成'}
+                        onChange={(e) => {
+                            e ? this.state.proportion.techProject = 1 : this.state.proportion.techProject = 0;
+                            saveProportion(this.state.proportion.id, 'techProject', this.state.proportion.techProject);
+                            this.setState({ proportion: this.state.proportion });
+                        }} />
                 </div>
                 <div className="user-search">
                     <p>

+ 1 - 2
js/component/manageCenter/servicesManage/patent/comPatentDesc.jsx

@@ -302,7 +302,6 @@ const PatentDesc = React.createClass({
         const theData = this.state.data;
 
         if (this.state.data) {
-            let companyAddress = theData.locationProvince || theData.locationCity || theData.locationArea ? theData.locationProvince + '/' + theData.locationCity + '/' + theData.locationArea : '';
             return (
                 <div className="patent-desc">
                     <Spin spinning={this.state.loading} className='spin-box'>
@@ -319,7 +318,7 @@ const PatentDesc = React.createClass({
                                 <p className="widthHalf"><span>公司组织机构代码:</span>{theData.orgCode}</p>
                             </div>
                             <div>
-                                <p className="widthHalf"><span>公司地址:</span>{companyAddress}</p>
+                                <p className="widthHalf"><span>公司地址:</span>{theData.postalAddress}</p>
                                 <div className="widthHalf">
                                     <span>联系人:</span>
                                     <Select placeholder="选择联系人"

+ 1 - 1
js/component/manageCenter/servicesManage/technology/applyChange.jsx

@@ -294,7 +294,7 @@ const ApplyChangeFrom = Form.create()(React.createClass({
                         </div>
                         <div className="half-item">
                             <span className="item-title">公司地址: </span>
-                            <span>{theData.province + ' ' + theData.city + ' ' + theData.area}</span>
+                            <span>{theData.postalAddress}</span>
                         </div>
                         <div className="half-item">
                             <FormItem

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

@@ -54,6 +54,13 @@ const OrgCertify = Form.create()(React.createClass({
                     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,
 
@@ -124,6 +131,13 @@ const OrgCertify = Form.create()(React.createClass({
                         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,
@@ -246,6 +260,66 @@ const OrgCertify = Form.create()(React.createClass({
                 </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', {

+ 41 - 0
js/component/tools.js

@@ -485,5 +485,46 @@ module.exports = {
             }
         });
         return theOption;
+    },
+    //高企培育资料完成情况(比重)
+    getProportion(uid,callback){
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + '/api/admin/proportion',
+            data:{ "uid": uid },
+            success: function (data) {
+                if (!data.data) {
+                    if ( data.error && data.error.length ) {
+                        message.warning(data.error[0].message);
+                    };
+                    data.data = {}
+                    callback(data.data);
+                };
+                callback(data.data);
+            }
+        });
+    },
+    saveProportion(id,sign,status){
+        $.ajax({
+            method: "post",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + '/api/admin/confirmProportion',
+            data:{ 
+                "id": id,
+                "sign":sign,
+                "status":status
+            },
+            success: function (data) {
+                if (!data.data) {
+                    if ( data.error && data.error.length ) {
+                        message.warning(data.error[0].message);
+                    };
+                    return;
+                };
+            }
+        });
     }
 }

+ 1 - 1
package.json

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