Sfoglia il codice sorgente

版本号更新到1.0.1

yee 8 anni fa
parent
commit
5adec51305

+ 32 - 25
js/component/account/services/orgTechCenter.jsx

@@ -1,7 +1,7 @@
 import React from 'react';
 import { Icon, Form, Button, Input, Spin, Table, message, Modal, Upload, DatePicker } from 'antd';
 import './techProduct.less';
-import { beforeUploadFile } from '../../tools.js';
+import { beforeUploadFile, downloadFile } from '../../tools.js';
 import moment from 'moment';
 import ajax from 'jquery/src/ajax/xhr.js';
 import $ from 'jquery/src/ajax';
@@ -208,6 +208,7 @@ const CenterList = React.createClass({
             this.state.principal = data.data.principal;
             this.state.systemCatalog = data.data.systemCatalog;
             this.state.systemUrl = data.data.systemUrl;
+            this.state.systemDownloadFileName = data.data.systemDownloadFileName;
             this.state.centerName = data.data.centerName;
             this.state.comment = data.data.comment;
             this.loadData();
@@ -245,9 +246,11 @@ const CenterList = React.createClass({
                     cid: thisdata.cid,
                     projectTimeFormattedDate: thisdata.projectTimeFormattedDate,
                     projectName: thisdata.projectName,
+                    protocolDownloadFileName:thisdata.protocolDownloadFileName,
                     protocolUrl: thisdata.protocolUrl,
                     institution: thisdata.institution,
                     termTimeFormattedDate: thisdata.termTimeFormattedDate
+
                 });
             };
             this.state.pagination.current = data.data.pageNo;
@@ -437,30 +440,34 @@ const CenterList = React.createClass({
                 </div>
                 <div className="half-item">
                     <p>制度上传: (上传 zip 或者 rar 文件)</p>
-                    <Upload className="upload-box"
-                        name="ratepay"
-                        action={globalConfig.context + "/techservice/cognizance/upload"}
-                        data={{ 'sign': this.props.year + 'institution' }}
-                        beforeUpload={beforeUploadFile}
-                        onChange={(info) => {
-                            if (info.file.status !== 'uploading') {
-                                console.log(info.file, info.fileList);
-                            }
-                            if (info.file.status === 'done') {
-                                if (!info.file.response.error.length) {
-                                    message.success(`${info.file.name} 文件上传成功!`);
-                                } else {
-                                    message.warning(info.file.response.error[0].message);
-                                    return;
-                                };
-                                this.state.systemUrl = info.file.response.data;
-                            } else if (info.file.status === 'error') {
-                                message.error(`${info.file.name} 文件上传失败。`);
-                            }
-                        }}
-                    >
-                        <Button><Icon type="upload" /> 上传文件 </Button>
-                    </Upload>
+                    <div style={{ margin: '10px 0' }}>
+                        <Upload
+                            name="ratepay"
+                            action={globalConfig.context + "/techservice/cognizance/upload"}
+                            data={{ 'sign': 'institution' }}
+                            beforeUpload={beforeUploadFile}
+                            showUploadList={false}
+                            onChange={(info) => {
+                                if (info.file.status !== 'uploading') {
+                                    console.log(info.file, info.fileList);
+                                }
+                                if (info.file.status === 'done') {
+                                    if (!info.file.response.error.length) {
+                                        message.success(`${info.file.name} 文件上传成功!`);
+                                    } else {
+                                        message.warning(info.file.response.error[0].message);
+                                        return;
+                                    };
+                                    this.state.systemUrl = info.file.response.data;
+                                } else if (info.file.status === 'error') {
+                                    message.error(`${info.file.name} 文件上传失败。`);
+                                }
+                            }}
+                        >
+                            <Button><Icon type="upload" /> 上传研发费用台账 </Button>
+                        </Upload>
+                        <p style={{ marginTop: '10px' }}>{this.state.systemUrl ? <a onClick={downloadFile.bind(null, this.state.systemUrl, this.state.systemDownloadFileName)}>{this.state.systemDownloadFileName}</a> : <span>未上传!</span>}</p>
+                    </div>
                 </div>
                 <Button type='primary' onClick={this.saveCenterDetail}>保存</Button>
                 <div className="content-title">

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

@@ -212,6 +212,7 @@ const CenterList = React.createClass({
             this.state.principal = data.data.principal;
             this.state.systemCatalog = data.data.systemCatalog;
             this.state.systemUrl = data.data.systemUrl;
+            this.state.systemDownloadFileName = data.data.systemDownloadFileName;
             this.state.centerName = data.data.centerName;
             this.state.comment = data.data.comment;
             this.loadData();
@@ -440,30 +441,34 @@ const CenterList = React.createClass({
                 </div>
                 <div className="half-item">
                     <p>制度上传: (上传 zip 或者 rar 文件)</p>
-                    <Upload className="upload-box"
-                        name="ratepay"
-                        action={globalConfig.context + "/techservice/cognizance/upload"}
-                        data={{ 'sign': this.props.year + 'institution' }}
-                        beforeUpload={beforeUploadFile}
-                        onChange={(info) => {
-                            if (info.file.status !== 'uploading') {
-                                console.log(info.file, info.fileList);
-                            }
-                            if (info.file.status === 'done') {
-                                if (!info.file.response.error.length) {
-                                    message.success(`${info.file.name} 文件上传成功!`);
-                                } else {
-                                    message.warning(info.file.response.error[0].message);
-                                    return;
-                                };
-                                this.state.systemUrl = info.file.response.data;
-                            } else if (info.file.status === 'error') {
-                                message.error(`${info.file.name} 文件上传失败。`);
-                            }
-                        }}
-                    >
-                        <Button><Icon type="upload" /> 上传文件 </Button>
-                    </Upload>
+                    <div style={{ margin: '10px 0' }}>
+                        <Upload
+                            name="ratepay"
+                            action={globalConfig.context + "/techservice/cognizance/upload"}
+                            data={{ 'sign': 'institution' }}
+                            beforeUpload={beforeUploadFile}
+                            showUploadList={false}
+                            onChange={(info) => {
+                                if (info.file.status !== 'uploading') {
+                                    console.log(info.file, info.fileList);
+                                }
+                                if (info.file.status === 'done') {
+                                    if (!info.file.response.error.length) {
+                                        message.success(`${info.file.name} 文件上传成功!`);
+                                    } else {
+                                        message.warning(info.file.response.error[0].message);
+                                        return;
+                                    };
+                                    this.state.systemUrl = info.file.response.data;
+                                } else if (info.file.status === 'error') {
+                                    message.error(`${info.file.name} 文件上传失败。`);
+                                }
+                            }}
+                        >
+                            <Button><Icon type="upload" /> 上传研发费用台账 </Button>
+                        </Upload>
+                        <p style={{ marginTop: '10px' }}>{this.state.systemUrl ? <a onClick={downloadFile.bind(null, this.state.systemUrl, this.state.systemDownloadFileName)}>{this.state.systemDownloadFileName}</a> : <span>未上传!</span>}</p>
+                    </div>
                 </div>
                 <Button type='primary' onClick={this.saveCenterDetail} style={{ marginBottom: '10px' }}>保存</Button>
                 <div className="content-title">

+ 1 - 1
package.json

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