|
@@ -1,7 +1,7 @@
|
|
import React from 'react';
|
|
import React from 'react';
|
|
import { Icon, Form, Button, Input, Spin, Table, message, Modal, Upload, DatePicker } from 'antd';
|
|
import { Icon, Form, Button, Input, Spin, Table, message, Modal, Upload, DatePicker } from 'antd';
|
|
import './techProduct.less';
|
|
import './techProduct.less';
|
|
-import { beforeUploadFile } from '../../tools.js';
|
|
|
|
|
|
+import { beforeUploadFile, downloadFile } from '../../tools.js';
|
|
import moment from 'moment';
|
|
import moment from 'moment';
|
|
import ajax from 'jquery/src/ajax/xhr.js';
|
|
import ajax from 'jquery/src/ajax/xhr.js';
|
|
import $ from 'jquery/src/ajax';
|
|
import $ from 'jquery/src/ajax';
|
|
@@ -208,6 +208,7 @@ const CenterList = React.createClass({
|
|
this.state.principal = data.data.principal;
|
|
this.state.principal = data.data.principal;
|
|
this.state.systemCatalog = data.data.systemCatalog;
|
|
this.state.systemCatalog = data.data.systemCatalog;
|
|
this.state.systemUrl = data.data.systemUrl;
|
|
this.state.systemUrl = data.data.systemUrl;
|
|
|
|
+ this.state.systemDownloadFileName = data.data.systemDownloadFileName;
|
|
this.state.centerName = data.data.centerName;
|
|
this.state.centerName = data.data.centerName;
|
|
this.state.comment = data.data.comment;
|
|
this.state.comment = data.data.comment;
|
|
this.loadData();
|
|
this.loadData();
|
|
@@ -245,9 +246,11 @@ const CenterList = React.createClass({
|
|
cid: thisdata.cid,
|
|
cid: thisdata.cid,
|
|
projectTimeFormattedDate: thisdata.projectTimeFormattedDate,
|
|
projectTimeFormattedDate: thisdata.projectTimeFormattedDate,
|
|
projectName: thisdata.projectName,
|
|
projectName: thisdata.projectName,
|
|
|
|
+ protocolDownloadFileName:thisdata.protocolDownloadFileName,
|
|
protocolUrl: thisdata.protocolUrl,
|
|
protocolUrl: thisdata.protocolUrl,
|
|
institution: thisdata.institution,
|
|
institution: thisdata.institution,
|
|
termTimeFormattedDate: thisdata.termTimeFormattedDate
|
|
termTimeFormattedDate: thisdata.termTimeFormattedDate
|
|
|
|
+
|
|
});
|
|
});
|
|
};
|
|
};
|
|
this.state.pagination.current = data.data.pageNo;
|
|
this.state.pagination.current = data.data.pageNo;
|
|
@@ -437,30 +440,34 @@ const CenterList = React.createClass({
|
|
</div>
|
|
</div>
|
|
<div className="half-item">
|
|
<div className="half-item">
|
|
<p>制度上传: (上传 zip 或者 rar 文件)</p>
|
|
<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>
|
|
</div>
|
|
<Button type='primary' onClick={this.saveCenterDetail}>保存</Button>
|
|
<Button type='primary' onClick={this.saveCenterDetail}>保存</Button>
|
|
<div className="content-title">
|
|
<div className="content-title">
|