|
@@ -1,11 +1,7 @@
|
|
|
import React,{Component} from 'react';
|
|
|
import {Button, DatePicker, Input, message, Modal, Radio} from "antd";
|
|
|
import {
|
|
|
- highTechColumns,//高新
|
|
|
- highTechColumnsVIP,//高新会员
|
|
|
- science,//科技
|
|
|
- patent,//专利
|
|
|
- currency,//软著和通用
|
|
|
+ simpleState
|
|
|
} from './type';
|
|
|
import moment from "moment";
|
|
|
import $ from "jquery";
|
|
@@ -17,16 +13,7 @@ class NowProjectStatus extends Component{
|
|
|
super(props);
|
|
|
this.state={
|
|
|
projectStatus: parseInt(props.projectStatus),
|
|
|
- list:
|
|
|
- props.cSort === 3 ? science :
|
|
|
- props.cSort === 6 ? highTechColumnsVIP :
|
|
|
- props.projectType === 0 || props.projectType === 2 || props.projectType === 3 || props.projectType === 4 || props.projectType === 6?
|
|
|
- currency:
|
|
|
- props.projectType === 1 ?
|
|
|
- patent:
|
|
|
- props.projectType === 5 ?
|
|
|
- highTechColumns :
|
|
|
- [],//projectType 0 正常 1专利 2软著 3审计 4双软 5高新 6商标 cSort: 3 科技项目 6: 会员
|
|
|
+ list:simpleState,
|
|
|
dataInfor:Object.assign({},props.projectTypeJSON),
|
|
|
loading: false,
|
|
|
fileList:[],
|
|
@@ -62,10 +49,10 @@ class NowProjectStatus extends Component{
|
|
|
})
|
|
|
return false;
|
|
|
}
|
|
|
- if((this.state.projectStatus === 2 || this.state.projectStatus === 3) && this.state.fileList.length === 0){
|
|
|
- message.warning('暂停附件未上传,请上传后保存!')
|
|
|
- return false;
|
|
|
- }
|
|
|
+ // if((this.state.projectStatus === 2 || this.state.projectStatus === 3) && this.state.fileList.length === 0){
|
|
|
+ // message.warning('暂停附件未上传,请上传后保存!')
|
|
|
+ // return false;
|
|
|
+ // }
|
|
|
this.setState({
|
|
|
loading: true,
|
|
|
})
|
|
@@ -99,20 +86,20 @@ class NowProjectStatus extends Component{
|
|
|
let obj = {
|
|
|
tid:this.props.tid,
|
|
|
projectStatus: this.state.projectStatus,
|
|
|
- timeRecord: JSON.stringify(data)
|
|
|
- }
|
|
|
- if(arr[0]['valueType']){
|
|
|
- //证书编号
|
|
|
- let type = arr[0]['valueType'].filter(v=>v==='certificateNumber');
|
|
|
- if(type.length > 0){
|
|
|
- obj.certificateNumber = this.state.dataInfor[this.state.projectStatus]['certificateNumber']
|
|
|
- }
|
|
|
- //立项金额
|
|
|
- let type1 = arr[0]['valueType'].filter(v=>v==='setUpAmount');
|
|
|
- if(type1.length > 0){
|
|
|
- obj.setUpAmount = this.state.dataInfor[this.state.projectStatus]['setUpAmount']
|
|
|
- }
|
|
|
+ // timeRecord: JSON.stringify(data)
|
|
|
}
|
|
|
+ // if(arr[0]['valueType']){
|
|
|
+ // //证书编号
|
|
|
+ // let type = arr[0]['valueType'].filter(v=>v==='certificateNumber');
|
|
|
+ // if(type.length > 0){
|
|
|
+ // obj.certificateNumber = this.state.dataInfor[this.state.projectStatus]['certificateNumber']
|
|
|
+ // }
|
|
|
+ // //立项金额
|
|
|
+ // let type1 = arr[0]['valueType'].filter(v=>v==='setUpAmount');
|
|
|
+ // if(type1.length > 0){
|
|
|
+ // obj.setUpAmount = this.state.dataInfor[this.state.projectStatus]['setUpAmount']
|
|
|
+ // }
|
|
|
+ // }
|
|
|
$.ajax({
|
|
|
url: globalConfig.context + '/api/admin/orderProject/updateProjectStatus',
|
|
|
method: 'post',
|
|
@@ -297,44 +284,44 @@ class NowProjectStatus extends Component{
|
|
|
))
|
|
|
}
|
|
|
</Radio.Group>
|
|
|
- {
|
|
|
- (this.state.projectStatus === 2 || this.state.projectStatus === 3 || this.state.fileList.length > 0) &&
|
|
|
- <div>
|
|
|
- <div style={{
|
|
|
- paddingTop:'20px',
|
|
|
- paddingBottom:'10px'
|
|
|
- }}>
|
|
|
- <div>暂停附件:</div>
|
|
|
- <div style={{color:'#f00'}}>(请上传截图证明)</div>
|
|
|
- </div>
|
|
|
- <div style={{
|
|
|
- display:(this.state.projectStatus === 2 || this.state.projectStatus === 3) ? 'block':'none'
|
|
|
- }}>
|
|
|
- <ImgList
|
|
|
- domId='nowProjectStatus'
|
|
|
- uploadConfig={{
|
|
|
- action:globalConfig.context + "/api/admin/orderProject/uploadOrderTaskFile",
|
|
|
- data:{ 'sign': "order_task_file"},
|
|
|
- multiple:true,
|
|
|
- listType:"picture-card",
|
|
|
- }}
|
|
|
- onChange={(info)=>{
|
|
|
- let fileList = info.fileList;
|
|
|
- this.setState({ fileList });
|
|
|
- }}
|
|
|
- fileList={this.state.fileList}
|
|
|
- />
|
|
|
- </div>
|
|
|
- <div style={{
|
|
|
- display:(this.state.projectStatus === 2 || this.state.projectStatus === 3) ? 'none':'block'
|
|
|
- }}>
|
|
|
- <ImgList
|
|
|
- domId='nowProjectStatus1'
|
|
|
- fileList={this.state.fileList}
|
|
|
- />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- }
|
|
|
+ {/*{*/}
|
|
|
+ {/* (this.state.projectStatus === 2 || this.state.projectStatus === 3 || this.state.fileList.length > 0) &&*/}
|
|
|
+ {/* <div>*/}
|
|
|
+ {/* <div style={{*/}
|
|
|
+ {/* paddingTop:'20px',*/}
|
|
|
+ {/* paddingBottom:'10px'*/}
|
|
|
+ {/* }}>*/}
|
|
|
+ {/* <div>暂停附件:</div>*/}
|
|
|
+ {/* <div style={{color:'#f00'}}>(请上传截图证明)</div>*/}
|
|
|
+ {/* </div>*/}
|
|
|
+ {/* <div style={{*/}
|
|
|
+ {/* display:(this.state.projectStatus === 2 || this.state.projectStatus === 3) ? 'block':'none'*/}
|
|
|
+ {/* }}>*/}
|
|
|
+ {/* <ImgList*/}
|
|
|
+ {/* domId='nowProjectStatus'*/}
|
|
|
+ {/* uploadConfig={{*/}
|
|
|
+ {/* action:globalConfig.context + "/api/admin/orderProject/uploadOrderTaskFile",*/}
|
|
|
+ {/* data:{ 'sign': "order_task_file"},*/}
|
|
|
+ {/* multiple:true,*/}
|
|
|
+ {/* listType:"picture-card",*/}
|
|
|
+ {/* }}*/}
|
|
|
+ {/* onChange={(info)=>{*/}
|
|
|
+ {/* let fileList = info.fileList;*/}
|
|
|
+ {/* this.setState({ fileList });*/}
|
|
|
+ {/* }}*/}
|
|
|
+ {/* fileList={this.state.fileList}*/}
|
|
|
+ {/* />*/}
|
|
|
+ {/* </div>*/}
|
|
|
+ {/* <div style={{*/}
|
|
|
+ {/* display:(this.state.projectStatus === 2 || this.state.projectStatus === 3) ? 'none':'block'*/}
|
|
|
+ {/* }}>*/}
|
|
|
+ {/* <ImgList*/}
|
|
|
+ {/* domId='nowProjectStatus1'*/}
|
|
|
+ {/* fileList={this.state.fileList}*/}
|
|
|
+ {/* />*/}
|
|
|
+ {/* </div>*/}
|
|
|
+ {/* </div>*/}
|
|
|
+ {/*}*/}
|
|
|
<div style={{
|
|
|
display:'flex',
|
|
|
justifyContent:'center',
|