techAchievementDesc.jsx 69 KB

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