ソースを参照

Accept Merge Request #30 v1.0.25 merge : (master -> test)

Merge Request: v1.0.25 merge
Created By: @seirios
Accepted By: @seirios
URL: https://coding.net/t/aft/p/AFT-WEB/git/merge/30
seirios 8 年 前
コミット
3cd58593cb
共有43 個のファイルを変更した422 個の追加166 個の削除を含む
  1. 4 2
      js/component/account/services/achievement.jsx
  2. 4 2
      js/component/account/services/activity.jsx
  3. 6 3
      js/component/account/services/activityCostList.jsx
  4. 8 4
      js/component/account/services/copyright/comPatentChange.jsx
  5. 4 4
      js/component/account/services/finance.jsx
  6. 4 2
      js/component/account/services/honorList.jsx
  7. 4 2
      js/component/account/services/intellectualDesc.jsx
  8. 18 6
      js/component/account/services/orgTechCenter.jsx
  9. 5 1
      js/component/account/services/patent.jsx
  10. 3 2
      js/component/account/services/patentAdd.jsx
  11. 4 4
      js/component/account/services/ratepay.jsx
  12. 16 12
      js/component/account/services/standard.jsx
  13. 4 2
      js/component/account/services/techProduct.jsx
  14. 4 2
      js/component/account/services/technologyChange.jsx
  15. 8 4
      js/component/account/set/hrSituation.jsx
  16. 11 6
      js/component/manageCenter/servicesManage/copyright/comPatentChange.jsx
  17. 4 2
      js/component/manageCenter/servicesManage/highTech/fosterDesc/achievement.jsx
  18. 4 2
      js/component/manageCenter/servicesManage/highTech/fosterDesc/activity.jsx
  19. 4 2
      js/component/manageCenter/servicesManage/highTech/fosterDesc/activityCostList.jsx
  20. 4 4
      js/component/manageCenter/servicesManage/highTech/fosterDesc/finance.jsx
  21. 4 2
      js/component/manageCenter/servicesManage/highTech/fosterDesc/honorList.jsx
  22. 8 4
      js/component/manageCenter/servicesManage/highTech/fosterDesc/hrSituation.jsx
  23. 4 2
      js/component/manageCenter/servicesManage/highTech/fosterDesc/intellectualDesc.jsx
  24. 13 4
      js/component/manageCenter/servicesManage/highTech/fosterDesc/orgTechCenter.jsx
  25. 4 4
      js/component/manageCenter/servicesManage/highTech/fosterDesc/ratepay.jsx
  26. 14 10
      js/component/manageCenter/servicesManage/highTech/fosterDesc/standard.jsx
  27. 4 2
      js/component/manageCenter/servicesManage/highTech/fosterDesc/techProduct.jsx
  28. 1 1
      js/component/manageCenter/servicesManage/highTech/highTechApply.jsx
  29. 4 0
      js/component/manageCenter/servicesManage/highTech/highTechFoster.less
  30. 2 0
      js/component/manageCenter/servicesManage/highTech/highTechInfo.jsx
  31. 13 2
      js/component/manageCenter/servicesManage/patent/comPatentAdd.jsx
  32. 43 10
      js/component/manageCenter/servicesManage/patent/comPatentDesc.jsx
  33. 11 6
      js/component/manageCenter/servicesManage/patent/comprehensive.jsx
  34. 4 1
      js/component/manageCenter/servicesManage/technology/applyChange.jsx
  35. 19 16
      js/component/manageCenter/servicesManage/technology/websiteManage.jsx
  36. 20 8
      js/component/manageCenter/topTab.jsx
  37. 12 1
      js/component/manageCenter/userManage/customerList.jsx
  38. 45 9
      js/component/manageCenter/userManage/orgDesc.jsx
  39. 12 1
      js/component/manageCenter/userManage/orgList.jsx
  40. 45 9
      js/component/manageCenter/userManage/userDesc.jsx
  41. 12 1
      js/component/manageCenter/userManage/userList.jsx
  42. 4 4
      js/component/tools.js
  43. 1 1
      package.json

+ 4 - 2
js/component/account/services/achievement.jsx

@@ -85,6 +85,7 @@ const AchievementDescFrom = Form.create()(React.createClass({
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
             this.props.form.resetFields();
+            this.state.fileList = [];
         };
     },
     render() {
@@ -163,7 +164,7 @@ const AchievementDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/cognizance/uploadAchievement"}
                         data={{ 'sign': 'achievement' }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -178,7 +179,8 @@ const AchievementDescFrom = Form.create()(React.createClass({
                                 this.state.enclosureUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传科技成果附件 </Button>

+ 4 - 2
js/component/account/services/activity.jsx

@@ -97,6 +97,7 @@ const ActivityForm = Form.create()(React.createClass({
         if (!this.props.visible && nextProps.visible) {
             this.state.mockData = nextProps.data.mockData;
             this.props.form.resetFields();
+            this.state.fileList = [];
             if (nextProps.data.id) {
                 this.loadData(nextProps.data.id);
             } else {
@@ -313,7 +314,7 @@ const ActivityForm = Form.create()(React.createClass({
                                 action={globalConfig.context + "/api/admin/uploadProof"}
                                 data={{ 'sign': 'proof', 'uid': this.props.uid }}
                                 beforeUpload={beforeUploadFile}
-                                showUploadList={false}
+                                fileList={this.state.fileList}
                                 onChange={(info) => {
                                     if (info.file.status !== 'uploading') {
                                         console.log(info.file, info.fileList);
@@ -328,7 +329,8 @@ const ActivityForm = Form.create()(React.createClass({
                                         this.state.proofUrl = info.file.response.data;
                                     } else if (info.file.status === 'error') {
                                         message.error(`${info.file.name} 文件上传失败。`);
-                                    }
+                                    };
+                                    this.setState({ fileList: info.fileList.slice(-1) });
                                 }}
                             >
                                 <Button><Icon type="upload" /> 上传立项证明材料 </Button>

+ 6 - 3
js/component/account/services/activityCostList.jsx

@@ -33,12 +33,14 @@ const ActivityDescFrom = Form.create()(React.createClass({
     componentWillReceiveProps(nextProps) {
         this.allCostCount();
         let _me = this;
-        if (!this.props.visible && nextProps.visible && nextProps.activityNumberList)
+        if (!this.props.visible && nextProps.visible && nextProps.activityNumberList) {
             nextProps.activityNumberList.map(function (item) {
                 _me.state.activityNumberOption.push(
                     <Select.Option value={item.aid} key={item.uid}>{item.activityNumber}</Select.Option>
                 )
             });
+            this.state.fileList = [];
+        };
     },
     handleSubmit(e) {
         e.preventDefault();
@@ -273,7 +275,7 @@ const ActivityDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/cognizance/uploadActivityCost"}
                         data={{ 'sign': 'activity_cost_account' }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -288,7 +290,8 @@ const ActivityDescFrom = Form.create()(React.createClass({
                                 this.state.accountUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传研发费用台账 </Button>

+ 8 - 4
js/component/account/services/copyright/comPatentChange.jsx

@@ -154,6 +154,8 @@ const CopyrightDescForm = Form.create()(React.createClass({
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
             this.loadData(nextProps.data.id);
+            this.state.fileList_copyright_apply = [];
+            this.state.fileList_copyright_auth = [];
         };
     },
     handleSubmit(e) {
@@ -311,7 +313,7 @@ const CopyrightDescForm = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/copyright/upload"}
                         data={{ 'sign': 'copyright_apply', id: this.props.data.id }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList_copyright_apply}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -326,7 +328,8 @@ const CopyrightDescForm = Form.create()(React.createClass({
                                 this.state.copyrightApplyUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList_copyright_apply: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传软著申请书 </Button>
@@ -339,7 +342,7 @@ const CopyrightDescForm = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/copyright/upload"}
                         data={{ 'sign': 'copyright_auth', id: this.props.data.id }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList_copyright_auth}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -354,7 +357,8 @@ const CopyrightDescForm = Form.create()(React.createClass({
                                 this.state.copyrightAuthUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList_copyright_auth: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传软著证书 </Button>

+ 4 - 4
js/component/account/services/finance.jsx

@@ -108,12 +108,11 @@ const FinanceDescFrom = Form.create()(React.createClass({
                 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;
+            this.state.fileList = [];
         };
     },
     checkResearchCost(rule, value, callback) {
@@ -291,7 +290,7 @@ const FinanceDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/cognizance/uploadFinance"}
                         data={{ 'sign': 'finance', year: this.state.year || theData.year }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -306,7 +305,8 @@ const FinanceDescFrom = Form.create()(React.createClass({
                                 this.state.financeUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传企业财务报表 </Button>

+ 4 - 2
js/component/account/services/honorList.jsx

@@ -47,6 +47,7 @@ const HonorListDescFrom = Form.create()(React.createClass({
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
             this.props.form.resetFields();
+            this.state.fileList = [];
         };
     },
     componentWillMount() {
@@ -116,7 +117,7 @@ const HonorListDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/cognizance/uploadHonor"}
                         data={{ 'sign': 'honor' }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -131,7 +132,8 @@ const HonorListDescFrom = Form.create()(React.createClass({
                                 this.state.enclosureUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 企业相关资质证书 </Button>

+ 4 - 2
js/component/account/services/intellectualDesc.jsx

@@ -118,6 +118,7 @@ const IntellectualDescFrom = Form.create()(React.createClass({
         if (!this.props.visible && nextProps.visible) {
             this.loadData(nextProps.data.id, nextProps.data.type);
             this.props.form.resetFields();
+            this.state.fileList = [];
         };
     },
     render() {
@@ -221,7 +222,7 @@ const IntellectualDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/cognizance/uploadPropertyRight"}
                         data={{ 'sign': 'property_right' }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -236,7 +237,8 @@ const IntellectualDescFrom = Form.create()(React.createClass({
                                 this.state.propertyRightUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传知识产权证书 </Button>

+ 18 - 6
js/component/account/services/orgTechCenter.jsx

@@ -45,6 +45,12 @@ const CenterListDescFrom = Form.create()(React.createClass({
             }
         });
     },
+    componentWillReceiveProps(nextProps) {
+        if (!this.props.visible && nextProps.visible) {
+            this.props.form.resetFields();
+            this.state.fileList = [];
+        };
+    },
     render() {
         const FormItem = Form.Item;
         const { getFieldDecorator } = this.props.form;
@@ -109,7 +115,7 @@ const CenterListDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/cognizance/uploadProtocol"}
                         data={{ 'sign': 'protocol' }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList_protocol}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -124,7 +130,8 @@ const CenterListDescFrom = Form.create()(React.createClass({
                                 this.state.protocolUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList_protocol: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传研发费用台账 </Button>
@@ -181,8 +188,12 @@ const CenterListDesc = React.createClass({
                         width='800px'
                         footer=''
                     >
-                        <CenterListDescFrom data={this.props.data}
-                            spinState={this.spinChange} closeModal={this.handleCancel} clickOk={this.handleOk} />
+                        <CenterListDescFrom
+                            visible={this.state.visible}
+                            data={this.props.data}
+                            spinState={this.spinChange}
+                            closeModal={this.handleCancel}
+                            clickOk={this.handleOk} />
                     </Modal>
                 </Spin>
             </div>
@@ -460,7 +471,7 @@ const CenterList = React.createClass({
                             action={globalConfig.context + "/api/user/cognizance/uploadInstitution"}
                             data={{ 'sign': 'institution' }}
                             beforeUpload={beforeUploadFile}
-                            showUploadList={false}
+                            fileList={this.state.fileList_institution}
                             onChange={(info) => {
                                 if (info.file.status !== 'uploading') {
                                     console.log(info.file, info.fileList);
@@ -475,7 +486,8 @@ const CenterList = React.createClass({
                                     this.state.systemUrl = info.file.response.data;
                                 } else if (info.file.status === 'error') {
                                     message.error(`${info.file.name} 文件上传失败。`);
-                                }
+                                };
+                                this.setState({ fileList_institution: info.fileList.slice(-1) });
                             }}
                         >
                             <Button disabled={this.state.ButtonDisabled}><Icon type="upload" /> 上传研发部门制度 </Button>

+ 5 - 1
js/component/account/services/patent.jsx

@@ -43,7 +43,7 @@ const Patent = React.createClass({
                         number: thisdata.serialNumber,
                         patentNum: thisdata.patentNumber,
                         patentName: thisdata.patentName,
-                        patentType: getPatentType(thisdata.patentCatagory),
+                        patentCatagory: thisdata.patentCatagory ? getPatentType(thisdata.patentCatagory) : '',
                         patentState: getPatentState(thisdata.patentState),
                         patentField: thisdata.patentField,
                         patentDes: thisdata.patentDes,
@@ -121,6 +121,10 @@ const Patent = React.createClass({
                     dataIndex: 'patentName',
                     key: 'patentName',
                 }, {
+                    title: '专利类型',
+                    dataIndex: 'patentCatagory',
+                    key: 'patentCatagory',
+                }, {
                     title: '专利状态',
                     dataIndex: 'patentState',
                     key: 'patentState',

+ 3 - 2
js/component/account/services/patentAdd.jsx

@@ -154,7 +154,7 @@ const PatentAddFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/patent/upload"}
                         data={{ 'sign': 'patent_prory_statement' }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -169,7 +169,8 @@ const PatentAddFrom = Form.create()(React.createClass({
                                 this.state.patentProryStatementUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传专利代理委托书 </Button>

+ 4 - 4
js/component/account/services/ratepay.jsx

@@ -104,8 +104,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                 this.loadData(nextProps.data.year);
             };
             this.props.form.resetFields();
-        };
-        if (this.props.visible && !nextProps.visible) {
+            this.state.fileList = [];
             this.state.managementCost = undefined;
             this.state.researchCost = undefined;
             this.state.grossProfit = undefined;
@@ -243,7 +242,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/cognizance/uploadRatepay"}
                         data={{ 'sign': 'ratepay', year: this.state.year || theData.year }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -258,7 +257,8 @@ const RatepayDescFrom = Form.create()(React.createClass({
                                 this.state.taxReturnUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传企业所得税纳税申报表 </Button>

+ 16 - 12
js/component/account/services/standard.jsx

@@ -74,15 +74,18 @@ const StandardDesc = React.createClass({
         this.state.yearOption = theOption;
     },
     componentWillReceiveProps(nextProps) {
-        this.state.visible = nextProps.showDesc;
-        if (nextProps.data) {
-            this.state.standardName = nextProps.data.standardName;
-            this.state.standardNumber = nextProps.data.standardNumber;
-            this.state.year = nextProps.data.year;
-            this.state.standardLevel = nextProps.data.standardLevel;
-            this.state.participateWay = nextProps.data.participateWay;
-            this.state.enclosureUrl = nextProps.data.enclosureUrl;
+        if (!this.state.visible && nextProps.showDesc) {
+            if (nextProps.data) {
+                this.state.standardName = nextProps.data.standardName;
+                this.state.standardNumber = nextProps.data.standardNumber;
+                this.state.year = nextProps.data.year;
+                this.state.standardLevel = nextProps.data.standardLevel;
+                this.state.participateWay = nextProps.data.participateWay;
+                this.state.enclosureUrl = nextProps.data.enclosureUrl;
+            };
+            this.state.fileList = [];
         };
+        this.state.visible = nextProps.showDesc;
     },
     render() {
         if (this.props.data) {
@@ -110,7 +113,7 @@ const StandardDesc = React.createClass({
                                 placeholder="请选择年份"
                                 value={this.state.year}
                                 onChange={(e) => { this.setState({ year: e }); }}
-                                style={{ width: 80 }}>
+                                style={{ width: 120 }}>
                                 {this.state.yearOption}
                             </Select>
                         </div>
@@ -134,7 +137,7 @@ const StandardDesc = React.createClass({
                                 action={globalConfig.context + "/api/user/cognizance/uploadStandard"}
                                 data={{ 'sign': 'standard', 'uid': this.props.uid }}
                                 beforeUpload={beforeUploadFile}
-                                showUploadList={false}
+                                fileList={this.state.fileList}
                                 onChange={(info) => {
                                     if (info.file.status !== 'uploading') {
                                         console.log(info.file, info.fileList);
@@ -149,7 +152,8 @@ const StandardDesc = React.createClass({
                                         this.state.enclosureUrl = info.file.response.data;
                                     } else if (info.file.status === 'error') {
                                         message.error(`${info.file.name} 文件上传失败。`);
-                                    }
+                                    };
+                                    this.setState({ fileList: info.fileList.slice(-1) });
                                 }}
                             >
                                 <Button><Icon type="upload" /> 上传标准制定附件 </Button>
@@ -251,7 +255,7 @@ const Standard = React.createClass({
                     title: '标准编号',
                     dataIndex: 'standardNumber',
                     key: 'standardNumber'
-                },{
+                }, {
                     title: '制定时间',
                     dataIndex: 'year',
                     key: 'year'

+ 4 - 2
js/component/account/services/techProduct.jsx

@@ -30,6 +30,7 @@ const TechProductDescFrom = Form.create()(React.createClass({
         if (!this.props.visible && nextProps.visible && nextProps.data) {
             this.state.targetKeys = nextProps.data.intellectualPropertyNumber || [];
             this.props.form.resetFields();
+            this.state.fileList = [];
         };
     },
     handleSubmit(e) {
@@ -233,7 +234,7 @@ const TechProductDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/cognizance/uploadTecProduct"}
                         data={{ 'sign': 'tech_product' }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -248,7 +249,8 @@ const TechProductDescFrom = Form.create()(React.createClass({
                                 this.state.accountUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传高新技术产品台帐 </Button>

+ 4 - 2
js/component/account/services/technologyChange.jsx

@@ -151,6 +151,7 @@ const ApplyChangeFrom = Form.create()(React.createClass({
         if (!this.props.visible && nextProps.visible) {
             this.loadData(nextProps.data.pid);
             this.getStateData(nextProps.data.pid);
+            this.state.fileList = [];
         };
     },
     subsidyCheck(e) {
@@ -299,7 +300,7 @@ const ApplyChangeFrom = Form.create()(React.createClass({
                             action={globalConfig.context + "/api/user/techproject/upload"}
                             data={{ 'id': this.props.data.pid, 'sign': 'tech_project' }}
                             beforeUpload={beforeUploadFile}
-                            showUploadList={false}
+                            fileList={this.state.fileList}
                             onChange={(info) => {
                                 if (info.file.status !== 'uploading') {
                                     console.log(info.file, info.fileList);
@@ -314,7 +315,8 @@ const ApplyChangeFrom = Form.create()(React.createClass({
                                     this.state.approvalUrl = info.file.response.data;
                                 } else if (info.file.status === 'error') {
                                     message.error(`${info.file.name} 文件上传失败。`);
-                                }
+                                };
+                                this.setState({ fileList: info.fileList.slice(-1) });
                             }}
                         >
                             <Button><Icon type="upload" /> 项目材料上传 </Button>

+ 8 - 4
js/component/account/set/hrSituation.jsx

@@ -109,6 +109,8 @@ const HrSituationDescFrom = Form.create()(React.createClass({
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
             this.props.form.resetFields();
+            this.state.fileList_roster = [];
+            this.state.fileList_social_security = [];
         };
     },
     render() {
@@ -453,7 +455,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/cognizance/uploadRoster"}
                         data={{ sign: 'roster', year: this.state.year || theData.year }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList_roster}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -468,7 +470,8 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                                 this.state.rosterUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList_roster: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传花名册 </Button>
@@ -481,7 +484,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/user/cognizance/uploadSocialSecurity"}
                         data={{ 'sign': 'social_security', year: this.state.year || theData.year }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList_social_security}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -496,7 +499,8 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                                 this.state.socialSecurityUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList_social_security: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传社保情况 </Button>

+ 11 - 6
js/component/manageCenter/servicesManage/copyright/comPatentChange.jsx

@@ -3,6 +3,7 @@ import { Icon, Modal, message, Spin, Input, Select, DatePicker, Button, Row, Col
 import './comprehensive.less';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
+import moment from 'moment';
 import { copyrightStateList } from '../../../dataDic.js';
 import { companySearch, getCopyrightState, getTime, copyrightDownloadFile, beforeUploadFile, getInUrgentTime, getPreview } from '../../../tools.js';
 
@@ -150,13 +151,15 @@ const CopyrightDescForm = Form.create()(React.createClass({
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
             this.loadData(nextProps.data.uid, nextProps.data.id);
+            this.state.fileList_copyright_apply = [];
+            this.state.fileList_copyright_auth = [];
         };
     },
     handleSubmit(e) {
         e.preventDefault();
         this.props.form.validateFields((err, values) => {
-            if (values.state || values.principal || values.recordTime || values.comment) {
-                if (!values.state && !values.principal && !values.recordTime) {
+            if (values.status || values.principal || values.recordTime || values.comment) {
+                if (!values.status || !values.principal || !values.recordTime) {
                     message.warning("请填写完整的状态流转信息!");
                     return;
                 };
@@ -353,7 +356,7 @@ const CopyrightDescForm = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/copyright/upload"}
                         data={{ 'sign': 'copyright_apply', id: this.props.data.id }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList_copyright_apply}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -368,7 +371,8 @@ const CopyrightDescForm = Form.create()(React.createClass({
                                 this.state.copyrightApplyUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList_copyright_apply: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传软著申请书 </Button>
@@ -388,7 +392,7 @@ const CopyrightDescForm = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/copyright/upload"}
                         data={{ 'sign': 'copyright_auth', id: this.props.data.id }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList_copyright_auth}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -403,7 +407,8 @@ const CopyrightDescForm = Form.create()(React.createClass({
                                 this.state.copyrightAuthUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList_copyright_auth: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传软著证书 </Button>

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

@@ -86,6 +86,7 @@ const AchievementDescFrom = Form.create()(React.createClass({
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
             this.props.form.resetFields();
+            this.state.fileList = [];
         };
     },
     render() {
@@ -164,7 +165,7 @@ const AchievementDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/uploadAchievement"}
                         data={{ 'sign': 'achievement', 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -179,7 +180,8 @@ const AchievementDescFrom = Form.create()(React.createClass({
                                 this.state.enclosureUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传科技成果附件 </Button>

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

@@ -94,6 +94,7 @@ const ActivityForm = Form.create()(React.createClass({
         if (!this.props.visible && nextProps.visible) {
             this.state.mockData = nextProps.data.mockData;
             this.props.form.resetFields();
+            this.state.fileList = [];
             if (nextProps.data.id) {
                 this.loadData(nextProps.data.id);
             } else {
@@ -310,7 +311,7 @@ const ActivityForm = Form.create()(React.createClass({
                                 action={globalConfig.context + "/api/admin/uploadProof"}
                                 data={{ 'sign': 'proof', 'uid': this.props.uid }}
                                 beforeUpload={beforeUploadFile}
-                                showUploadList={false}
+                                fileList={this.state.fileList}
                                 onChange={(info) => {
                                     if (info.file.status !== 'uploading') {
                                         console.log(info.file, info.fileList);
@@ -325,7 +326,8 @@ const ActivityForm = Form.create()(React.createClass({
                                         this.state.proofUrl = info.file.response.data;
                                     } else if (info.file.status === 'error') {
                                         message.error(`${info.file.name} 文件上传失败。`);
-                                    }
+                                    };
+                                    this.setState({ fileList: info.fileList.slice(-1) });
                                 }}
                             >
                                 <Button><Icon type="upload" /> 上传立项证明材料 </Button>

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

@@ -39,6 +39,7 @@ const ActivityDescFrom = Form.create()(React.createClass({
             this.state.internalAllCost = nextProps.data.internalAllCost;
             this.state.allCost = nextProps.data.allCost;
             nextProps.form.resetFields();
+            this.state.fileList = [];
         } else {
             this.allCostCount();
         };
@@ -278,7 +279,7 @@ const ActivityDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/uploadActivityCost"}
                         data={{ 'sign': 'activity_cost_account', 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -293,7 +294,8 @@ const ActivityDescFrom = Form.create()(React.createClass({
                                 this.state.accountUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传研发费用台账 </Button>

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

@@ -112,8 +112,7 @@ const FinanceDescFrom = Form.create()(React.createClass({
                 this.loadData(nextProps.data.uid, nextProps.data.year);
             };
             this.props.form.resetFields();
-        };
-        if (this.props.visible && !nextProps.visible) {
+            this.state.fileList = [];
             this.state.managementCost = undefined;
             this.state.researchCost = undefined;
             this.state.grossProfit = undefined;
@@ -292,7 +291,7 @@ const FinanceDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/uploadFinance"}
                         data={{ 'sign': 'finance', 'year': (this.state.year || theData.year), 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -307,7 +306,8 @@ const FinanceDescFrom = Form.create()(React.createClass({
                                 this.state.financeUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传财务报表 </Button>

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

@@ -48,6 +48,7 @@ const HonorListDescFrom = Form.create()(React.createClass({
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
             this.props.form.resetFields();
+            this.state.fileList = [];
         };
     },
     componentWillMount() {
@@ -117,7 +118,7 @@ const HonorListDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/uploadHonor"}
                         data={{ 'sign': 'honor', 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -132,7 +133,8 @@ const HonorListDescFrom = Form.create()(React.createClass({
                                 this.state.enclosureUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传企业相关资质证书 </Button>

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

@@ -110,6 +110,8 @@ const HrSituationDescFrom = Form.create()(React.createClass({
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
             this.props.form.resetFields();
+            this.state.fileList_roster = [];
+            this.state.fileList_social_security = [];
         };
     },
     render() {
@@ -454,7 +456,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/uploadRoster"}
                         data={{ 'sign': 'roster', 'year': (this.state.year || theData.year), 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList_roster}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -469,7 +471,8 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                                 this.state.rosterUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList_roster: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传花名册 </Button>
@@ -490,7 +493,7 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/uploadSocialSecurity"}
                         data={{ 'sign': 'social_security', 'year': (this.state.year || theData.year), 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList_social_security}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -505,7 +508,8 @@ const HrSituationDescFrom = Form.create()(React.createClass({
                                 this.state.socialSecurityUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList_social_security: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传社保情况 </Button>

+ 4 - 2
js/component/manageCenter/servicesManage/highTech/fosterDesc/intellectualDesc.jsx

@@ -95,6 +95,7 @@ const IntellectualDescFrom = Form.create()(React.createClass({
         if (!this.props.visible && nextProps.visible) {
             this.loadData(nextProps.data.id, nextProps.data.type);
             this.props.form.resetFields();
+            this.state.fileList = [];
         };
     },
     render() {
@@ -198,7 +199,7 @@ const IntellectualDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/uploadPropertyRight"}
                         data={{ 'sign': 'property_right', 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -213,7 +214,8 @@ const IntellectualDescFrom = Form.create()(React.createClass({
                                 this.state.propertyRightUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传知识产权证书 </Button>

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

@@ -46,6 +46,12 @@ const CenterListDescFrom = Form.create()(React.createClass({
             }
         });
     },
+    componentWillReceiveProps(nextProps) {
+        if (!this.props.visible && nextProps.visible) {
+            this.props.form.resetFields();
+            this.state.fileList = [];
+        };
+    },
     render() {
         const FormItem = Form.Item;
         const { getFieldDecorator } = this.props.form;
@@ -110,7 +116,7 @@ const CenterListDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/uploadProtocol"}
                         data={{ 'sign': 'protocol', 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -125,7 +131,8 @@ const CenterListDescFrom = Form.create()(React.createClass({
                                 this.state.protocolUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传协议附件 </Button>
@@ -190,6 +197,7 @@ const CenterListDesc = React.createClass({
                         footer=''
                     >
                         <CenterListDescFrom
+                            visible={this.state.visible}
                             cid={this.props.cid}
                             uid={this.props.uid}
                             data={this.props.data}
@@ -492,7 +500,7 @@ const CenterList = React.createClass({
                             action={globalConfig.context + "/api/admin/uploadInstitution"}
                             data={{ 'sign': 'institution', 'uid': this.props.data.uid }}
                             beforeUpload={beforeUploadFile}
-                            showUploadList={false}
+                            fileList={this.state.fileList}
                             onChange={(info) => {
                                 if (info.file.status !== 'uploading') {
                                     console.log(info.file, info.fileList);
@@ -507,7 +515,8 @@ const CenterList = React.createClass({
                                     this.state.systemUrl = info.file.response.data;
                                 } else if (info.file.status === 'error') {
                                     message.error(`${info.file.name} 文件上传失败。`);
-                                }
+                                };
+                                this.setState({ fileList: info.fileList.slice(-1) });
                             }}
                         >
                             <Button><Icon type="upload" /> 上传研发部门制度 </Button>

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

@@ -106,8 +106,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                 this.loadData(nextProps.data.uid, nextProps.data.year);
             };
             this.props.form.resetFields();
-        };
-        if (this.props.visible && !nextProps.visible) {
+            this.state.fileList = [];
             this.state.managementCost = undefined;
             this.state.researchCost = undefined;
             this.state.grossProfit = undefined;
@@ -245,7 +244,7 @@ const RatepayDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/uploadRatepay"}
                         data={{ 'sign': 'ratepay', 'year': (this.state.year || theData.year), 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -260,7 +259,8 @@ const RatepayDescFrom = Form.create()(React.createClass({
                                 this.state.taxReturnUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传企业所得税纳税申报表 </Button>

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

@@ -74,15 +74,18 @@ const StandardDesc = React.createClass({
         this.state.yearOption = theOption;
     },
     componentWillReceiveProps(nextProps) {
-        this.state.visible = nextProps.showDesc;
-        if (nextProps.data) {
-            this.state.standardName = nextProps.data.standardName;
-            this.state.standardNumber = nextProps.data.standardNumber;
-            this.state.year = nextProps.data.year;
-            this.state.standardLevel = nextProps.data.standardLevel;
-            this.state.participateWay = nextProps.data.participateWay;
-            this.state.enclosureUrl = nextProps.data.enclosureUrl;
+        if (!this.state.visible && nextProps.showDesc) {
+            if (nextProps.data) {
+                this.state.standardName = nextProps.data.standardName;
+                this.state.standardNumber = nextProps.data.standardNumber;
+                this.state.year = nextProps.data.year;
+                this.state.standardLevel = nextProps.data.standardLevel;
+                this.state.participateWay = nextProps.data.participateWay;
+                this.state.enclosureUrl = nextProps.data.enclosureUrl;
+            };
+            this.state.fileList = [];
         };
+        this.state.visible = nextProps.showDesc;
     },
     render() {
         if (this.props.data) {
@@ -134,7 +137,7 @@ const StandardDesc = React.createClass({
                                 action={globalConfig.context + "/api/admin/uploadStandard"}
                                 data={{ 'sign': 'standard', 'uid': this.props.uid }}
                                 beforeUpload={beforeUploadFile}
-                                showUploadList={false}
+                                fileList={this.state.fileList}
                                 onChange={(info) => {
                                     if (info.file.status !== 'uploading') {
                                         console.log(info.file, info.fileList);
@@ -149,7 +152,8 @@ const StandardDesc = React.createClass({
                                         this.state.enclosureUrl = info.file.response.data;
                                     } else if (info.file.status === 'error') {
                                         message.error(`${info.file.name} 文件上传失败。`);
-                                    }
+                                    };
+                                    this.setState({ fileList: info.fileList.slice(-1) });
                                 }}
                             >
                                 <Button><Icon type="upload" /> 上传标准制定附件 </Button>

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

@@ -29,6 +29,7 @@ const TechProductDescFrom = Form.create()(React.createClass({
         if (!this.props.visible && nextProps.visible && nextProps.data && this.props.resetForm) {
             this.state.targetKeys = nextProps.data.intellectualPropertyNumber || [];
             this.props.form.resetFields();
+            this.state.fileList = [];
         };
     },
     handleSubmit(e) {
@@ -233,7 +234,7 @@ const TechProductDescFrom = Form.create()(React.createClass({
                         action={globalConfig.context + "/api/admin/uploadTecProduct"}
                         data={{ 'sign': 'tech_product', 'uid': this.props.uid }}
                         beforeUpload={beforeUploadFile}
-                        showUploadList={false}
+                        fileList={this.state.fileList}
                         onChange={(info) => {
                             if (info.file.status !== 'uploading') {
                                 console.log(info.file, info.fileList);
@@ -248,7 +249,8 @@ const TechProductDescFrom = Form.create()(React.createClass({
                                 this.state.accountUrl = info.file.response.data;
                             } else if (info.file.status === 'error') {
                                 message.error(`${info.file.name} 文件上传失败。`);
-                            }
+                            };
+                            this.setState({ fileList: info.fileList.slice(-1) });
                         }}
                     >
                         <Button><Icon type="upload" /> 上传高新技术产品台帐 </Button>

+ 1 - 1
js/component/manageCenter/servicesManage/highTech/highTechApply.jsx

@@ -261,7 +261,7 @@ const CognizanceDescFrom = Form.create()(React.createClass({
         e.preventDefault();
         this.props.form.validateFields((err, values) => {
             if (values.state || values.principal || values.recordTime || values.comment) {
-                if (!values.state && !values.principal && !values.recordTime) {
+                if (!values.state || !values.principal || !values.recordTime) {
                     message.warning("请填写完整的状态流转信息!");
                     return;
                 };

+ 4 - 0
js/component/manageCenter/servicesManage/highTech/highTechFoster.less

@@ -112,6 +112,10 @@
             background: #eee;
             >span {
                 vertical-align: top;
+                &:last-child {
+                    display: inline-block;
+                    width: 840px;
+                }
             }
         }
         .half-item {

+ 2 - 0
js/component/manageCenter/servicesManage/highTech/highTechInfo.jsx

@@ -19,6 +19,8 @@ const highTechInfo = React.createClass({
             field: [],
             registerType: [],
             address: [],
+            netAssetRate:0,
+            salesRevenueRate:0,
             humanColumns: [
                 {
                     title: '公民类型',

+ 13 - 2
js/component/manageCenter/servicesManage/patent/comPatentAdd.jsx

@@ -12,6 +12,11 @@ class Avatar extends React.Component {
             imageUrl: ''
         }
     }
+    componentWillReceiveProps(nextProps) {
+        if ( !this.props.visible && nextProps.visible) {
+            this.state.fileList = [];
+        };
+    }
     handleChange(info) {
         if (!this.props.oid || this.props.oid === "") {
             message.warning('请先选择公司!');
@@ -29,13 +34,14 @@ class Avatar extends React.Component {
         } else if (info.file.status === 'error') {
             message.error(`${info.file.name} 文件上传失败。`);
         };
+        this.setState({ fileList: info.fileList.slice(-1) });
     }
     render() {
         return (
             <Upload
                 className="avatar-uploader"
                 name="avatar"
-                showUploadList={false}
+                fileList={this.state.fileList}
                 action={globalConfig.context + "/api/admin/patent/uploadProry"}
                 data={{ 'sign': this.props.name, 'uid': this.props.oid }}
                 beforeUpload={beforeUpload}
@@ -257,7 +263,11 @@ const PatentAddFrom = Form.create()(React.createClass({
                     wrapperCol={{ span: 12 }}
                 >
                     {getFieldDecorator('avatar')(
-                        <Avatar urlData={this.avatarUrl} name='patent_prory_statement' oid={this.state.companyName} />
+                        <Avatar 
+                        urlData={this.avatarUrl} 
+                        name='patent_prory_statement' 
+                        oid={this.state.companyName}
+                        visible = {this.props.visible} />
                     )}
                     <p>
                         <a onClick={() => { window.open(globalConfig.context + "/api/admin/patent/downloadTemplateFile?sign=patent_prory_statement") }}>模板下载</a>
@@ -312,6 +322,7 @@ const PatentAdd = React.createClass({
                         footer=''
                     >
                         <PatentAddFrom
+                            visible={this.state.visible}
                             spinState={this.spinChange}
                             closeModal={this.handleCancel}
                             okClick={() => { this.props.closeDesc(false, true) }} />

+ 43 - 10
js/component/manageCenter/servicesManage/patent/comPatentDesc.jsx

@@ -29,12 +29,18 @@ class Avatar extends React.Component {
         } else if (info.file.status === 'error') {
             message.error(`${info.file.name} 文件上传失败。`);
         };
+        this.setState({ fileList: info.fileList.slice(-1) });
+    }
+    componentWillReceiveProps(nextProps) {
+        if (!this.props.visible && nextProps.visible) {
+            this.state.fileList = [];
+        };
     }
     render() {
         return (
             <Upload className="upload-file"
                 name="avatar"
-                showUploadList={false}
+                fileList={this.state.fileList}
                 action={globalConfig.context + "/api/admin/patent/upload"}
                 data={{ 'sign': this.props.name, 'uid': this.props.uid, 'id': this.props.id }}
                 beforeUpload={beforeUpload}
@@ -101,7 +107,12 @@ const PatentDesc = React.createClass({
             crossDomain: false,
             url: globalConfig.context + "/api/admin/patent/lastYearTax",
             data: { "uid": uid || this.props.data.uid, "sign": "last_year_ratepay" }
-        })).done((data1, data2, data3) => {
+        }), $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/patent/getAuthor"
+        })).done((data1, data2, data3, data4) => {
             let _me = this;
             if (!data1[0].data) {
                 if (data1[0].error.length) {
@@ -121,6 +132,7 @@ const PatentDesc = React.createClass({
                 this.state.patentState = data1[0].data.patentState;
                 this.state.patentField = data1[0].data.patentField;
                 this.state.contacts = data1[0].data.contacts;
+                this.state.author = data1[0].data.author;
                 this.state.uid = data1[0].data.uid;
                 this.state.id = data1[0].data.id;
             };
@@ -150,6 +162,21 @@ const PatentDesc = React.createClass({
             } else {
                 this.state.lastYearTaxReportId = data3[0].data.id
             };
+            let theArr = [];
+            if (!data4[0].data) {
+                if (data4[0].error.length) {
+                    message.warning(data4[0].error[0].message);
+                };
+            } else {
+                for (var item in data4[0].data) {
+                    theArr.push(
+                        <Select.Option value={item} key={item}>{data4[0].data[item]}</Select.Option>
+                    )
+                };
+                this.setState({
+                    authorOption: theArr
+                });
+            };
         }).always(function () {
             this.setState({
                 loading: false
@@ -233,7 +260,8 @@ const PatentDesc = React.createClass({
                 "state": this.state.patentStateAdd,
                 "recordTimeFormattedDate": this.state.recordTime,
                 "principal": this.state.adminName,
-                "comment": this.state.comment
+                "comment": this.state.comment,
+                "author": this.state.author
             }
         }).done(function (data) {
             if (data.error && !data.error.length) {
@@ -307,10 +335,6 @@ const PatentDesc = React.createClass({
                             className="patent-desc-content">
                             <div>
                                 <p className="widthHalf"><span>公司名称:</span>{theData.unitName}</p>
-                                <p className="widthHalf"><span>公司组织机构代码:</span>{theData.orgCode}</p>
-                            </div>
-                            <div>
-                                <p className="widthHalf"><span>公司地址:</span>{theData.postalAddress}</p>
                                 <div className="widthHalf">
                                     <span>联系人:</span>
                                     <Select placeholder="选择联系人"
@@ -489,11 +513,20 @@ const PatentDesc = React.createClass({
                                         <p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />上年度纳税报表未上传</p>
                                     }
                                 </div>
-                                <Avatar urlData={this.getPatentWritingUrl} name='patent_writing' uid={theData.uid} id={theData.id} />
-                                <Avatar urlData={this.getAuthorizationNoticeUrl} name='authorization_notice' uid={theData.uid} id={theData.id} />
-                                <Avatar urlData={this.getPatentCertificateUrl} name='patent_certificate' uid={theData.uid} id={theData.id} />
+                                <Avatar visible={this.state.visible} urlData={this.getPatentWritingUrl} name='patent_writing' uid={theData.uid} id={theData.id} />
+                                <Avatar visible={this.state.visible} urlData={this.getAuthorizationNoticeUrl} name='authorization_notice' uid={theData.uid} id={theData.id} />
+                                <Avatar visible={this.state.visible} 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="widthHalf">
+                                <span>撰写人:</span>
+                                <Select
+                                    style={{ width: 150 }}
+                                    value={this.state.author}
+                                    onChange={(e) => { this.setState({ author: e }); }} >
+                                    {this.state.authorOption}
+                                </Select>
+                            </div>
                         </Modal>
                     </Spin>
                 </div>

+ 11 - 6
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, Modal } from 'antd';
 import { patentTypeList, patentStateList, provinceArr } from '../../../dataDic.js';
-import { getTime, getPatentState, beforeUploadFile, companySearch, getSearchUrl } from '../../../tools.js';
+import { getTime, getPatentState, beforeUploadFile, companySearch, getSearchUrl,getPatentType } from '../../../tools.js';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
 import moment from 'moment';
@@ -50,7 +50,7 @@ const Patent = React.createClass({
                         patentNumber: thisdata.patentNumber || '',
                         unitName: thisdata.unitName || '',
                         patentName: thisdata.patentName || '',
-                        patentCatagory: thisdata.patentCatagory || '0',
+                        patentCatagory: thisdata.patentCatagory ? getPatentType(thisdata.patentCatagory) : '',
                         patentState: thisdata.patentState || '0',
                         patentField: thisdata.patentField || '0',
                         patentDes: thisdata.patentDes || '',
@@ -88,7 +88,7 @@ const Patent = React.createClass({
                         office: thisdata.office, //事务所
                         principal: thisdata.principal, //负责人
                         founder: thisdata.founder, //创建人
-                        techPrincipal:thisdata.techPrincipal //技术员
+                        techPrincipal: thisdata.techPrincipal //技术员
                     });
                 };
                 this.state.pagination.current = data.data.pageNo;
@@ -220,6 +220,10 @@ const Patent = React.createClass({
                     dataIndex: 'patentName',
                     key: 'patentName',
                 }, {
+                    title: '专利类型',
+                    dataIndex: 'patentCatagory',
+                    key: 'patentCatagory',
+                }, {
                     title: '专利状态',
                     dataIndex: 'patentState',
                     key: 'patentState',
@@ -243,7 +247,7 @@ const Patent = React.createClass({
                     title: '创建人',
                     dataIndex: 'founder',
                     key: 'founder'
-                },{
+                }, {
                     title: '技术员',
                     dataIndex: 'techPrincipal',
                     key: 'techPrincipal',
@@ -456,7 +460,7 @@ const Patent = React.createClass({
                     <div className="patent-addNew">
                         <Upload style={{ float: 'right' }}
                             name="ratepay"
-                            showUploadList={false}
+                            fileList={this.state.fileList}
                             action={globalConfig.context + "/api/admin/patent/uploadTemplate"}
                             data={{ 'sign': 'patent_prory_statement' }}
                             beforeUpload={beforeUploadFile}
@@ -474,7 +478,8 @@ const Patent = React.createClass({
                                     };
                                 } else if (info.file.status === 'error') {
                                     message.error(`${info.file.name} 文件上传失败。`);
-                                }
+                                };
+                                this.setState({ fileList: info.fileList.slice(-1) });
                             }}
                         >
                             <Button>上传专利代理委托书模板 <Icon type="upload" /></Button>

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

@@ -258,6 +258,7 @@ const ApplyChangeFrom = Form.create()(React.createClass({
     },
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
+            this.state.fileList = [];
             this.loadData(nextProps.data.pid);
             this.getStateData(nextProps.data.pid);
             this.getContactsList(nextProps.data.uid);
@@ -459,7 +460,7 @@ const ApplyChangeFrom = Form.create()(React.createClass({
                             action={globalConfig.context + "/api/admin/techproject/upload"}
                             data={{ 'uid': this.props.data.uid, 'id': this.props.data.pid, 'sign': 'tech_project' }}
                             beforeUpload={beforeUploadFile}
-                            showUploadList={false}
+                            fileList={this.state.fileList}
                             onChange={(info) => {
                                 if (info.file.status !== 'uploading') {
                                     console.log(info.file, info.fileList);
@@ -473,8 +474,10 @@ const ApplyChangeFrom = Form.create()(React.createClass({
                                     };
                                     this.state.approvalUrl = info.file.response.data;
                                 } else if (info.file.status === 'error') {
+                                    debugger
                                     message.error(`${info.file.name} 文件上传失败。`);
                                 }
+                                this.setState({ fileList: info.fileList.slice(-1) });
                             }}
                         >
                             <Button><Icon type="upload" /> 项目材料上传 </Button>

+ 19 - 16
js/component/manageCenter/servicesManage/technology/websiteManage.jsx

@@ -27,7 +27,7 @@ const Cognizance = React.createClass({
             },
             success: function (data) {
                 if (!data.data || !data.data.list) {
-                    if ( data.error && data.error.length ){
+                    if (data.error && data.error.length) {
                         message.warning(data.error[0].message);
                     };
                     return;
@@ -39,10 +39,10 @@ const Cognizance = React.createClass({
                         id: thisdata.id,
                         uid: thisdata.uid,
                         unitName: thisdata.unitName,
-						department: thisdata.department,
-						webSite: thisdata.website,
-						userName: thisdata.accountNumber,
-						password: thisdata.password
+                        department: thisdata.department,
+                        webSite: thisdata.website,
+                        userName: thisdata.accountNumber,
+                        password: thisdata.password
                     });
                 };
                 this.state.pagination.current = data.data.pageNo;
@@ -66,9 +66,12 @@ const Cognizance = React.createClass({
             method: "get",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + "/api/admin/getUnitNames",
+            url: globalConfig.context + "/api/admin/techproject/websiteUnit",
             success: function (data) {
-                if (data.error.length || !data.data) {
+                if (!data.data) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                    };
                     return;
                 };
                 let _me = this;
@@ -214,13 +217,13 @@ const Cognizance = React.createClass({
                 <div className="content-title">
                     <span>科技单位网址管理</span>
                     <div className="foster-query" style={{ float: "right" }}>
-	                    <div>
-	                        <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
-	                            onClick={this.addClick}>创建新单位网址<Icon type="plus" /></Button>
-	                    </div>
-	                </div>
+                        <div>
+                            <Button style={{ background: "#ea0862", border: "none", color: "#fff" }}
+                                onClick={this.addClick}>创建新单位网址<Icon type="plus" /></Button>
+                        </div>
+                    </div>
                 </div>
-                
+
                 <div className="foster-query">
                     <Select placeholder="选择公司"
                         style={{ width: 200 }}
@@ -233,10 +236,10 @@ const Cognizance = React.createClass({
                     <Button type="primary" onClick={this.search}>搜索</Button>
                     <Button onClick={this.reset}>重置</Button>
                     <Button style={{ background: "#3fcf9e", border: "none", color: "#fff" }}
-                            disabled={!hasSelected}
-                            onClick={this.delectRow}>删除<Icon type="minus" /></Button>
+                        disabled={!hasSelected}
+                        onClick={this.delectRow}>删除<Icon type="minus" /></Button>
                 </div>
-                
+
                 <div className="patent-table">
                     <Spin spinning={this.state.loading}>
                         <Table columns={this.state.columns}

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

@@ -47,16 +47,20 @@ const MessageModal = React.createClass({
                     title: '类型',
                     dataIndex: 'noticeType',
                     key: 'noticeType',
-                    render: (text) => {
-                        switch (text[0]) {
+                    render: (text, record) => {
+                        switch (text) {
                             case 1:
-                                return <a href={globalConfig.context + "/admin/servicesManage/patent.html?rid=" + text[1] + "&uid=" + text[2] + "#comprehensive"}> 专利申请管理 </a>;
+                                return <a href={globalConfig.context + "/admin/servicesManage/patent.html?rid=" + record.rid + "&uid=" + record.uid + "#comprehensive"}> {record.noticeTypeName} </a>;
                             case 3:
-                                return <a href={globalConfig.context + "/admin/servicesManage/copyright.html?rid=" + text[1] + "&uid=" + text[2] + "#copyright"}> 软著申请管理 </a>;
+                                return <a href={globalConfig.context + "/admin/servicesManage/copyright.html?rid=" + record.rid + "&uid=" + record.uid + "#copyright"}> {record.noticeTypeName} </a>;
                             case 2:
-                                return <a href={globalConfig.context + "/admin/servicesManage/highTech.html?rid=" + text[1] + "&uid=" + text[2] + "&year=" + text[3] + "#highTechApply"}> 高企认定管理 </a>;
+                                return <a href={globalConfig.context + "/admin/servicesManage/highTech.html?rid=" + record.rid + "&uid=" + record.uid + "&year=" + record.year + "#highTechApply"}> {record.noticeTypeName} </a>;
                             case 4:
-                                return <a href={globalConfig.context + "/admin/servicesManage/technology.html?rid=" + text[1] + "&uid=" + text[2] + "#applyManage"}> 科技项目申报管理 </a>;
+                                return <a href={globalConfig.context + "/admin/servicesManage/technology.html?rid=" + record.rid + "&uid=" + record.uid + "#applyManage"}> {record.noticeTypeName} </a>;
+                            case 5:
+                                return <a href={globalConfig.context + "/admin/userManage.html?uid=" + record.uid + "&type=0" + (window.showUserList ? "#userList" : "#customerList")}> {record.noticeTypeName} </a>;
+                            case 6:
+                                return <a href={globalConfig.context + "/admin/userManage.html?uid=" + record.uid + "&type=1" + (window.showOrgList ? "#orgList" : "#customerList")}> {record.noticeTypeName} </a >;
                         }
                     }
                 }, {
@@ -107,8 +111,12 @@ const MessageModal = React.createClass({
                 this.state.data.push({
                     key: i + 1,
                     id: thisdata.id,
+                    rid: thisdata.rid,
+                    uid: thisdata.uid,
                     aid: thisdata.aid,
-                    noticeType: [thisdata.noticeType, thisdata.rid, thisdata.uid, thisdata.year],
+                    noticeType: thisdata.noticeType,
+                    year: thisdata.year,
+                    noticeTypeName: thisdata.noticeTypeName,
                     content: thisdata.content,
                     createTime: thisdata.createTime,
                     createTimeFormattedDate: thisdata.createTimeFormattedDate,
@@ -155,8 +163,12 @@ const MessageModal = React.createClass({
                 this.state.data.push({
                     key: i + 1,
                     id: thisdata.id,
+                    rid: thisdata.rid,
+                    uid: thisdata.uid,
                     aid: thisdata.aid,
-                    noticeType: [thisdata.noticeType, thisdata.rid, thisdata.uid, thisdata.year],
+                    noticeType: thisdata.noticeType,
+                    year: thisdata.year,
+                    noticeTypeName: thisdata.noticeTypeName,
                     content: thisdata.content,
                     createTime: thisdata.createTime,
                     createTimeFormattedDate: thisdata.createTimeFormattedDate,

+ 12 - 1
js/component/manageCenter/userManage/customerList.jsx

@@ -7,7 +7,7 @@ import './userList.less';
 import OrgDesc from './orgDesc.jsx';
 import UserDesc from './userDesc.jsx';
 import { auditStatusList } from '../../dataDic.js';
-import { getAuditState } from '../../tools.js';
+import { getAuditState, getSearchUrl } from '../../tools.js';
 
 const OrgAdd = React.createClass({
     getInitialState() {
@@ -272,6 +272,17 @@ const CustomerList = React.createClass({
     },
     componentWillMount() {
         this.loadData();
+        if (window.location.search) {
+            let theArr = getSearchUrl(window.location.search);
+            if (theArr.length > 1) {
+                let theObj = {};
+                theObj.id = theArr[0];
+                theObj.type = theArr[1];
+                if (theObj.id != 'null' && theObj.type != 'null') {
+                    this.tableRowClick(theObj);
+                };
+            };
+        };
     },
     tableRowClick(record, index) {
         this.state.RowData = record;

+ 45 - 9
js/component/manageCenter/userManage/orgDesc.jsx

@@ -90,7 +90,7 @@ const OrgCertify = Form.create()(React.createClass({
             });
         }.bind(this));
     },
-    getAuthorList() {
+    getAccountManagerList() {
         this.setState({
             loading: true
         });
@@ -98,7 +98,7 @@ const OrgCertify = Form.create()(React.createClass({
             method: "get",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + "/api/admin/getPrincipal",
+            url: globalConfig.context + "/api/admin/userCertify/accountManager",
             success: function (data) {
                 let theArr = [];
                 if (!data.data) {
@@ -113,8 +113,41 @@ const OrgCertify = Form.create()(React.createClass({
                     )
                 };
                 this.setState({
-                    authorOption: theArr,
-                    authorList: data.data
+                    accountManagerOption: theArr,
+                    accountManagerList: data.data
+                });
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    getTechnicianList() {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/userCertify/technician",
+            success: function (data) {
+                let theArr = [];
+                if (!data.data) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                    };
+                    return;
+                };
+                for (var item in data.data) {
+                    theArr.push(
+                        <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
+                    )
+                };
+                this.setState({
+                    technicianOption: theArr,
+                    technicianList: data.data
                 });
             }.bind(this),
         }).always(function () {
@@ -219,7 +252,10 @@ const OrgCertify = Form.create()(React.createClass({
             );
         });
         this.loadData(this.props.uid);
-        this.getAuthorList();
+        if (window.showAuditStatus) {
+            this.getAccountManagerList();
+            this.getTechnicianList();
+        };
     },
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
@@ -580,13 +616,13 @@ const OrgCertify = Form.create()(React.createClass({
                                 {...formItemLayout}
                                 label="业务员"
                             >
-                                <span>{this.state.authorList ? this.state.authorList[this.state.aid] : ''}</span>
+                                <span>{this.state.technicianList ? this.state.technicianList[this.state.aid] : ''}</span>
                             </FormItem>
                             <FormItem
                                 {...formItemLayout}
                                 label="客户经理"
                             >
-                                <span>{this.state.authorList ? this.state.authorList[this.state.mid] : ''}</span>
+                                <span>{this.state.accountManagerList ? this.state.accountManagerList[this.state.mid] : ''}</span>
                             </FormItem>
                         </div>
                         <div style={{ display: window.showAuditStatus ? 'block' : 'none' }}>
@@ -615,7 +651,7 @@ const OrgCertify = Form.create()(React.createClass({
                                     initialValue: this.state.aid
                                 })(
                                     <Select placeholder="选择一个业务员" style={{ width: 200 }}>
-                                        {this.state.authorOption}
+                                        {this.state.technicianOption}
                                     </Select>
                                     )}
                             </FormItem>
@@ -627,7 +663,7 @@ const OrgCertify = Form.create()(React.createClass({
                                     initialValue: this.state.mid
                                 })(
                                     <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
-                                        {this.state.authorOption}
+                                        {this.state.accountManagerOption}
                                     </Select>
                                     )}
                             </FormItem>

+ 12 - 1
js/component/manageCenter/userManage/orgList.jsx

@@ -6,7 +6,7 @@ import moment from 'moment';
 import './userList.less';
 import OrgDesc from './orgDesc.jsx';
 import { auditStatusList } from '../../dataDic.js';
-import { getAuditState } from '../../tools.js';
+import { getAuditState, getSearchUrl } from '../../tools.js';
 
 const OrgAdd = React.createClass({
     getInitialState() {
@@ -200,6 +200,17 @@ const OrgList = React.createClass({
     },
     componentWillMount() {
         this.loadData();
+        if (window.location.search) {
+            let theArr = getSearchUrl(window.location.search);
+            if (theArr.length > 1) {
+                let theObj = {};
+                theObj.id = theArr[0];
+                theObj.type = theArr[1];
+                if (theObj.id != 'null' && theObj.type != 'null') {
+                    this.tableRowClick(theObj);
+                };
+            };
+        };
     },
     tableRowClick(record, index) {
         this.state.RowData = record;

+ 45 - 9
js/component/manageCenter/userManage/userDesc.jsx

@@ -70,7 +70,7 @@ const UserForm = Form.create()(React.createClass({
             });
         }.bind(this));
     },
-    getAuthorList() {
+    getAccountManagerList() {
         this.setState({
             loading: true
         });
@@ -78,7 +78,7 @@ const UserForm = Form.create()(React.createClass({
             method: "get",
             dataType: "json",
             crossDomain: false,
-            url: globalConfig.context + "/api/admin/getPrincipal",
+            url: globalConfig.context + "/api/admin/userCertify/accountManager",
             success: function (data) {
                 let theArr = [];
                 if (!data.data) {
@@ -93,8 +93,41 @@ const UserForm = Form.create()(React.createClass({
                     )
                 };
                 this.setState({
-                    authorOption: theArr,
-                    authorList: data.data
+                    accountManagerOption: theArr,
+                    accountManagerList: data.data
+                });
+            }.bind(this),
+        }).always(function () {
+            this.setState({
+                loading: false
+            });
+        }.bind(this));
+    },
+    getTechnicianList() {
+        this.setState({
+            loading: true
+        });
+        $.ajax({
+            method: "get",
+            dataType: "json",
+            crossDomain: false,
+            url: globalConfig.context + "/api/admin/userCertify/technician",
+            success: function (data) {
+                let theArr = [];
+                if (!data.data) {
+                    if (data.error && data.error.length) {
+                        message.warning(data.error[0].message);
+                    };
+                    return;
+                };
+                for (var item in data.data) {
+                    theArr.push(
+                        <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
+                    )
+                };
+                this.setState({
+                    technicianOption: theArr,
+                    technicianList: data.data
                 });
             }.bind(this),
         }).always(function () {
@@ -160,7 +193,10 @@ const UserForm = Form.create()(React.createClass({
     },
     componentWillMount() {
         this.loadData(this.props.uid);
-        this.getAuthorList();
+        if (window.showAuditStatus) {
+            this.getAccountManagerList();
+            this.getTechnicianList();
+        };
     },
     componentWillReceiveProps(nextProps) {
         if (!this.props.visible && nextProps.visible) {
@@ -313,13 +349,13 @@ const UserForm = Form.create()(React.createClass({
                         {...formItemLayout}
                         label="业务员"
                     >
-                        <span>{this.state.authorList ? this.state.authorList[this.state.aid] : ''}</span>
+                        <span>{this.state.technicianList ? this.state.technicianList[this.state.aid] : ''}</span>
                     </FormItem>
                     <FormItem
                         {...formItemLayout}
                         label="客户经理"
                     >
-                        <span>{this.state.authorList ? this.state.authorList[this.state.mid] : ''}</span>
+                        <span>{this.state.accountManagerList ? this.state.accountManagerList[this.state.mid] : ''}</span>
                     </FormItem>
                 </div>
                 <div style={{ display: window.showAuditStatus ? 'block' : 'none' }}>
@@ -348,7 +384,7 @@ const UserForm = Form.create()(React.createClass({
                             initialValue: this.state.aid
                         })(
                             <Select placeholder="选择一个业务员" style={{ width: 200 }}>
-                                {this.state.authorOption}
+                                {this.state.technicianOption}
                             </Select>
                             )}
                     </FormItem>
@@ -360,7 +396,7 @@ const UserForm = Form.create()(React.createClass({
                             initialValue: this.state.mid
                         })(
                             <Select placeholder="选择一个客户经理" style={{ width: 200 }}>
-                                {this.state.authorOption}
+                                {this.state.accountManagerOption}
                             </Select>
                             )}
                     </FormItem>

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

@@ -6,7 +6,7 @@ import moment from 'moment';
 import './userList.less';
 import UserDesc from './userDesc.jsx';
 import { auditStatusList } from '../../dataDic.js';
-import { getAuditState } from '../../tools.js';
+import { getAuditState, getSearchUrl } from '../../tools.js';
 
 const OrgAdd = React.createClass({
     getInitialState() {
@@ -187,6 +187,17 @@ const UserList = React.createClass({
     },
     componentWillMount() {
         this.loadData();
+        if (window.location.search) {
+            let theArr = getSearchUrl(window.location.search);
+            if (theArr.length > 1) {
+                let theObj = {};
+                theObj.id = theArr[0];
+                theObj.type = theArr[1];
+                if (theObj.id != 'null' && theObj.type != 'null') {
+                    this.tableRowClick(theObj);
+                };
+            };
+        };
     },
     tableRowClick(record, index) {
         this.state.RowData = record;

+ 4 - 4
js/component/tools.js

@@ -166,8 +166,8 @@ module.exports = {
         if (e && !t) {
             var d = new Date(e);
             d = d.getFullYear() + "-" +
-                ((d.getMonth() + 1) < 9 ? '0' + (d.getMonth() + 1) : (d.getMonth() + 1)) + "-" +
-                (d.getDate() < 9 ? '0' + d.getDate() : d.getDate()) + " ";
+                ((d.getMonth() + 1) < 10 ? '0' + (d.getMonth() + 1) : (d.getMonth() + 1)) + "-" +
+                (d.getDate() < 10 ? '0' + d.getDate() : d.getDate()) + " ";
             // + (d.getHours() < 10 ? "0" + d.getHours() : d.getHours()) + ":" +
             // (d.getMinutes() < 10 ? "0" + d.getMinutes() : d.getMinutes()) + ":" +
             // (d.getSeconds() < 10 ? "0" + d.getSeconds() : d.getSeconds());
@@ -178,8 +178,8 @@ module.exports = {
             d2 = d2.setMonth(d1.getMonth() + t);
             d2 = new Date(d2)
             d2 = d2.getFullYear() + "-" +
-                ((d2.getMonth() + 1) < 9 ? '0' + (d2.getMonth() + 1) : (d2.getMonth() + 1)) + "-" +
-                (d2.getDate() < 9 ? '0' + d2.getDate() : d2.getDate()) + " ";
+                ((d2.getMonth() + 1) < 10 ? '0' + (d2.getMonth() + 1) : (d2.getMonth() + 1)) + "-" +
+                (d2.getDate() < 10 ? '0' + d2.getDate() : d2.getDate()) + " ";
             return d2;
         } else {
             return '';

+ 1 - 1
package.json

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