techAchievementDesc.jsx 70 KB

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