index.jsx 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. import React,{Component} from 'react';
  2. import {Button, DatePicker, Input, message, Modal, Radio} from "antd";
  3. import {
  4. simpleState
  5. } from './type';
  6. import moment from "moment";
  7. import $ from "jquery";
  8. import {splitUrl} from '@/tools'
  9. import ImgList from "../imgList";
  10. class NowProjectStatus extends Component{
  11. constructor(props) {
  12. super(props);
  13. this.state={
  14. projectStatus: parseInt(props.projectStatus),
  15. list:simpleState,
  16. dataInfor:Object.assign({},props.projectTypeJSON),
  17. loading: false,
  18. fileList:[],
  19. }
  20. }
  21. updateProjectStatus(){
  22. let arr = this.state.list.filter(v=>v.id === this.state.projectStatus);
  23. let dataInforLength = this.state.dataInfor[this.state.projectStatus] ? Object.keys(this.state.dataInfor[this.state.projectStatus]).length : 0;
  24. if(this.state.dataInfor[this.state.projectStatus] && this.state.dataInfor[this.state.projectStatus]['title']){
  25. dataInforLength -= 1;
  26. }
  27. if(this.state.dataInfor[this.state.projectStatus] && this.state.dataInfor[this.state.projectStatus]['suspendImg']){
  28. dataInforLength -= 1;
  29. }
  30. if(arr.length !== 0 && arr[0]['valueType'] && dataInforLength !== arr[0]['valueType'].length){
  31. arr[0]['valueType'].map((v)=>{
  32. if(!this.state.dataInfor[this.state.projectStatus][v]){
  33. if(v === 'date'){
  34. message.warning('请将'+arr[0]['name']+'时间补充完整')
  35. }
  36. if(v === 'certificateNumber'){
  37. message.warning('请将'+arr[0]['name']+'的证书编号补充完整')
  38. }
  39. if(v === 'setUpAmount'){
  40. message.warning('请将'+arr[0]['name']+'的立项金额补充完整')
  41. }
  42. if(v === 'appropriation'){
  43. message.warning('请将'+arr[0]['name']+'的拨款金额补充完整')
  44. }
  45. return false;
  46. }
  47. })
  48. return false;
  49. }
  50. // if((this.state.projectStatus === 2 || this.state.projectStatus === 3) && this.state.fileList.length === 0){
  51. // message.warning('暂停附件未上传,请上传后保存!')
  52. // return false;
  53. // }
  54. this.setState({
  55. loading: true,
  56. })
  57. if((this.state.projectStatus === 2 || this.state.projectStatus === 3)){
  58. if (this.state.fileList.length) {
  59. let picArr = []
  60. this.state.fileList.map(function (item) {
  61. if (item.response && item.response.data && item.response.data.length) {
  62. picArr.push(item.response.data)
  63. }
  64. })
  65. if(!this.state.dataInfor[2]){
  66. this.state.dataInfor[2] = {};
  67. }
  68. if(!this.state.dataInfor[3]){
  69. this.state.dataInfor[3] = {};
  70. }
  71. this.state.dataInfor[2]['suspendImg'] = picArr.join(',');
  72. this.state.dataInfor[3]['suspendImg'] = picArr.join(',');
  73. }
  74. }
  75. let data = Object.assign({},this.state.dataInfor);
  76. Object.keys(data).map(v=>{
  77. if(Object.keys(data[v]).length === 0){
  78. delete data[v];
  79. }
  80. })
  81. if(data[this.state.projectStatus]){
  82. data[this.state.projectStatus]['title'] =arr[0]['label'] || arr[0]['name'];
  83. }
  84. let obj = {
  85. tid:this.props.tid,
  86. projectStatus: this.state.projectStatus,
  87. // timeRecord: JSON.stringify(data)
  88. }
  89. // if(arr[0]['valueType']){
  90. // //证书编号
  91. // let type = arr[0]['valueType'].filter(v=>v==='certificateNumber');
  92. // if(type.length > 0){
  93. // obj.certificateNumber = this.state.dataInfor[this.state.projectStatus]['certificateNumber']
  94. // }
  95. // //立项金额
  96. // let type1 = arr[0]['valueType'].filter(v=>v==='setUpAmount');
  97. // if(type1.length > 0){
  98. // obj.setUpAmount = this.state.dataInfor[this.state.projectStatus]['setUpAmount']
  99. // }
  100. // }
  101. $.ajax({
  102. url: globalConfig.context + '/api/admin/orderProject/updateProjectStatus',
  103. method: 'post',
  104. data: obj,
  105. }).done(
  106. function (data) {
  107. this.setState({
  108. loading: false,
  109. })
  110. if (!data.error.length) {
  111. message.success('保存成功!');
  112. this.props.onPreservation(this.state.projectStatus);
  113. } else {
  114. message.warning(data.error[0].message)
  115. }
  116. }.bind(this)
  117. )
  118. }
  119. componentDidMount() {
  120. /*旧数据处理
  121. * endDate 完成时间 对应已提交时间 4
  122. * acceptDate 受理时间 对应已推荐时间 6
  123. * publicityDate 公示时间 对应已拟公示时间 8
  124. * licenceDate 发证时间 对应已下证时间 10
  125. * setUpAmount 立项金额 15
  126. * */
  127. const {endDate,acceptDate,publicityDate,licenceDate,setUpAmount} = this.props.oldData;
  128. if((!this.props.projectTypeJSON[4]) && endDate){
  129. this.state.dataInfor[4]={title:'完成时间'};
  130. this.state.dataInfor[4]['date'] = endDate;
  131. }
  132. if((!this.props.projectTypeJSON[6]) && acceptDate){
  133. this.state.dataInfor[6]={title:'受理时间'};
  134. this.state.dataInfor[6]['date'] = acceptDate;
  135. }
  136. if((!this.props.projectTypeJSON[8]) && publicityDate){
  137. this.state.dataInfor[8]={title:'公示时间'};
  138. this.state.dataInfor[8]['date'] = publicityDate;
  139. }
  140. if((!this.props.projectTypeJSON[10]) && licenceDate){
  141. this.state.dataInfor[10]={title:'发证时间'};
  142. this.state.dataInfor[10]['date'] = licenceDate;
  143. }
  144. // if((!this.props.projectTypeJSON[15]) && setUpAmount){
  145. // this.state.dataInfor[15]={title:'立项金额'};
  146. // this.state.dataInfor[15]['setUpAmount'] = setUpAmount;
  147. // }
  148. //图片
  149. if(this.props.projectTypeJSON[2] && this.props.projectTypeJSON[2]['suspendImg']){
  150. this.setState({
  151. fileList: splitUrl(
  152. this.props.projectTypeJSON[2]['suspendImg'],
  153. ',',
  154. globalConfig.avatarHost + '/upload'
  155. )
  156. })
  157. }else{
  158. this.setState({
  159. fileList: []
  160. })
  161. }
  162. this.setState({
  163. dataInfor: this.state.dataInfor,
  164. })
  165. }
  166. render() {
  167. return(
  168. <Modal
  169. className="customeDetails"
  170. footer=""
  171. title=""
  172. width="700px"
  173. visible={this.props.visible}
  174. onOk={()=>{
  175. this.props.onCancel();
  176. }}
  177. onCancel={()=>{
  178. this.props.onCancel();
  179. }}
  180. >
  181. <div>
  182. <div style={{
  183. paddingBottom: '15px',
  184. fontSize:'18px',
  185. fontWeight:"bolder",
  186. }}>
  187. 项目状态:
  188. </div>
  189. <div>
  190. <Radio.Group
  191. style={{
  192. dispaly:'flex',
  193. flexRow:'column'
  194. }}
  195. value={parseInt(this.state.projectStatus)}
  196. onChange={(e) => {
  197. if(!this.state.dataInfor[e.target.value]){
  198. this.state.dataInfor[e.target.value] = {};
  199. }
  200. this.state.dataInfor[this.state.projectStatus] = this.props.projectTypeJSON[this.state.projectStatus] || {};
  201. this.setState({
  202. projectStatus: e.target.value,
  203. dataInfor:this.state.dataInfor,
  204. });
  205. }}
  206. >
  207. {
  208. this.state.list.map((v,k)=>(
  209. <div key={k} style={{paddingBottom:'15px'}}>
  210. <Radio value={v.id}>{v.name}</Radio>
  211. {
  212. (v.valueType || []).map(d=>(
  213. parseInt(this.state.projectStatus) !== parseInt(v.id) ?
  214. <span style={{marginRight:'15px'}}>
  215. {
  216. d === 'appropriation' ? '拨款金额(万元):' :
  217. d === 'certificateNumber' ? '已出高新证书编号,编号:' :
  218. d === 'setUpAmount' ? '立项金额(万元):' : ''
  219. }
  220. {
  221. this.state.dataInfor[v.id] && this.state.dataInfor[v.id][d]
  222. }
  223. </span>
  224. :d === 'date' ?
  225. <DatePicker
  226. style={{ marginRight: '5px',width:'120px' }}
  227. showTime
  228. format="YYYY-MM-DD"
  229. onOk={() => {}}
  230. value={
  231. this.state.dataInfor[v.id] && this.state.dataInfor[v.id][d] ? moment(this.state.dataInfor[v.id][d]) : null
  232. }
  233. onChange={(data, dataString) => {
  234. console.log(dataString)
  235. if(!this.state.dataInfor[v.id]){
  236. this.state.dataInfor[v.id] = {};
  237. }
  238. if(!dataString && this.state.dataInfor[v.id][d]){
  239. delete this.state.dataInfor[v.id][d];
  240. }else{
  241. this.state.dataInfor[v.id][d] = dataString;
  242. }
  243. this.setState({
  244. dataInfor:this.state.dataInfor,
  245. })
  246. }}
  247. /> :
  248. d === 'setUpAmount' || d === 'certificateNumber' || d === 'appropriation' ? <span>
  249. <span>
  250. {
  251. d === 'appropriation' ? '拨款金额(万元)' :
  252. d === 'certificateNumber' ? '已出高新证书编号,编号' :
  253. d === 'setUpAmount' ? '立项金额(万元)' : ''
  254. }
  255. </span>
  256. <Input
  257. placeholder={v.placeholder}
  258. value={this.state.dataInfor[v.id] ? this.state.dataInfor[v.id][d] : ''}
  259. style={{ width: '120px',marginRight: '5px', }}
  260. onChange={(e) => {
  261. if(!this.state.dataInfor[v.id]){
  262. this.state.dataInfor[v.id] = {};
  263. }
  264. if(!e.target.value && this.state.dataInfor[v.id][d]){
  265. delete this.state.dataInfor[v.id][d];
  266. }else{
  267. this.state.dataInfor[v.id][d] = e.target.value;
  268. }
  269. this.setState({
  270. dataInfor:this.state.dataInfor,
  271. })
  272. }}
  273. />
  274. </span> : null
  275. ))
  276. }
  277. <span style={{color:'#f00',marginLeft:'15px'}}>{v.explain}</span>
  278. </div>
  279. ))
  280. }
  281. </Radio.Group>
  282. {/*{*/}
  283. {/* (this.state.projectStatus === 2 || this.state.projectStatus === 3 || this.state.fileList.length > 0) &&*/}
  284. {/* <div>*/}
  285. {/* <div style={{*/}
  286. {/* paddingTop:'20px',*/}
  287. {/* paddingBottom:'10px'*/}
  288. {/* }}>*/}
  289. {/* <div>暂停附件:</div>*/}
  290. {/* <div style={{color:'#f00'}}>(请上传截图证明)</div>*/}
  291. {/* </div>*/}
  292. {/* <div style={{*/}
  293. {/* display:(this.state.projectStatus === 2 || this.state.projectStatus === 3) ? 'block':'none'*/}
  294. {/* }}>*/}
  295. {/* <ImgList*/}
  296. {/* domId='nowProjectStatus'*/}
  297. {/* uploadConfig={{*/}
  298. {/* action:globalConfig.context + "/api/admin/orderProject/uploadOrderTaskFile",*/}
  299. {/* data:{ 'sign': "order_task_file"},*/}
  300. {/* multiple:true,*/}
  301. {/* listType:"picture-card",*/}
  302. {/* }}*/}
  303. {/* onChange={(info)=>{*/}
  304. {/* let fileList = info.fileList;*/}
  305. {/* this.setState({ fileList });*/}
  306. {/* }}*/}
  307. {/* fileList={this.state.fileList}*/}
  308. {/* />*/}
  309. {/* </div>*/}
  310. {/* <div style={{*/}
  311. {/* display:(this.state.projectStatus === 2 || this.state.projectStatus === 3) ? 'none':'block'*/}
  312. {/* }}>*/}
  313. {/* <ImgList*/}
  314. {/* domId='nowProjectStatus1'*/}
  315. {/* fileList={this.state.fileList}*/}
  316. {/* />*/}
  317. {/* </div>*/}
  318. {/* </div>*/}
  319. {/*}*/}
  320. <div style={{
  321. display:'flex',
  322. justifyContent:'center',
  323. paddingTop:'20px',
  324. paddingBottom: '20px',
  325. }}>
  326. <Button
  327. loading={this.state.loading}
  328. className="cancel"
  329. type="ghost"
  330. onClick={()=>{
  331. this.updateProjectStatus();
  332. }}
  333. >
  334. 保存
  335. </Button>
  336. </div>
  337. <div style={{textAlign:'center',color:'#f00'}}>注:请根据实际项目情况填写</div>
  338. </div>
  339. </div>
  340. </Modal>
  341. )
  342. }
  343. }
  344. export default NowProjectStatus;