techAchievementDesc.jsx 64 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384
  1. import React from 'react';
  2. import { Icon, Tooltip, Modal, message, Spin, Upload, Input, InputNumber, Select, DatePicker, Button, Radio, Form, Cascader, Tag } from 'antd';
  3. import moment from 'moment';
  4. import './techAchievement.less';
  5. import ajax from 'jquery/src/ajax/xhr.js';
  6. import $ from 'jquery/src/ajax';
  7. import { IndustryObject, getIndustryCategory } from '../../DicIndustryList.js';
  8. import { beforeUploadFile, splitUrl, companySearch, getAchievementCategory } from '../../tools.js';
  9. const KeyWordTagGroup = React.createClass({
  10. getInitialState() {
  11. return {
  12. tags: [],
  13. inputVisible: false,
  14. inputValue: ''
  15. };
  16. },
  17. handleClose(removedTag) {
  18. const tags = this.state.tags.filter(tag => tag !== removedTag);
  19. this.props.tagsArr(tags);
  20. this.setState({ tags });
  21. },
  22. showInput() {
  23. this.setState({ inputVisible: true }, () => this.input.focus());
  24. },
  25. handleInputChange(e) {
  26. this.setState({ inputValue: e.target.value });
  27. },
  28. handleInputConfirm() {
  29. const state = this.state;
  30. const inputValue = state.inputValue;
  31. let tags = state.tags;
  32. if (inputValue && tags.indexOf(inputValue) === -1) {
  33. tags = [...tags, inputValue];
  34. }
  35. this.props.tagsArr(tags);
  36. this.setState({
  37. tags,
  38. inputVisible: false,
  39. inputValue: '',
  40. });
  41. },
  42. componentWillMount() {
  43. this.state.tags = this.props.keyWordArr;
  44. },
  45. componentWillReceiveProps(nextProps) {
  46. if (this.props.keyWordArr != nextProps.keyWordArr) {
  47. this.state.tags = nextProps.keyWordArr;
  48. };
  49. },
  50. render() {
  51. const { tags, inputVisible, inputValue } = this.state;
  52. return (
  53. <div className="keyWord-tips">
  54. {tags.map((tag, index) => {
  55. const isLongTag = tag.length > 10;
  56. const tagElem = (
  57. <Tag key={tag} closable={index !== -1} afterClose={() => this.handleClose(tag)}>
  58. {isLongTag ? `${tag.slice(0, 10)}...` : tag}
  59. </Tag>
  60. );
  61. return isLongTag ? <Tooltip title={tag}>{tagElem}</Tooltip> : tagElem;
  62. })}
  63. {inputVisible && (
  64. <Input
  65. ref={input => this.input = input}
  66. type="text"
  67. style={{ width: 78 }}
  68. value={inputValue}
  69. onChange={this.handleInputChange}
  70. onBlur={this.handleInputConfirm}
  71. onPressEnter={this.handleInputConfirm}
  72. />
  73. )}
  74. {!inputVisible && <Button className="addtips" type="dashed" disabled={tags.length > 9 ? true : false} onClick={this.showInput}>+ 新关键词</Button>}
  75. </div>
  76. );
  77. }
  78. });
  79. const PicturesWall = React.createClass({
  80. getInitialState() {
  81. return {
  82. previewVisible: false,
  83. previewImage: '',
  84. fileList: [],
  85. }
  86. },
  87. handleCancel() {
  88. this.setState({ previewVisible: false })
  89. },
  90. handlePreview(file) {
  91. this.setState({
  92. previewImage: file.url || file.thumbUrl,
  93. previewVisible: true,
  94. });
  95. },
  96. handleChange(info) {
  97. let fileList = info.fileList;
  98. this.setState({ fileList });
  99. this.props.fileList(fileList);
  100. },
  101. componentWillReceiveProps(nextProps) {
  102. this.state.fileList = nextProps.pictureUrl;
  103. },
  104. render() {
  105. const { previewVisible, previewImage, fileList } = this.state;
  106. const uploadButton = (
  107. <div>
  108. <Icon type="plus" />
  109. <div className="ant-upload-text">点击上传</div>
  110. </div>
  111. );
  112. return (
  113. <div className="clearfix">
  114. <Upload
  115. action={globalConfig.context + "/api/user/achievement/uploadPicture"}
  116. data={{ 'sign': this.props.pictureSign }}
  117. listType="picture-card"
  118. fileList={fileList}
  119. onPreview={this.handlePreview}
  120. onChange={this.handleChange} >
  121. {fileList.length >= 5 ? null : uploadButton}
  122. </Upload>
  123. <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  124. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  125. </Modal>
  126. </div>
  127. );
  128. }
  129. });
  130. const AchievementDetailShow = Form.create()(React.createClass({
  131. getInitialState() {
  132. return {
  133. visible: false,
  134. loading: false,
  135. textFileList: [],
  136. techPlanFileList: [],
  137. businessPlanFileList: [],
  138. maturityPictureUrl: [],
  139. technicalPictureUrl: [],
  140. tags: []
  141. };
  142. },
  143. loadData(id) {
  144. this.setState({
  145. loading: true
  146. });
  147. $.ajax({
  148. method: "get",
  149. dataType: "json",
  150. crossDomain: false,
  151. url: globalConfig.context + "/api/user/achievement/detail",
  152. data: {
  153. id: id
  154. },
  155. success: function (data) {
  156. let thisData = data.data;
  157. if (!thisData) {
  158. if (data.error && data.error.length) {
  159. message.warning(data.error[0].message);
  160. };
  161. thisData = {};
  162. };
  163. this.setState({
  164. data: thisData,
  165. tags: thisData.keyword ? thisData.keyword.split(",") : [],
  166. technicalPictureUrl: thisData.technicalPictureUrl ? splitUrl(thisData.technicalPictureUrl, ',', globalConfig.avatarHost + '/upload') : [],
  167. maturityPictureUrl: thisData.maturityPictureUrl ? splitUrl(thisData.maturityPictureUrl, ',', globalConfig.avatarHost + '/upload') : []
  168. });
  169. }.bind(this),
  170. }).always(function () {
  171. this.setState({
  172. loading: false
  173. });
  174. }.bind(this));
  175. },
  176. offShelf() {
  177. this.setState({
  178. loading: true
  179. });
  180. $.ajax({
  181. method: "post",
  182. dataType: "json",
  183. crossDomain: false,
  184. url: globalConfig.context + "/api/user/achievement/offShelf",
  185. data: { "id": this.props.data.id }
  186. }).done(function (data) {
  187. if (!data.error.length) {
  188. message.success('撤销成功!');
  189. this.setState({
  190. visible: false,
  191. releaseSubmitVisible: false
  192. });
  193. this.props.handleOk();
  194. } else {
  195. message.warning(data.error[0].message);
  196. }
  197. }.bind(this));
  198. },
  199. componentWillMount() {
  200. if (this.props.data.id) {
  201. this.loadData(this.props.data.id);
  202. } else {
  203. this.state.data = {};
  204. };
  205. },
  206. componentWillReceiveProps(nextProps) {
  207. if (!this.props.visible && nextProps.visible) {
  208. this.state.textFileList = [];
  209. this.state.techPlanFileList = [];
  210. this.state.businessPlanFileList = [];
  211. if (nextProps.data.id) {
  212. this.loadData(nextProps.data.id);
  213. } else {
  214. this.state.data = {};
  215. this.state.tags = [];
  216. this.state.maturityPictureUrl = [];
  217. this.state.technicalPictureUrl = [];
  218. };
  219. this.props.form.resetFields();
  220. };
  221. },
  222. render() {
  223. const theData = this.state.data || {};
  224. const { getFieldDecorator } = this.props.form;
  225. const FormItem = Form.Item
  226. const formItemLayout = {
  227. labelCol: { span: 8 },
  228. wrapperCol: { span: 14 },
  229. };
  230. return (
  231. <Form horizontal onSubmit={this.handleSubmit} id="demand-form">
  232. <Spin spinning={this.state.loading}>
  233. <div className="clearfix">
  234. <FormItem className="half-item"
  235. {...formItemLayout}
  236. label="编号" >
  237. <span>{theData.serialNumber}</span>
  238. </FormItem>
  239. <FormItem className="half-item"
  240. {...formItemLayout}
  241. label="名称" >
  242. <span>{theData.name}</span>
  243. </FormItem>
  244. <FormItem className="half-item"
  245. {...formItemLayout}
  246. label="数据类别" >
  247. {(() => {
  248. switch (theData.dataCategory) {
  249. case "0":
  250. return <span>成果</span>;
  251. case "1":
  252. return <span>技术</span>;
  253. case "2":
  254. return <span>项目</span>;
  255. }
  256. })()}
  257. </FormItem>
  258. <FormItem className="half-item"
  259. {...formItemLayout}
  260. label="类型" >
  261. <span>{getAchievementCategory(theData.category)}</span>
  262. </FormItem>
  263. </div>
  264. <div className="clearfix">
  265. <FormItem className="half-item"
  266. {...formItemLayout}
  267. label="是否发布" >
  268. {(() => {
  269. switch (theData.releaseStatus) {
  270. case "0":
  271. return <span>未发布</span>;
  272. case "1":
  273. return <div>
  274. <span>已发布</span>
  275. <Button style={{ marginLeft: '10px' }} onClick={() => { this.setState({ releaseSubmitVisible: true }); }}>撤消发布</Button>
  276. <Modal maskClosable={false} title="确认"
  277. visible={this.state.releaseSubmitVisible}
  278. width='300px'
  279. footer={null}
  280. onCancel={() => { this.setState({ releaseSubmitVisible: false }) }} >
  281. <span>确认要撤销发布吗?</span>
  282. <Button className="modal-submit" type="primary" onClick={this.offShelf} >确认</Button>
  283. <Button className="modal-submit" type="ghost" onClick={() => { this.setState({ releaseSubmitVisible: false }) }}>取消</Button>
  284. </Modal>
  285. </div>;
  286. }
  287. })()}
  288. </FormItem>
  289. <FormItem className="half-item"
  290. {...formItemLayout}
  291. label="发布时间" >
  292. <span>{theData.releaseDateFormattedDate}</span>
  293. </FormItem>
  294. <FormItem className="half-item"
  295. {...formItemLayout}
  296. label="审核状态" >
  297. {(() => {
  298. switch (theData.auditStatus) {
  299. case "0":
  300. return <span>未提交审核(草稿)</span>;
  301. case "1":
  302. return <span>提交审核</span>;
  303. case "2":
  304. return <span>审核中</span>;
  305. case "3":
  306. return <span>审核通过</span>;
  307. case "4":
  308. return <span>审核未通过</span>;
  309. }
  310. })()}
  311. </FormItem>
  312. </div>
  313. <FormItem
  314. labelCol={{ span: 4 }}
  315. wrapperCol={{ span: 18 }}
  316. label="关键词" >
  317. {this.state.tags.map((tag) => {
  318. return <Tooltip key={tag} title={tag}>
  319. <Tag key={tag}>{tag}</Tag>
  320. </Tooltip>;
  321. })}
  322. </FormItem>
  323. <FormItem
  324. labelCol={{ span: 4 }}
  325. wrapperCol={{ span: 18 }}
  326. label="摘要" >
  327. <span>{theData.summary}</span>
  328. </FormItem>
  329. <FormItem
  330. labelCol={{ span: 4 }}
  331. wrapperCol={{ span: 18 }}
  332. label="成果简介" >
  333. <span>{theData.introduction}</span>
  334. </FormItem>
  335. <FormItem
  336. labelCol={{ span: 4 }}
  337. wrapperCol={{ span: 18 }}
  338. label="技术图片" >
  339. <div className="clearfix">
  340. <Upload className="demandDetailShow-upload"
  341. listType="picture-card"
  342. fileList={this.state.technicalPictureUrl}
  343. onPreview={(file) => {
  344. this.setState({
  345. previewImage: file.url || file.thumbUrl,
  346. previewVisible: true,
  347. });
  348. }} >
  349. </Upload>
  350. <Modal maskClosable={false} footer={null}
  351. visible={this.state.previewVisible}
  352. onCancel={() => { this.setState({ previewVisible: false }) }}>
  353. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  354. </Modal>
  355. </div>
  356. </FormItem>
  357. <FormItem
  358. labelCol={{ span: 4 }}
  359. wrapperCol={{ span: 18 }}
  360. label="应用领域" >
  361. <span>{getIndustryCategory(theData.fieldA, theData.fieldB)}</span>
  362. </FormItem>
  363. <div className="clearfix">
  364. <FormItem className="half-item"
  365. {...formItemLayout}
  366. label="成熟度" >
  367. {(() => {
  368. switch (theData.maturity) {
  369. case "0":
  370. return <span>正在研发</span>;
  371. case "1":
  372. return <span>已有样品</span>;
  373. case "2":
  374. return <span>通过小试</span>;
  375. case "3":
  376. return <span>通过中试</span>;
  377. case "4":
  378. return <span>可以量产</span>;
  379. }
  380. })()}
  381. </FormItem>
  382. <FormItem className="half-item"
  383. {...formItemLayout}
  384. label="创新度" >
  385. {(() => {
  386. switch (theData.innovation) {
  387. case "0":
  388. return <span>行业先进</span>;
  389. case "1":
  390. return <span>行业领先</span>;
  391. case "2":
  392. return <span>国内先进</span>;
  393. case "3":
  394. return <span>国内领先</span>;
  395. case "4":
  396. return <span>国际先进</span>;
  397. case "5":
  398. return <span>国际领先</span>;
  399. }
  400. })()}
  401. </FormItem>
  402. </div>
  403. <FormItem
  404. labelCol={{ span: 4 }}
  405. wrapperCol={{ span: 18 }}
  406. label="成熟度证明材料(图片)" >
  407. <Upload className="demandDetailShow-upload"
  408. listType="picture-card"
  409. fileList={this.state.maturityPictureUrl}
  410. onPreview={(file) => {
  411. this.setState({
  412. previewImage: file.url || file.thumbUrl,
  413. previewVisible: true,
  414. });
  415. }} >
  416. </Upload>
  417. </FormItem>
  418. <FormItem
  419. labelCol={{ span: 4 }}
  420. wrapperCol={{ span: 6 }}
  421. label="成熟度证明材料(文本)" >
  422. <p>{theData.maturityTextFileUrl ?
  423. <span className="download-file">
  424. <a onClick={() => { window.open(globalConfig.context + '/api/user/achievement/download?id=' + this.props.data.id + '&sign=achievement_maturity_text_file') }}>成熟度证明材料(文本文件)</a>
  425. </span>
  426. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  427. </FormItem>
  428. <FormItem
  429. labelCol={{ span: 4 }}
  430. wrapperCol={{ span: 18 }}
  431. label="成熟度证明材料(视频地址)" >
  432. <span>{theData.maturityVideoUrl}</span>
  433. </FormItem>
  434. <div className="clearfix" >
  435. <FormItem className="half-item"
  436. {...formItemLayout}
  437. label="成果所有人名称" >
  438. <span>{theData.ownerName}</span>
  439. </FormItem>
  440. <FormItem className="half-item"
  441. {...formItemLayout}
  442. label="所有人证件号" >
  443. <span>{theData.ownerIdNumber}</span>
  444. </FormItem>
  445. <FormItem className="half-item"
  446. {...formItemLayout}
  447. label="所有人联系电话" >
  448. <span>{theData.ownerMobile}</span>
  449. </FormItem>
  450. <FormItem className="half-item"
  451. {...formItemLayout}
  452. label="所有人电子邮箱" >
  453. <span>{theData.ownerEmail}</span>
  454. </FormItem>
  455. <FormItem className="half-item"
  456. {...formItemLayout}
  457. label="所有人通信地址" >
  458. <span>{theData.ownerPostalAddress}</span>
  459. </FormItem>
  460. </div>
  461. <div className="clearfix">
  462. <FormItem className="half-item"
  463. {...formItemLayout}
  464. label="所有人类型" >
  465. {(() => {
  466. switch (theData.ownerType) {
  467. case "0":
  468. return <span>个人</span>;
  469. case "1":
  470. return <span>组织</span>;
  471. }
  472. })()}
  473. </FormItem>
  474. </div>
  475. {theData.ownerType == "1" ? <div className="clearfix">
  476. <FormItem className="half-item"
  477. {...formItemLayout}
  478. label="所属组织名称" >
  479. <span>{theData.orgName}</span>
  480. </FormItem>
  481. <FormItem className="half-item"
  482. {...formItemLayout}
  483. label="所属组织地址" >
  484. <span>{theData.orgAddress}</span>
  485. </FormItem>
  486. <FormItem className="half-item"
  487. {...formItemLayout}
  488. label="所属组织邮箱" >
  489. <span>{theData.orgEmail}</span>
  490. </FormItem>
  491. <FormItem className="half-item"
  492. {...formItemLayout}
  493. label="所属组织联系人名称" >
  494. <span>{theData.orgContacts}</span>
  495. </FormItem>
  496. <FormItem className="half-item"
  497. {...formItemLayout}
  498. label="所属组织联系人电话" >
  499. <span>{theData.orgContactsMobile}</span>
  500. </FormItem>
  501. </div> : <div></div>}
  502. <div className="clearfix">
  503. <FormItem className="half-item"
  504. {...formItemLayout}
  505. label="合作方式" >
  506. {(() => {
  507. switch (theData.cooperationMode) {
  508. case "0":
  509. return <span>技术转让</span>;
  510. case "1":
  511. return <span>授权生产</span>;
  512. }
  513. })()}
  514. </FormItem>
  515. <FormItem className="half-item"
  516. {...formItemLayout}
  517. label="转让方式" >
  518. {(() => {
  519. switch (theData.transferMode) {
  520. case "0":
  521. return <span>完全转让</span>;
  522. case "1":
  523. return <span>许可转让</span>;
  524. case "2":
  525. return <span>技术入股</span>;
  526. }
  527. })()}
  528. </FormItem>
  529. </div>
  530. <div className="clearfix">
  531. <FormItem className="half-item"
  532. {...formItemLayout}
  533. label="议价方式" >
  534. {(() => {
  535. switch (theData.bargainingMode) {
  536. case "0":
  537. return <span>面议</span>;
  538. case "1":
  539. return <span>定价</span>;
  540. }
  541. })()}
  542. </FormItem>
  543. <FormItem className="half-item"
  544. {...formItemLayout}
  545. label="转让价格" >
  546. <span>{theData.transferPrice} 万元</span>
  547. </FormItem>
  548. </div>
  549. <FormItem
  550. labelCol={{ span: 4 }}
  551. wrapperCol={{ span: 18 }}
  552. label="技术场景" >
  553. <span>{theData.technicalScene}</span>
  554. </FormItem>
  555. <FormItem
  556. labelCol={{ span: 4 }}
  557. wrapperCol={{ span: 18 }}
  558. label="技术突破" >
  559. <span>{theData.breakthrough}</span>
  560. </FormItem>
  561. <FormItem
  562. labelCol={{ span: 4 }}
  563. wrapperCol={{ span: 18 }}
  564. label="专利情况" >
  565. <span>{theData.patentCase}</span>
  566. </FormItem>
  567. <FormItem
  568. labelCol={{ span: 4 }}
  569. wrapperCol={{ span: 18 }}
  570. label="获奖情况" >
  571. <span>{theData.awards}</span>
  572. </FormItem>
  573. <FormItem
  574. labelCol={{ span: 4 }}
  575. wrapperCol={{ span: 18 }}
  576. label="技术团队情况" >
  577. <span>{theData.teamDes}</span>
  578. </FormItem>
  579. <FormItem
  580. labelCol={{ span: 4 }}
  581. wrapperCol={{ span: 18 }}
  582. label="技术参数" >
  583. <span>{theData.parameter}</span>
  584. </FormItem>
  585. <FormItem
  586. labelCol={{ span: 4 }}
  587. wrapperCol={{ span: 6 }}
  588. label="技术方案" >
  589. <p>{theData.techPlanUrl ?
  590. <span className="download-file">
  591. <a onClick={() => { window.open(globalConfig.context + '/api/user/achievement/download?id=' + this.props.data.id + '&sign=achievement_tech_plan') }}>技术方案</a>
  592. </span>
  593. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  594. </FormItem>
  595. <FormItem
  596. labelCol={{ span: 4 }}
  597. wrapperCol={{ span: 6 }}
  598. label="商业计划书" >
  599. <p>{theData.businessPlanUrl ?
  600. <span className="download-file">
  601. <a onClick={() => { window.open(globalConfig.context + '/api/user/achievement/download?id=' + this.props.data.id + '&sign=achievement_business_plan') }}>商业计划书</a>
  602. </span>
  603. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  604. </FormItem>
  605. <FormItem wrapperCol={{ span: 12, offset: 4 }}>
  606. <Button className="set-submit" type="ghost" onClick={this.props.closeDesc}>取消</Button>
  607. </FormItem>
  608. </Spin>
  609. </Form >
  610. )
  611. }
  612. }));
  613. const AchievementDetailForm = Form.create()(React.createClass({
  614. getInitialState() {
  615. return {
  616. visible: false,
  617. loading: false,
  618. auditStatus: 0,
  619. textFileList: [],
  620. techPlanFileList: [],
  621. businessPlanFileList: [],
  622. maturityPictureUrl: [],
  623. technicalPictureUrl: [],
  624. tags: []
  625. };
  626. },
  627. loadData(id) {
  628. this.setState({
  629. loading: true
  630. });
  631. $.ajax({
  632. method: "get",
  633. dataType: "json",
  634. crossDomain: false,
  635. url: globalConfig.context + "/api/user/achievement/detail",
  636. data: {
  637. id: id
  638. },
  639. success: function (data) {
  640. let thisData = data.data;
  641. if (!thisData) {
  642. if (data.error && data.error.length) {
  643. message.warning(data.error[0].message);
  644. };
  645. thisData = {};
  646. };
  647. this.setState({
  648. data: thisData,
  649. orgDisplay: thisData.ownerType,
  650. tags: thisData.keyword ? thisData.keyword.split(",") : [],
  651. technicalPictureUrl: thisData.technicalPictureUrl ? splitUrl(thisData.technicalPictureUrl, ',', globalConfig.avatarHost + '/upload') : [],
  652. maturityPictureUrl: thisData.maturityPictureUrl ? splitUrl(thisData.maturityPictureUrl, ',', globalConfig.avatarHost + '/upload') : []
  653. });
  654. }.bind(this),
  655. }).always(function () {
  656. this.setState({
  657. loading: false
  658. });
  659. }.bind(this));
  660. },
  661. getTagsArr(e) {
  662. this.setState({ tags: e });
  663. },
  664. getMaturityPictureUrl(e) {
  665. this.setState({ maturityPictureUrl: e });
  666. },
  667. getTechnicalPictureUrl(e) {
  668. this.setState({ technicalPictureUrl: e });
  669. },
  670. handleSubmit(e) {
  671. e.preventDefault();
  672. this.props.form.validateFields((err, values) => {
  673. //keyword长度判断
  674. if (this.state.tags.length < 3) {
  675. message.warning('关键词数量不能小于3个!');
  676. return;
  677. };
  678. //url转化
  679. let theTechnicalPictureUrl = [];
  680. if (this.state.technicalPictureUrl.length) {
  681. let picArr = [];
  682. this.state.technicalPictureUrl.map(function (item) {
  683. picArr.push(item.response.data);
  684. });
  685. theTechnicalPictureUrl = picArr.join(",");
  686. };
  687. let theMaturityPictureUrl = [];
  688. if (this.state.maturityPictureUrl.length) {
  689. let picArr = [];
  690. this.state.maturityPictureUrl.map(function (item) {
  691. picArr.push(item.response.data);
  692. });
  693. theMaturityPictureUrl = picArr.join(",");
  694. };
  695. if (!err) {
  696. this.setState({
  697. loading: true
  698. });
  699. $.ajax({
  700. method: "POST",
  701. dataType: "json",
  702. crossDomain: false,
  703. url: this.props.data.id ? globalConfig.context + '/api/user/achievement/update' : globalConfig.context + '/api/user/achievement/apply',
  704. data: {
  705. id: this.props.data.id,
  706. dataCategory: values.dataCategory,
  707. serialNumber: this.props.data.serialNumber,
  708. name: values.name,
  709. keyword: this.state.tags ? this.state.tags.join(",") : [],
  710. category: values.category,
  711. summary: values.summary,
  712. introduction: values.introduction,
  713. technicalPictureUrl: theTechnicalPictureUrl,
  714. fieldA: values.field ? values.field[0] : undefined,
  715. fieldB: values.field ? values.field[1] : undefined,
  716. maturity: values.maturity,
  717. maturityPictureUrl: theMaturityPictureUrl,
  718. maturityTextFileUrl: this.state.maturityTextFileUrl,
  719. maturityVideoUrl: values.maturityVideoUrl,
  720. innovation: values.innovation,
  721. ownerName: values.ownerName,
  722. ownerType: values.ownerType,
  723. ownerIdNumber: values.ownerIdNumber,
  724. ownerMobile: values.ownerMobile,
  725. ownerEmail: values.ownerEmail,
  726. ownerPostalAddress: values.ownerPostalAddress,
  727. cooperationMode: values.cooperationMode,
  728. transferMode: values.transferMode,
  729. bargainingMode: values.bargainingMode,
  730. transferPrice: values.transferPrice,
  731. technicalScene: values.technicalScene,
  732. breakthrough: values.breakthrough,
  733. patentCase: values.patentCase,
  734. awards: values.awards,
  735. teamDes: values.teamDes,
  736. parameter: values.parameter,
  737. orgId: values.orgId,
  738. orgName: values.orgName,
  739. orgAddress: values.orgAddress,
  740. orgEmail: values.orgEmail,
  741. orgContacts: values.orgContacts,
  742. orgContactsMobile: values.orgContactsMobile,
  743. releaseStatus: values.releaseStatus,
  744. techPlanUrl: this.state.techPlanUrl,
  745. businessPlanUrl: this.state.businessPlanUrl,
  746. auditStatus: this.state.auditStatus
  747. }
  748. }).done(function (data) {
  749. this.state.auditStatus = 0;
  750. if (!data.error.length) {
  751. message.success('保存成功!');
  752. this.setState({
  753. visible: false
  754. });
  755. this.props.handleOk();
  756. } else {
  757. message.warning(data.error[0].message);
  758. }
  759. }.bind(this));
  760. }
  761. });
  762. },
  763. componentWillMount() {
  764. if (this.props.data.id) {
  765. this.loadData(this.props.data.id);
  766. } else {
  767. this.state.data = {};
  768. };
  769. },
  770. componentWillReceiveProps(nextProps) {
  771. if (!this.props.visible && nextProps.visible) {
  772. this.state.textFileList = [];
  773. this.state.techPlanFileList = [];
  774. this.state.businessPlanFileList = [];
  775. if (nextProps.data.id) {
  776. this.loadData(nextProps.data.id);
  777. } else {
  778. this.state.data = {};
  779. this.state.tags = [];
  780. this.state.maturityPictureUrl = [];
  781. this.state.technicalPictureUrl = [];
  782. };
  783. this.props.form.resetFields();
  784. };
  785. },
  786. render() {
  787. const theData = this.state.data || {};
  788. const { getFieldDecorator } = this.props.form;
  789. const FormItem = Form.Item
  790. const formItemLayout = {
  791. labelCol: { span: 8 },
  792. wrapperCol: { span: 14 },
  793. };
  794. return (
  795. <Form horizontal onSubmit={this.handleSubmit} id="demand-form">
  796. <div className="clearfix">
  797. <FormItem className="half-item"
  798. {...formItemLayout}
  799. label="编号" >
  800. <span>{theData.serialNumber}</span>
  801. </FormItem>
  802. <FormItem className="half-item"
  803. {...formItemLayout}
  804. label="名称" >
  805. {getFieldDecorator('name', {
  806. rules: [{ required: true, message: '此项为必填项!' }],
  807. initialValue: theData.name
  808. })(
  809. <Input />
  810. )}
  811. </FormItem>
  812. <FormItem className="half-item"
  813. {...formItemLayout}
  814. label="数据类别" >
  815. {getFieldDecorator('dataCategory', {
  816. rules: [{ required: true, message: '此项为必填项!' }],
  817. initialValue: theData.dataCategory
  818. })(
  819. <Select placeholder="选择数据类型" style={{ width: 160 }} >
  820. <Select.Option value="0" >成果</Select.Option>
  821. <Select.Option value="1" >技术</Select.Option>
  822. <Select.Option value="2" >项目</Select.Option>
  823. </Select>
  824. )}
  825. </FormItem>
  826. <FormItem className="half-item"
  827. {...formItemLayout}
  828. label="类型" >
  829. {getFieldDecorator('category', {
  830. rules: [{ required: true, message: '此项为必填项!' }],
  831. initialValue: theData.category
  832. })(
  833. <Select style={{ width: 160 }} placeholder="请选择成果类型">
  834. {this.props.achievementCategoryOption}
  835. </Select>
  836. )}
  837. </FormItem>
  838. <div className="clearfix">
  839. <FormItem className="half-item"
  840. {...formItemLayout}
  841. label="是否发布" >
  842. {(() => {
  843. switch (theData.releaseStatus) {
  844. case "0":
  845. return <span>未发布</span>;
  846. case "1":
  847. return <span>已发布</span>;
  848. }
  849. })()}
  850. </FormItem>
  851. <FormItem className="half-item"
  852. {...formItemLayout}
  853. label="发布时间" >
  854. <span>{theData.releaseDateFormattedDate}</span>
  855. </FormItem>
  856. <FormItem className="half-item"
  857. {...formItemLayout}
  858. label="审核状态" >
  859. {(() => {
  860. switch (theData.auditStatus) {
  861. case "0":
  862. return <span>未提交审核(草稿)</span>;
  863. case "1":
  864. return <span>提交审核</span>;
  865. case "2":
  866. return <span>审核中</span>;
  867. case "3":
  868. return <span>审核通过</span>;
  869. case "4":
  870. return <span>审核未通过</span>;
  871. }
  872. })()}
  873. </FormItem>
  874. </div>
  875. </div>
  876. <FormItem
  877. labelCol={{ span: 4 }}
  878. wrapperCol={{ span: 18 }}
  879. label="关键词" >
  880. <KeyWordTagGroup
  881. keyWordArr={this.state.tags}
  882. tagsArr={this.getTagsArr}
  883. visible={this.props.visible} />
  884. </FormItem>
  885. <FormItem
  886. labelCol={{ span: 4 }}
  887. wrapperCol={{ span: 18 }}
  888. label="摘要" >
  889. {getFieldDecorator('summary', {
  890. initialValue: theData.summary
  891. })(
  892. <Input type="textarea" rows={4} />
  893. )}
  894. </FormItem>
  895. <FormItem
  896. labelCol={{ span: 4 }}
  897. wrapperCol={{ span: 18 }}
  898. label="成果简介" >
  899. {getFieldDecorator('introduction', {
  900. initialValue: theData.introduction
  901. })(
  902. <Input type="textarea" rows={4} placeholder="项目成果简介;项目核心创新点;项目详细用途;预期效益说明;主要技术(性能)指标;市场前景;应用范围;发展历程。" />
  903. )}
  904. </FormItem>
  905. <FormItem
  906. labelCol={{ span: 4 }}
  907. wrapperCol={{ span: 18 }}
  908. label="技术图片" >
  909. <PicturesWall
  910. pictureSign="achievement_technical_picture"
  911. fileList={this.getTechnicalPictureUrl}
  912. pictureUrl={this.state.technicalPictureUrl} />
  913. <p>图片建议:专利证书或专利申请书图片、技术图纸、样品图片、技术相关网络图片;成熟度处于非研发阶段的项目,必须上传样品图片,如未上传,成熟度将视为处在研发阶段。</p>
  914. </FormItem>
  915. <FormItem
  916. labelCol={{ span: 4 }}
  917. wrapperCol={{ span: 18 }}
  918. label="应用领域" >
  919. {getFieldDecorator('field', {
  920. rules: [{ type: 'array', required: true, message: '此项为必填项!' }],
  921. initialValue: [theData.fieldA, theData.fieldB]
  922. })(
  923. <Cascader style={{ width: 300 }} options={IndustryObject} placeholder="应用领域" />
  924. )}
  925. </FormItem>
  926. <div className="clearfix">
  927. <FormItem className="half-item"
  928. {...formItemLayout}
  929. label="成熟度" >
  930. {getFieldDecorator('maturity', {
  931. initialValue: theData.maturity
  932. })(
  933. <Select placeholder="选择成熟度" style={{ width: 160 }} >
  934. <Select.Option value="0" >正在研发</Select.Option>
  935. <Select.Option value="1" >已有样品</Select.Option>
  936. <Select.Option value="2" >通过小试</Select.Option>
  937. <Select.Option value="3" >通过中试</Select.Option>
  938. <Select.Option value="4" >可以量产</Select.Option>
  939. </Select>
  940. )}
  941. </FormItem>
  942. <FormItem className="half-item"
  943. {...formItemLayout}
  944. label="创新度" >
  945. {getFieldDecorator('innovation', {
  946. initialValue: theData.innovation
  947. })(
  948. <Select placeholder="选择创新度" style={{ width: 160 }} >
  949. <Select.Option value="0" >行业先进</Select.Option>
  950. <Select.Option value="1" >行业领先</Select.Option>
  951. <Select.Option value="2" >国内先进</Select.Option>
  952. <Select.Option value="3" >国内领先</Select.Option>
  953. <Select.Option value="4" >国际先进</Select.Option>
  954. <Select.Option value="5" >国际领先</Select.Option>
  955. </Select>
  956. )}
  957. </FormItem>
  958. </div>
  959. <FormItem
  960. labelCol={{ span: 4 }}
  961. wrapperCol={{ span: 18 }}
  962. label="成熟度证明材料(图片)" >
  963. <PicturesWall
  964. pictureSign="achievement_maturity_picture"
  965. fileList={this.getMaturityPictureUrl}
  966. pictureUrl={this.state.maturityPictureUrl} />
  967. </FormItem>
  968. <FormItem
  969. labelCol={{ span: 4 }}
  970. wrapperCol={{ span: 6 }}
  971. label="成熟度证明材料(文本)" >
  972. <Upload
  973. name="ratepay"
  974. action={globalConfig.context + "/api/user/achievement/uploadTextFile"}
  975. data={{ 'sign': 'achievement_maturity_text_file' }}
  976. beforeUpload={beforeUploadFile}
  977. fileList={this.state.textFileList}
  978. onChange={(info) => {
  979. if (info.file.status !== 'uploading') {
  980. console.log(info.file, info.fileList);
  981. }
  982. if (info.file.status === 'done') {
  983. if (!info.file.response.error.length) {
  984. message.success(`${info.file.name} 文件上传成功!`);
  985. } else {
  986. message.warning(info.file.response.error[0].message);
  987. return;
  988. };
  989. this.state.maturityTextFileUrl = info.file.response.data;
  990. } else if (info.file.status === 'error') {
  991. message.error(`${info.file.name} 文件上传失败。`);
  992. };
  993. this.setState({ textFileList: info.fileList.slice(-1) });
  994. }} >
  995. <Button><Icon type="upload" /> 上传需求文本文件 </Button>
  996. </Upload>
  997. <p style={{ marginTop: '10px' }}>{theData.maturityTextFileUrl ?
  998. <span className="download-file">
  999. <a onClick={() => { window.open(globalConfig.context + '/api/user/achievement/download?id=' + this.props.data.id + '&sign=achievement_maturity_text_file') }}>成熟度证明材料(文本文件)</a>
  1000. </span>
  1001. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  1002. </FormItem>
  1003. <FormItem
  1004. labelCol={{ span: 4 }}
  1005. wrapperCol={{ span: 18 }}
  1006. label="成熟度证明材料(视频地址)" >
  1007. {getFieldDecorator('maturityVideoUrl', {
  1008. initialValue: theData.maturityVideoUrl
  1009. })(
  1010. <Input />
  1011. )}
  1012. </FormItem>
  1013. <div className="clearfix" >
  1014. <FormItem className="half-item"
  1015. {...formItemLayout}
  1016. label="成果所有人名称" >
  1017. {getFieldDecorator('ownerName', {
  1018. rules: [{ required: true, message: '此项为必填项!' }],
  1019. initialValue: theData.ownerName
  1020. })(
  1021. <Input />
  1022. )}
  1023. </FormItem>
  1024. <FormItem className="half-item"
  1025. {...formItemLayout}
  1026. label="所有人证件号" >
  1027. {getFieldDecorator('ownerIdNumber', {
  1028. rules: [{ required: true, message: '此项为必填项!' }],
  1029. initialValue: theData.ownerIdNumber
  1030. })(
  1031. <Input />
  1032. )}
  1033. </FormItem>
  1034. <FormItem className="half-item"
  1035. {...formItemLayout}
  1036. label="所有人联系电话" >
  1037. {getFieldDecorator('ownerMobile', {
  1038. rules: [{ required: true, message: '此项为必填项!' }],
  1039. initialValue: theData.ownerMobile
  1040. })(
  1041. <Input />
  1042. )}
  1043. </FormItem>
  1044. <FormItem className="half-item"
  1045. {...formItemLayout}
  1046. label="所有人电子邮箱" >
  1047. {getFieldDecorator('ownerEmail', {
  1048. rules: [{ required: true, message: '此项为必填项!' }],
  1049. initialValue: theData.ownerEmail
  1050. })(
  1051. <Input />
  1052. )}
  1053. </FormItem>
  1054. <FormItem className="half-item"
  1055. {...formItemLayout}
  1056. label="所有人通信地址" >
  1057. {getFieldDecorator('ownerPostalAddress', {
  1058. rules: [{ required: true, message: '此项为必填项!' }],
  1059. initialValue: theData.ownerPostalAddress
  1060. })(
  1061. <Input />
  1062. )}
  1063. </FormItem>
  1064. </div>
  1065. <div className="clearfix">
  1066. <FormItem className="half-item"
  1067. {...formItemLayout}
  1068. label="所有人类型" >
  1069. {getFieldDecorator('ownerType', {
  1070. rules: [{ required: true, message: '此项为必填项!' }],
  1071. initialValue: theData.ownerType
  1072. })(
  1073. <Radio.Group onChange={(e) => { this.setState({ orgDisplay: e.target.value }); }}>
  1074. <Radio value="0">个人</Radio>
  1075. <Radio value="1">组织</Radio>
  1076. </Radio.Group>
  1077. )}
  1078. </FormItem>
  1079. </div>
  1080. <div className="clearfix" style={{ display: this.state.orgDisplay == '1' ? 'block' : 'none' }}>
  1081. <FormItem className="half-item"
  1082. {...formItemLayout}
  1083. label="所属组织名称" >
  1084. {getFieldDecorator('orgName', {
  1085. initialValue: theData.orgName
  1086. })(
  1087. <Input />
  1088. )}
  1089. </FormItem>
  1090. <FormItem className="half-item"
  1091. {...formItemLayout}
  1092. label="所属组织地址" >
  1093. {getFieldDecorator('orgAddress', {
  1094. initialValue: theData.orgAddress
  1095. })(
  1096. <Input />
  1097. )}
  1098. </FormItem>
  1099. <FormItem className="half-item"
  1100. {...formItemLayout}
  1101. label="所属组织邮箱" >
  1102. {getFieldDecorator('orgEmail', {
  1103. initialValue: theData.orgEmail
  1104. })(
  1105. <Input />
  1106. )}
  1107. </FormItem>
  1108. <FormItem className="half-item"
  1109. {...formItemLayout}
  1110. label="所属组织联系人名称" >
  1111. {getFieldDecorator('orgContacts', {
  1112. initialValue: theData.orgContacts
  1113. })(
  1114. <Input />
  1115. )}
  1116. </FormItem>
  1117. <FormItem className="half-item"
  1118. {...formItemLayout}
  1119. label="所属组织联系人电话" >
  1120. {getFieldDecorator('orgContactsMobile', {
  1121. initialValue: theData.orgContactsMobile
  1122. })(
  1123. <Input />
  1124. )}
  1125. </FormItem>
  1126. </div>
  1127. <div className="clearfix">
  1128. <FormItem className="half-item"
  1129. {...formItemLayout}
  1130. label="合作方式" >
  1131. {getFieldDecorator('cooperationMode', {
  1132. rules: [{ required: true, message: '此项为必填项!' }],
  1133. initialValue: theData.cooperationMode
  1134. })(
  1135. <Radio.Group>
  1136. <Radio value="0">技术转让</Radio>
  1137. <Radio value="1">授权生产</Radio>
  1138. </Radio.Group>
  1139. )}
  1140. </FormItem>
  1141. <FormItem className="half-item"
  1142. {...formItemLayout}
  1143. label="转让方式" >
  1144. {getFieldDecorator('transferMode', {
  1145. initialValue: theData.transferMode
  1146. })(
  1147. <Select placeholder="选择转让方式" style={{ width: 160 }} >
  1148. <Select.Option value="0" >完全转让</Select.Option>
  1149. <Select.Option value="1" >许可转让</Select.Option>
  1150. <Select.Option value="2" >技术入股</Select.Option>
  1151. </Select>
  1152. )}
  1153. </FormItem>
  1154. </div>
  1155. <div className="clearfix">
  1156. <FormItem className="half-item"
  1157. {...formItemLayout}
  1158. label="议价方式" >
  1159. {getFieldDecorator('bargainingMode', {
  1160. initialValue: theData.bargainingMode
  1161. })(
  1162. <Radio.Group>
  1163. <Radio value="0">面议</Radio>
  1164. <Radio value="1">定价</Radio>
  1165. </Radio.Group>
  1166. )}
  1167. </FormItem>
  1168. <FormItem className="half-item"
  1169. {...formItemLayout}
  1170. label="转让价格" >
  1171. {getFieldDecorator('transferPrice', {
  1172. initialValue: theData.transferPrice
  1173. })(
  1174. <InputNumber />
  1175. )}
  1176. <span style={{ marginLeft: '20px' }}>万元</span>
  1177. </FormItem>
  1178. </div>
  1179. <FormItem
  1180. labelCol={{ span: 4 }}
  1181. wrapperCol={{ span: 18 }}
  1182. label="技术场景" >
  1183. {getFieldDecorator('technicalScene', {
  1184. initialValue: theData.technicalScene
  1185. })(
  1186. <Input type="textarea" rows={2} placeholder="说明解决了什么问题。" />
  1187. )}
  1188. </FormItem>
  1189. <FormItem
  1190. labelCol={{ span: 4 }}
  1191. wrapperCol={{ span: 18 }}
  1192. label="技术突破" >
  1193. {getFieldDecorator('breakthrough', {
  1194. initialValue: theData.breakthrough
  1195. })(
  1196. <Input type="textarea" rows={2} placeholder="说明该技术成果突破性的研究。" />
  1197. )}
  1198. </FormItem>
  1199. <FormItem
  1200. labelCol={{ span: 4 }}
  1201. wrapperCol={{ span: 18 }}
  1202. label="专利情况" >
  1203. {getFieldDecorator('patentCase', {
  1204. initialValue: theData.patentCase
  1205. })(
  1206. <Input type="textarea" rows={2} placeholder="一个“技术”可能由多个专利构成,需要说明技术-专利的关系。" />
  1207. )}
  1208. </FormItem>
  1209. <FormItem
  1210. labelCol={{ span: 4 }}
  1211. wrapperCol={{ span: 18 }}
  1212. label="获奖情况" >
  1213. {getFieldDecorator('awards', {
  1214. initialValue: theData.awards
  1215. })(
  1216. <Input type="textarea" rows={2} placeholder="一个“技术”可能存在社会奖励情况,需要说明社会奖励情况。" />
  1217. )}
  1218. </FormItem>
  1219. <FormItem
  1220. labelCol={{ span: 4 }}
  1221. wrapperCol={{ span: 18 }}
  1222. label="技术团队情况" >
  1223. {getFieldDecorator('teamDes', {
  1224. initialValue: theData.teamDes
  1225. })(
  1226. <Input type="textarea" rows={2} placeholder="一个“技术”、“项目”可能存在团队,需要说明团队情况。" />
  1227. )}
  1228. </FormItem>
  1229. <FormItem
  1230. labelCol={{ span: 4 }}
  1231. wrapperCol={{ span: 18 }}
  1232. label="技术参数" >
  1233. {getFieldDecorator('parameter', {
  1234. initialValue: theData.parameter
  1235. })(
  1236. <Input type="textarea" rows={2} placeholder="描述技术参数信息" />
  1237. )}
  1238. </FormItem>
  1239. <FormItem
  1240. labelCol={{ span: 4 }}
  1241. wrapperCol={{ span: 6 }}
  1242. label="技术方案" >
  1243. <Upload
  1244. name="ratepay"
  1245. action={globalConfig.context + "/api/user/achievement/uploadTextFile"}
  1246. data={{ 'sign': 'achievement_tech_plan' }}
  1247. beforeUpload={beforeUploadFile}
  1248. fileList={this.state.techPlanFileList}
  1249. onChange={(info) => {
  1250. if (info.file.status !== 'uploading') {
  1251. console.log(info.file, info.fileList);
  1252. }
  1253. if (info.file.status === 'done') {
  1254. if (!info.file.response.error.length) {
  1255. message.success(`${info.file.name} 文件上传成功!`);
  1256. } else {
  1257. message.warning(info.file.response.error[0].message);
  1258. return;
  1259. };
  1260. this.state.techPlanUrl = info.file.response.data;
  1261. } else if (info.file.status === 'error') {
  1262. message.error(`${info.file.name} 文件上传失败。`);
  1263. };
  1264. this.setState({ techPlanFileList: info.fileList.slice(-1) });
  1265. }} >
  1266. <Button><Icon type="upload" /> 上传技术方案文件 </Button>
  1267. </Upload>
  1268. <p style={{ marginTop: '10px' }}>{theData.techPlanUrl ?
  1269. <span className="download-file">
  1270. <a onClick={() => { window.open(globalConfig.context + '/api/user/achievement/download?id=' + this.props.data.id + '&sign=achievement_tech_plan') }}>技术方案</a>
  1271. </span>
  1272. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  1273. </FormItem>
  1274. <FormItem
  1275. labelCol={{ span: 4 }}
  1276. wrapperCol={{ span: 6 }}
  1277. label="商业计划书" >
  1278. <Upload
  1279. name="ratepay"
  1280. action={globalConfig.context + "/api/user/achievement/uploadTextFile"}
  1281. data={{ 'sign': 'achievement_business_plan' }}
  1282. beforeUpload={beforeUploadFile}
  1283. fileList={this.state.businessPlanFileList}
  1284. onChange={(info) => {
  1285. if (info.file.status !== 'uploading') {
  1286. console.log(info.file, info.fileList);
  1287. }
  1288. if (info.file.status === 'done') {
  1289. if (!info.file.response.error.length) {
  1290. message.success(`${info.file.name} 文件上传成功!`);
  1291. } else {
  1292. message.warning(info.file.response.error[0].message);
  1293. return;
  1294. };
  1295. this.state.businessPlanUrl = info.file.response.data;
  1296. } else if (info.file.status === 'error') {
  1297. message.error(`${info.file.name} 文件上传失败。`);
  1298. };
  1299. this.setState({ businessPlanFileList: info.fileList.slice(-1) });
  1300. }} >
  1301. <Button><Icon type="upload" /> 上传商业计划书文件 </Button>
  1302. </Upload>
  1303. <p style={{ marginTop: '10px' }}>{theData.businessPlanUrl ?
  1304. <span className="download-file">
  1305. <a onClick={() => { window.open(globalConfig.context + '/api/user/achievement/download?id=' + this.props.data.id + '&sign=achievement_business_plan') }}>商业计划书</a>
  1306. </span>
  1307. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  1308. </FormItem>
  1309. <FormItem wrapperCol={{ span: 12, offset: 4 }}>
  1310. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  1311. <Button className="set-submit" type="ghost" onClick={(e) => { this.state.auditStatus = 1; }} htmlType="submit">发布</Button>
  1312. <Button className="set-submit" type="ghost" onClick={this.props.closeDesc}>取消</Button>
  1313. </FormItem>
  1314. </Form >
  1315. )
  1316. }
  1317. }));
  1318. const AchievementDetail = React.createClass({
  1319. getInitialState() {
  1320. return {
  1321. visible: false
  1322. };
  1323. },
  1324. showModal() {
  1325. this.setState({
  1326. visible: true,
  1327. });
  1328. },
  1329. handleCancel(e) {
  1330. this.setState({
  1331. visible: false,
  1332. });
  1333. this.props.closeDesc(false);
  1334. },
  1335. handleOk(e) {
  1336. this.setState({
  1337. visible: false,
  1338. });
  1339. this.props.closeDesc(false, true);
  1340. },
  1341. componentWillReceiveProps(nextProps) {
  1342. this.state.visible = nextProps.showDesc;
  1343. },
  1344. render() {
  1345. if (this.props.data) {
  1346. return (
  1347. <div className="patent-desc">
  1348. <Modal maskClosable={false} title="成果详情" visible={this.state.visible}
  1349. onOk={this.checkPatentProcess} onCancel={this.handleCancel}
  1350. width='1000px'
  1351. footer=''
  1352. className="admin-desc-content">
  1353. {(() => {
  1354. if (this.props.data.auditStatus && this.props.data.auditStatus != "0" && this.props.data.auditStatus != "4") {
  1355. return <AchievementDetailShow
  1356. data={this.props.data}
  1357. closeDesc={this.handleCancel}
  1358. visible={this.state.visible}
  1359. handleOk={this.handleOk} />
  1360. } else {
  1361. return <AchievementDetailForm
  1362. data={this.props.data}
  1363. achievementCategoryOption={this.props.achievementCategoryOption}
  1364. closeDesc={this.handleCancel}
  1365. visible={this.state.visible}
  1366. handleOk={this.handleOk} />
  1367. }
  1368. })()}
  1369. </Modal>
  1370. </div>
  1371. );
  1372. } else {
  1373. return <div></div>
  1374. }
  1375. },
  1376. });
  1377. export default AchievementDetail;