techDemandDesc.jsx 64 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430
  1. import React from 'react';
  2. import { AutoComplete, Switch, Tabs, Table, Icon, Tooltip, Modal, Popover, message, Spin, Upload, Input, InputNumber, Select, DatePicker, Button, Radio, Form, Cascader, Tag } from 'antd';
  3. import moment from 'moment';
  4. import './techDemand.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, getTechAuditStatus, splitUrl, companySearch, getTechField, getDemandType, 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/demand/uploadPicture"}
  117. data={{ 'sign': 'demand_picture', 'uid': this.props.uid }}
  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 DemandDetailShow = Form.create()(React.createClass({
  132. getInitialState() {
  133. return {
  134. visible: false,
  135. loading: false,
  136. contactsObj: {},
  137. salesmanObj: {},
  138. data: {},
  139. tags: [],
  140. pictureUrl: []
  141. };
  142. },
  143. loadData(id, detailApiUrl) {
  144. this.setState({
  145. loading: true
  146. });
  147. $.ajax({
  148. method: "get",
  149. dataType: "json",
  150. crossDomain: false,
  151. url: globalConfig.context + detailApiUrl,
  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. switchValue: Boolean(!thisData.employerId),
  166. tags: thisData.keyword ? (thisData.keyword.replace(/(,|、)/g, ",")).split(',') : [],
  167. pictureUrl: thisData.pictureUrl ? splitUrl(thisData.pictureUrl, ',', globalConfig.avatarHost + '/upload') : []
  168. });
  169. }.bind(this),
  170. }).always(function () {
  171. this.setState({
  172. loading: false
  173. });
  174. }.bind(this));
  175. },
  176. getContactsList(theUid) {
  177. $.ajax({
  178. method: "get",
  179. dataType: "json",
  180. crossDomain: false,
  181. url: globalConfig.context + "/api/admin/getContacts",
  182. data: {
  183. uid: theUid
  184. },
  185. success: function (data) {
  186. let theOption = [];
  187. if (!data.data) {
  188. if (data.error && data.error.length) {
  189. message.warning(data.error[0].message);
  190. };
  191. } else {
  192. this.setState({
  193. contactsObj: data.data
  194. });
  195. };
  196. }.bind(this),
  197. });
  198. },
  199. offShelf() {
  200. this.setState({
  201. loading: true
  202. });
  203. $.ajax({
  204. method: "post",
  205. dataType: "json",
  206. crossDomain: false,
  207. url: globalConfig.context + "/api/admin/demand/offShelf",
  208. data: { "id": this.props.data.id }
  209. }).done(function (data) {
  210. if (!data.error.length) {
  211. message.success('撤销成功!');
  212. this.props.handleOk();
  213. } else {
  214. message.warning(data.error[0].message);
  215. };
  216. this.setState({
  217. loading: false,
  218. releaseSubmitVisible: false
  219. });
  220. }.bind(this));
  221. },
  222. formSubmit() {
  223. this.props.form.validateFields((err, values) => {
  224. if (values.auditStatus == 3 && !values.techBroderId) {
  225. message.warning('必须选择一个技术经纪人!');
  226. return
  227. };
  228. if (!err) {
  229. this.setState({
  230. loading: true
  231. });
  232. $.ajax({
  233. method: "POST",
  234. dataType: "json",
  235. crossDomain: false,
  236. url: globalConfig.context + '/api/admin/audit/demand',
  237. data: {
  238. id: this.props.data.id,
  239. techBroderId: values.techBroderId,
  240. auditStatus: values.auditStatus
  241. }
  242. }).done(function (data) {
  243. this.state.auditStatus = 0;
  244. if (!data.error.length) {
  245. message.success('保存成功!');
  246. this.setState({ formSubmitVisible: false });
  247. this.props.handleOk();
  248. } else {
  249. message.warning(data.error[0].message);
  250. this.setState({
  251. loading: false,
  252. });
  253. }
  254. }.bind(this));
  255. }
  256. });
  257. },
  258. handleSubmit(e) {
  259. e.preventDefault();
  260. this.props.form.validateFields((err, values) => {
  261. if (values.auditStatus == 4) {
  262. this.setState({
  263. formSubmitVisible: true
  264. });
  265. } else {
  266. this.formSubmit();
  267. };
  268. });
  269. },
  270. buildMatchList() {
  271. this.setState({
  272. buttonLoading: true
  273. });
  274. $.ajax({
  275. method: "POST",
  276. dataType: "json",
  277. crossDomain: false,
  278. url: globalConfig.context + '/api/admin/demand/matchAchievement',
  279. data: {
  280. id: this.props.data.id,
  281. }
  282. }).done(function (data) {
  283. this.setState({
  284. buttonLoading: false
  285. });
  286. if (!data.error.length) {
  287. message.success('匹配完成!匹配到' + data.data + '条记录');
  288. } else {
  289. message.warning(data.error[0].message);
  290. };
  291. }.bind(this));
  292. },
  293. componentWillMount() {
  294. this.loadData(this.props.data.id, this.props.detailApiUrl);
  295. this.getContactsList(this.props.data.employerId);
  296. },
  297. componentWillReceiveProps(nextProps) {
  298. if (!this.props.visible && nextProps.visible) {
  299. this.loadData(nextProps.data.id, nextProps.detailApiUrl);
  300. this.getContactsList(nextProps.data.employerId);
  301. this.props.form.resetFields();
  302. };
  303. },
  304. render() {
  305. const theData = this.state.data || {};
  306. const { getFieldDecorator } = this.props.form;
  307. const FormItem = Form.Item
  308. const formItemLayout = {
  309. labelCol: { span: 6 },
  310. wrapperCol: { span: 12 },
  311. };
  312. return (
  313. <Form horizontal onSubmit={this.handleSubmit} id="demand-form">
  314. <Spin spinning={this.state.loading}>
  315. <div className="clearfix">
  316. <FormItem className="half-item"
  317. {...formItemLayout}
  318. label="编号" >
  319. <span>{theData.serialNumber}</span>
  320. </FormItem>
  321. <FormItem className="half-item"
  322. {...formItemLayout}
  323. label="需求名称" >
  324. <span>{theData.name}</span>
  325. </FormItem>
  326. </div>
  327. {this.state.switchValue ? <div>
  328. <FormItem className="half-item"
  329. {...formItemLayout}
  330. label="雇主名称" >
  331. <span>{theData.employerName}</span>
  332. </FormItem>
  333. <FormItem className="half-item"
  334. {...formItemLayout}
  335. label="联系电话" >
  336. <span>{theData.employerContactsMobile}</span>
  337. </FormItem>
  338. <FormItem className="half-item"
  339. {...formItemLayout}
  340. label="电子邮箱" >
  341. <span>{theData.employerContactsMailbox}</span>
  342. </FormItem>
  343. <FormItem className="half-item"
  344. {...formItemLayout}
  345. label="通讯地址" >
  346. <span>{theData.employerAddress}</span>
  347. </FormItem>
  348. </div> : <div className="clearfix">
  349. <FormItem className="half-item"
  350. {...formItemLayout}
  351. label="雇主名称" >
  352. <span>{theData.username}</span>
  353. </FormItem>
  354. <FormItem className="half-item"
  355. {...formItemLayout}
  356. label="联系人" >
  357. <span>{this.state.contactsObj[theData.contacts]}</span>
  358. </FormItem>
  359. </div>}
  360. <div className="clearfix">
  361. <FormItem className="half-item"
  362. {...formItemLayout}
  363. label="负责人" >
  364. <span>{this.props.techBrodersObj[theData.techBrokerId]}</span>
  365. </FormItem>
  366. </div>
  367. <div className="clearfix">
  368. <FormItem className="half-item"
  369. {...formItemLayout}
  370. label="是否发布" >
  371. {(() => {
  372. switch (theData.releaseStatus) {
  373. case "0":
  374. return <span>未发布</span>;
  375. case "1":
  376. return <div>
  377. <span>已发布</span>
  378. <Button style={{ marginLeft: '10px' }} onClick={() => { this.setState({ releaseSubmitVisible: true }); }}>撤消发布</Button>
  379. <Modal maskClosable={false} title="确认"
  380. visible={this.state.releaseSubmitVisible}
  381. width='300px'
  382. footer={null}
  383. onCancel={() => { this.setState({ releaseSubmitVisible: false }) }} >
  384. <span>确认要撤销发布吗?</span>
  385. <Button className="modal-submit" type="primary" onClick={this.offShelf} >确认</Button>
  386. <Button className="modal-submit" type="ghost" onClick={() => { this.setState({ releaseSubmitVisible: false }) }}>取消</Button>
  387. </Modal>
  388. </div>;
  389. }
  390. })()}
  391. </FormItem>
  392. <FormItem className="half-item"
  393. {...formItemLayout}
  394. label="发布时间" >
  395. <span>{theData.releaseDateFormattedDate}</span>
  396. </FormItem>
  397. </div>
  398. <div className="clearfix">
  399. <FormItem className="half-item"
  400. {...formItemLayout}
  401. label="需求状态" >
  402. {(() => {
  403. switch (theData.status) {
  404. case "0":
  405. return <span>未解决</span>;
  406. case "1":
  407. return <span>已解决</span>;
  408. }
  409. })()}
  410. </FormItem>
  411. <FormItem className="half-item"
  412. {...formItemLayout}
  413. label="审核状态" >
  414. {(() => {
  415. switch (theData.auditStatus) {
  416. case "0":
  417. return <span>未提交审核(草稿)</span>;
  418. case "1":
  419. return <span>提交审核</span>;
  420. case "2":
  421. return <span>审核中</span>;
  422. case "3":
  423. return <span>审核通过</span>;
  424. case "4":
  425. return <span>审核未通过</span>;
  426. }
  427. })()}
  428. </FormItem>
  429. </div>
  430. <div className="clearfix">
  431. <FormItem className="half-item"
  432. {...formItemLayout}
  433. label="信息来源" >
  434. {(() => {
  435. switch (theData.infoSources) {
  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. }
  445. })()}
  446. </FormItem>
  447. </div>
  448. <FormItem
  449. labelCol={{ span: 3 }}
  450. wrapperCol={{ span: 20 }}
  451. label="关键词" >
  452. {this.state.tags.map((tag) => {
  453. return <Tooltip key={tag} title={tag}>
  454. <Tag key={tag}>{tag}</Tag>
  455. </Tooltip>;
  456. })}
  457. </FormItem>
  458. <FormItem
  459. labelCol={{ span: 3 }}
  460. wrapperCol={{ span: 18 }}
  461. label="行业类别" >
  462. <span>{getIndustryCategory(theData.industryCategoryA, theData.industryCategoryB)}</span>
  463. </FormItem>
  464. <div className="clearfix">
  465. <FormItem className="half-item"
  466. {...formItemLayout}
  467. label="需求类型" >
  468. <span>{getDemandType(theData.demandType)}</span>
  469. </FormItem>
  470. </div>
  471. <FormItem
  472. labelCol={{ span: 3 }}
  473. wrapperCol={{ span: 18 }}
  474. label="问题说明" >
  475. <span>{theData.problemDes}</span>
  476. </FormItem>
  477. <FormItem
  478. labelCol={{ span: 3 }}
  479. wrapperCol={{ span: 18 }}
  480. label="技术指标要求" >
  481. <span>{theData.technicalRequirements}</span>
  482. </FormItem>
  483. <FormItem
  484. labelCol={{ span: 3 }}
  485. wrapperCol={{ span: 18 }}
  486. label="需求文件(图片)" >
  487. <div className="clearfix">
  488. <Upload className="demandDetailShow-upload"
  489. listType="picture-card"
  490. fileList={this.state.pictureUrl}
  491. onPreview={(file) => {
  492. this.setState({
  493. previewImage: file.url || file.thumbUrl,
  494. previewVisible: true,
  495. });
  496. }} >
  497. </Upload>
  498. <Modal maskClosable={false} footer={null}
  499. visible={this.state.previewVisible}
  500. onCancel={() => { this.setState({ previewVisible: false }) }}>
  501. <img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />
  502. </Modal>
  503. </div>
  504. </FormItem>
  505. <FormItem
  506. labelCol={{ span: 3 }}
  507. wrapperCol={{ span: 6 }}
  508. label="需求文件(文本)" >
  509. <div>{theData.textFileUrl ?
  510. <span className="download-file">
  511. <a onClick={() => { window.open(globalConfig.context + '/api/admin/demand/download?id=' + this.props.data.id) }}>需求文件(文本文件)</a>
  512. </span>
  513. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</div>
  514. </FormItem>
  515. <FormItem
  516. labelCol={{ span: 3 }}
  517. wrapperCol={{ span: 18 }}
  518. label="需求文件(视频地址)" >
  519. <span>{theData.videoUrl}</span>
  520. </FormItem>
  521. <div className="clearfix">
  522. <FormItem className="half-item"
  523. {...formItemLayout}
  524. label="固定周期" >
  525. <span>{theData.fixedCycle}</span>
  526. </FormItem>
  527. <FormItem className="half-item"
  528. {...formItemLayout}
  529. label="固定人数" >
  530. <span>{theData.peopleNumber} 人</span>
  531. </FormItem>
  532. </div>
  533. <FormItem
  534. labelCol={{ span: 3 }}
  535. wrapperCol={{ span: 18 }}
  536. label="固定方案" >
  537. <span>{theData.fixedScheme}</span>
  538. </FormItem>
  539. <div className="clearfix">
  540. <FormItem className="half-item"
  541. {...formItemLayout}
  542. label="预算费用" >
  543. <span>{theData.budgetCost} 万元</span>
  544. </FormItem>
  545. <FormItem className="half-item"
  546. {...formItemLayout}
  547. label="费用托管" >
  548. {(() => {
  549. switch (theData.costEscrow) {
  550. case 0:
  551. return <span>否</span>;
  552. case 1:
  553. return <span>是</span>;
  554. }
  555. })()}
  556. </FormItem>
  557. <FormItem className="half-item"
  558. {...formItemLayout}
  559. label="有效期限" >
  560. <span>{theData.validityPeriodFormattedDate}</span>
  561. </FormItem>
  562. </div>
  563. {window.showAuditStatus && theData.auditStatus == 2 ? <div className="clearfix">
  564. <FormItem className="half-item"
  565. {...formItemLayout}
  566. label="审核状态" >
  567. {getFieldDecorator('auditStatus')(
  568. <Radio.Group>
  569. <Radio value={3}>审核通过</Radio>
  570. <Radio value={4}>审核未通过</Radio>
  571. </Radio.Group>
  572. )}
  573. </FormItem>
  574. <FormItem className="half-item"
  575. {...formItemLayout}
  576. label="技术经纪人" >
  577. {getFieldDecorator('techBroderId', {
  578. initialValue: theData.techBroderId
  579. })(
  580. <Select style={{ width: 260 }}>
  581. {this.props.techBrodersOption}
  582. </Select>
  583. )}
  584. </FormItem>
  585. </div> : <div></div>}
  586. <FormItem wrapperCol={{ span: 12, offset: 3 }}>
  587. {theData.auditStatus == 2 ? <Button className="set-submit" type="primary" htmlType="submit">保存</Button> : <span></span>}
  588. <Button className="set-submit" type="ghost" onClick={this.props.closeDesc}>取消</Button>
  589. {window.showAuditStatus ? <Button className="set-submit" loading={this.state.buttonLoading} type="primary" onClick={this.buildMatchList}>生成匹配列表</Button> : <span></span>}
  590. </FormItem>
  591. <Modal maskClosable={false} title="确认"
  592. visible={this.state.formSubmitVisible}
  593. width='360px'
  594. footer={null}
  595. onCancel={() => { this.setState({ formSubmitVisible: false }) }} >
  596. <span>确认该需求审核未通过?</span>
  597. <Button className="modal-submit" type="primary" onClick={this.formSubmit}>确认</Button>
  598. <Button className="modal-submit" type="ghost" onClick={() => { this.setState({ formSubmitVisible: false }) }}>取消</Button>
  599. </Modal>
  600. </Spin>
  601. </Form >
  602. )
  603. }
  604. }));
  605. const DemandDetailForm = Form.create()(React.createClass({
  606. getInitialState() {
  607. return {
  608. visible: false,
  609. loading: false,
  610. auditStatus: 0,
  611. switchValue: false,
  612. textFileList: [],
  613. videoFileList: [],
  614. contactsOption: [],
  615. data: {},
  616. tags: [],
  617. pictureUrl: [],
  618. dataSource: []
  619. };
  620. },
  621. getContactsList(theUid) {
  622. $.ajax({
  623. method: "get",
  624. dataType: "json",
  625. crossDomain: false,
  626. url: globalConfig.context + "/api/admin/getContacts",
  627. data: {
  628. uid: theUid
  629. },
  630. success: function (data) {
  631. let theOption = [];
  632. if (!data.data) {
  633. if (data.error && data.error.length) {
  634. message.warning(data.error[0].message);
  635. return;
  636. };
  637. };
  638. for (let item in data.data) {
  639. let theData = data.data[item];
  640. theOption.push(
  641. <Select.Option value={item} key={theData}>{theData}</Select.Option>
  642. );
  643. };
  644. this.setState({
  645. contactsOption: theOption
  646. });
  647. }.bind(this),
  648. });
  649. },
  650. loadData(id, detailApiUrl) {
  651. this.setState({
  652. loading: true
  653. });
  654. $.ajax({
  655. method: "get",
  656. dataType: "json",
  657. crossDomain: false,
  658. url: globalConfig.context + detailApiUrl,
  659. data: {
  660. id: id
  661. },
  662. success: function (data) {
  663. let thisData = data.data;
  664. if (!thisData) {
  665. if (data.error && data.error.length) {
  666. message.warning(data.error[0].message);
  667. };
  668. thisData = {};
  669. };
  670. if (thisData.employerId) {
  671. this.getContactsList(thisData.employerId)
  672. };
  673. this.setState({
  674. data: thisData,
  675. switchValue: Boolean(!thisData.employerId),
  676. tags: thisData.keyword ? (thisData.keyword.replace(/(,|、)/g, ",")).split(',') : [],
  677. pictureUrl: thisData.pictureUrl ? splitUrl(thisData.pictureUrl, ',', globalConfig.avatarHost + '/upload') : []
  678. });
  679. }.bind(this),
  680. }).always(function () {
  681. this.setState({
  682. loading: false
  683. });
  684. }.bind(this));
  685. },
  686. getTagsArr(e) {
  687. this.setState({ tags: e });
  688. },
  689. getPictureUrl(e) {
  690. this.setState({ pictureUrl: e });
  691. },
  692. handleSubmit(e) {
  693. e.preventDefault();
  694. this.props.form.validateFields((err, values) => {
  695. //keyword长度判断
  696. if ((this.state.tags ? this.state.tags.length : this.props.tags.length) < 3) {
  697. message.warning('关键词数量不能小于3个!');
  698. return;
  699. };
  700. //url转化
  701. let thePictureUrl = [];
  702. if (this.state.pictureUrl.length) {
  703. let picArr = [];
  704. this.state.pictureUrl.map(function (item) {
  705. picArr.push(item.response.data);
  706. });
  707. thePictureUrl = picArr.join(",");
  708. };
  709. if (!err) {
  710. this.setState({
  711. loading: true
  712. });
  713. $.ajax({
  714. method: "POST",
  715. dataType: "json",
  716. crossDomain: false,
  717. url: this.props.data.id ? globalConfig.context + '/api/admin/demand/update' : globalConfig.context + '/api/admin/demand/apply',
  718. data: {
  719. id: this.props.data.id,
  720. dataCategory: this.props.detailApiUrl.indexOf('org') >= 0 ? 1 : 0,
  721. serialNumber: this.props.data.serialNumber,
  722. name: values.name,
  723. keyword: this.state.tags ? this.state.tags.join(",") : this.props.tags.join(","),
  724. keywords: this.state.tags ? this.state.tags : this.props.tags,
  725. infoSources: 0,
  726. industryCategoryA: values.industryCategory ? values.industryCategory[0] : undefined,
  727. industryCategoryB: values.industryCategory ? values.industryCategory[1] : undefined,
  728. demandType: values.demandType,
  729. problemDes: values.problemDes,
  730. technicalRequirements: values.technicalRequirements,
  731. pictureUrl: thePictureUrl,
  732. textFileUrl: this.state.textFileUrl,
  733. videoUrl: values.videoUrl,
  734. fixedBudget: values.fixedBudget,
  735. fixedCycle: values.fixedCycle,
  736. peopleNumber: values.peopleNumber,
  737. fixedScheme: values.fixedScheme,
  738. costEscrow: values.costEscrow,
  739. budgetCost: values.budgetCost,
  740. //
  741. switchSign: this.state.switchValue ? 1 : 0,
  742. //
  743. employerId: !this.state.switchValue ? (this.state.dataSourceObj ? this.state.dataSourceObj[values.employerId] : this.props.data.employerId) : null,
  744. contacts: !this.state.switchValue ? values.contacts : null,
  745. //自定义
  746. employerName: this.state.switchValue ? values.employerName : null,
  747. employerAddress: this.state.switchValue ? values.employerAddress : null,
  748. employerContactsMobile: this.state.switchValue ? values.employerContactsMobile : null,
  749. employerContactsMailbox: this.state.switchValue ? values.employerContactsMailbox : null,
  750. //
  751. releaseStatus: values.releaseStatus,
  752. principalId: values.principalId,
  753. validityPeriodFormattedDate: values.validityPeriod ? values.validityPeriod.format('YYYY-MM-DD') : undefined,
  754. //
  755. status: this.state.status,
  756. auditStatus: this.state.auditStatus
  757. }
  758. }).done(function (data) {
  759. this.state.auditStatus = 0;
  760. if (!data.error.length) {
  761. message.success('保存成功!');
  762. this.props.handleOk();
  763. } else {
  764. message.warning(data.error[0].message);
  765. };
  766. this.setState({
  767. loading: false
  768. });
  769. }.bind(this));
  770. }
  771. });
  772. },
  773. handleSearch(e) {
  774. if (this.props.detailApiUrl.indexOf('org') != -1) {
  775. $.ajax({
  776. method: "get",
  777. dataType: "json",
  778. crossDomain: false,
  779. url: globalConfig.context + "/api/admin/achievement/orgOwner",
  780. data: { name: e },
  781. success: function (data) {
  782. let theArr = [];
  783. let theObj = {};
  784. if (!data.data) {
  785. if (data.error && data.error.length) {
  786. message.warning(data.error[0].message);
  787. };
  788. } else if (!$.isEmptyObject(data.data)) {
  789. data.data.map(function (item) {
  790. theArr.push(item.unitName);
  791. theObj[item.unitName] = item.uid;
  792. });
  793. };
  794. this.setState({
  795. dataSource: theArr,
  796. dataSourceObj: theObj
  797. });
  798. }.bind(this),
  799. });
  800. } else {
  801. $.ajax({
  802. method: "get",
  803. dataType: "json",
  804. crossDomain: false,
  805. url: globalConfig.context + "/api/admin/achievement/userOwner",
  806. data: { name: e },
  807. success: function (data) {
  808. let theArr = [];
  809. let theObj = {};
  810. if (!data.data) {
  811. if (data.error && data.error.length) {
  812. message.warning(data.error[0].message);
  813. };
  814. } else if (!$.isEmptyObject(data.data)) {
  815. for (let item in data.data) {
  816. theArr.push(data.data[item]);
  817. theObj[data.data[item]] = item;
  818. };
  819. };
  820. this.setState({
  821. dataSource: theArr,
  822. dataSourceObj: theObj
  823. });
  824. }.bind(this),
  825. });
  826. };
  827. },
  828. componentWillMount() {
  829. this.state.therottleSearch = throttle(this.handleSearch, 1000, { leading: false }).bind(this);
  830. if (this.props.data && this.props.data.id) {
  831. this.loadData(this.props.data.id, this.props.detailApiUrl);
  832. };
  833. },
  834. componentWillReceiveProps(nextProps) {
  835. if (!this.props.visible && nextProps.visible) {
  836. if (nextProps.data && nextProps.data.id) {
  837. this.loadData(nextProps.data.id, nextProps.detailApiUrl);
  838. };
  839. this.state.contactsOption = [];
  840. this.state.data = {};
  841. this.state.tags = [];
  842. this.state.switchValue = false;
  843. this.state.pictureUrl = [];
  844. this.state.textFileList = [];
  845. this.state.videoFileList = [];
  846. this.state.textFileUrl = undefined;
  847. this.props.form.resetFields();
  848. };
  849. },
  850. render() {
  851. const theData = this.state.data || {};
  852. const { getFieldDecorator } = this.props.form;
  853. const FormItem = Form.Item
  854. const formItemLayout = {
  855. labelCol: { span: 6 },
  856. wrapperCol: { span: 12 },
  857. };
  858. return (
  859. <Form horizontal onSubmit={this.handleSubmit} id="demand-form">
  860. <Spin spinning={this.state.loading}>
  861. <div className="clearfix">
  862. <FormItem className="half-item"
  863. {...formItemLayout}
  864. label="编号" >
  865. <span>{theData.serialNumber}</span>
  866. </FormItem>
  867. <FormItem className="half-item"
  868. {...formItemLayout}
  869. label="需求名称" >
  870. {getFieldDecorator('name', {
  871. rules: [{ required: true, message: '此项为必填项!' }],
  872. initialValue: theData.name
  873. })(
  874. <Input />
  875. )}
  876. </FormItem>
  877. </div>
  878. <FormItem style={{ marginBottom: '10px' }} labelCol={{ span: 3 }}
  879. label="自定义雇主" >
  880. <Switch checked={this.state.switchValue} onChange={(e) => { this.setState({ switchValue: e }); }} />
  881. </FormItem>
  882. {this.state.switchValue ? <div className="clearfix" >
  883. <FormItem className="half-item"
  884. {...formItemLayout}
  885. label="雇主名称" >
  886. {getFieldDecorator('employerName', {
  887. initialValue: theData.employerName
  888. })(
  889. <Input />
  890. )}
  891. </FormItem>
  892. <FormItem className="half-item"
  893. {...formItemLayout}
  894. label="联系电话" >
  895. {getFieldDecorator('employerContactsMobile', {
  896. initialValue: theData.employerContactsMobile
  897. })(
  898. <Input />
  899. )}
  900. </FormItem>
  901. <FormItem className="half-item"
  902. {...formItemLayout}
  903. label="电子邮箱" >
  904. {getFieldDecorator('employerContactsMailbox', {
  905. initialValue: theData.employerContactsMailbox
  906. })(
  907. <Input />
  908. )}
  909. </FormItem>
  910. <FormItem className="half-item"
  911. {...formItemLayout}
  912. label="通讯地址" >
  913. {getFieldDecorator('employerAddress', {
  914. initialValue: theData.employerAddress
  915. })(
  916. <Input />
  917. )}
  918. </FormItem>
  919. </div> : <div className="clearfix">
  920. <FormItem className="half-item"
  921. {...formItemLayout}
  922. label="雇主名称" >
  923. {getFieldDecorator('employerId', {
  924. initialValue: theData.username || ''
  925. })(
  926. <AutoComplete
  927. dataSource={this.state.dataSource}
  928. style={{ width: 200 }}
  929. onSearch={this.state.therottleSearch}
  930. placeholder="雇主名称"
  931. onSelect={(e) => {
  932. this.getContactsList(this.state.dataSourceObj[e]);
  933. }} />
  934. )}
  935. </FormItem>
  936. {this.props.detailApiUrl.indexOf('org') >= 0 ? <FormItem className="half-item"
  937. {...formItemLayout}
  938. label="联系人" >
  939. {getFieldDecorator('contacts', {
  940. initialValue: theData.contacts
  941. })(
  942. <Select style={{ width: 260 }}
  943. placeholder="请选择联系人"
  944. notFoundContent="未获取到联系人列表"
  945. showSearch
  946. filterOption={companySearch}>
  947. {this.state.contactsOption}
  948. </Select>
  949. )}
  950. </FormItem> : <div></div>}
  951. </div>}
  952. <div className="clearfix">
  953. {theData.techBrokerId ? <FormItem className="half-item"
  954. {...formItemLayout}
  955. label="负责人" >
  956. <span>{this.props.techBrodersObj[theData.techBrokerId]}</span>
  957. </FormItem> : <div></div>}
  958. </div>
  959. {theData.releaseStatus ? <div className="clearfix">
  960. <FormItem className="half-item"
  961. {...formItemLayout}
  962. label="是否发布" >
  963. {(() => {
  964. switch (theData.releaseStatus) {
  965. case "0":
  966. return <span>未发布</span>;
  967. case "1":
  968. return <span>已发布</span>;
  969. }
  970. })()}
  971. </FormItem>
  972. <FormItem className="half-item"
  973. {...formItemLayout}
  974. label="发布时间" >
  975. <span>{theData.releaseDateFormattedDate}</span>
  976. </FormItem>
  977. </div> : <div></div>}
  978. <div className="clearfix">
  979. {theData.releaseStatus == "1" ? <FormItem className="half-item"
  980. {...formItemLayout}
  981. label="需求状态" >
  982. {getFieldDecorator('status', {
  983. initialValue: theData.status
  984. })(
  985. <Radio.Group>
  986. <Radio value="0">未解决</Radio>
  987. <Radio value="1">已解决</Radio>
  988. </Radio.Group>
  989. )}
  990. </FormItem> : <div></div>}
  991. <FormItem className="half-item"
  992. {...formItemLayout}
  993. label="审核状态" >
  994. <span>{getTechAuditStatus(theData.auditStatus)}</span>
  995. </FormItem>
  996. </div>
  997. <FormItem
  998. labelCol={{ span: 3 }}
  999. wrapperCol={{ span: 20 }}
  1000. label="关键词" >
  1001. <KeyWordTagGroup
  1002. keyWordArr={this.state.tags}
  1003. tagsArr={this.getTagsArr}
  1004. visible={this.props.visible} />
  1005. </FormItem>
  1006. <FormItem
  1007. labelCol={{ span: 3 }}
  1008. wrapperCol={{ span: 18 }}
  1009. label="行业类别" >
  1010. {getFieldDecorator('industryCategory', {
  1011. rules: [{ type: 'array', required: true, message: '此项为必填项!' }],
  1012. initialValue: [theData.industryCategoryA, theData.industryCategoryB]
  1013. })(
  1014. <Cascader style={{ width: 300 }} options={IndustryObject} placeholder="请选择一个行业" />
  1015. )}
  1016. </FormItem>
  1017. <div className="clearfix">
  1018. <FormItem className="half-item"
  1019. {...formItemLayout}
  1020. label="需求类型" >
  1021. {getFieldDecorator('demandType', {
  1022. rules: [{ required: true, message: '此项为必填项!' }],
  1023. initialValue: theData.demandType
  1024. })(
  1025. <Select style={{ width: 160 }} placeholder="请选择需求类型">
  1026. {this.props.demandTypeOption}
  1027. </Select>
  1028. )}
  1029. </FormItem>
  1030. </div>
  1031. <FormItem
  1032. labelCol={{ span: 3 }}
  1033. wrapperCol={{ span: 18 }}
  1034. label="问题说明" >
  1035. {getFieldDecorator('problemDes', {
  1036. rules: [{ required: true, message: '此项为必填项!' }],
  1037. initialValue: theData.problemDes
  1038. })(
  1039. <Input type="textarea" rows={4} />
  1040. )}
  1041. </FormItem>
  1042. <FormItem
  1043. labelCol={{ span: 3 }}
  1044. wrapperCol={{ span: 18 }}
  1045. label="技术指标要求" >
  1046. {getFieldDecorator('technicalRequirements', {
  1047. initialValue: theData.technicalRequirements
  1048. })(
  1049. <Input type="textarea" rows={2} />
  1050. )}
  1051. </FormItem>
  1052. <FormItem
  1053. labelCol={{ span: 3 }}
  1054. wrapperCol={{ span: 18 }}
  1055. label="需求文件(图片)" >
  1056. <PicturesWall
  1057. uid={theData.employerId}
  1058. fileList={this.getPictureUrl}
  1059. pictureUrl={this.state.pictureUrl}
  1060. visible={this.props.visible} />
  1061. </FormItem>
  1062. <FormItem
  1063. labelCol={{ span: 3 }}
  1064. wrapperCol={{ span: 6 }}
  1065. label="需求文件(文本)" >
  1066. <Upload
  1067. name="ratepay"
  1068. action={globalConfig.context + "/api/admin/demand/uploadTextFile"}
  1069. data={{ 'sign': 'demand_text_file', 'uid': theData.employerId }}
  1070. beforeUpload={beforeUploadFile}
  1071. fileList={this.state.textFileList}
  1072. onChange={(info) => {
  1073. if (info.file.status !== 'uploading') {
  1074. console.log(info.file, info.fileList);
  1075. }
  1076. if (info.file.status === 'done') {
  1077. if (!info.file.response.error.length) {
  1078. message.success(`${info.file.name} 文件上传成功!`);
  1079. } else {
  1080. message.warning(info.file.response.error[0].message);
  1081. return;
  1082. };
  1083. this.state.textFileUrl = info.file.response.data;
  1084. } else if (info.file.status === 'error') {
  1085. message.error(`${info.file.name} 文件上传失败。`);
  1086. };
  1087. this.setState({ textFileList: info.fileList.slice(-1) });
  1088. }} >
  1089. <Button><Icon type="upload" /> 上传需求文本文件 </Button>
  1090. </Upload>
  1091. <p style={{ marginTop: '10px' }}>{theData.textFileUrl ?
  1092. <span className="download-file">
  1093. <a onClick={() => { window.open(globalConfig.context + '/api/admin/demand/download?id=' + this.props.data.id) }}>需求文件(文本文件)</a>
  1094. </span>
  1095. : <span><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />未上传!</span>}</p>
  1096. </FormItem>
  1097. <FormItem
  1098. labelCol={{ span: 3 }}
  1099. wrapperCol={{ span: 18 }}
  1100. label="需求文件(视频地址)" >
  1101. {getFieldDecorator('videoUrl', {
  1102. initialValue: theData.videoUrl
  1103. })(
  1104. <Input />
  1105. )}
  1106. </FormItem>
  1107. <div className="clearfix">
  1108. <FormItem className="half-item"
  1109. {...formItemLayout}
  1110. label="固定周期" >
  1111. {getFieldDecorator('fixedCycle', {
  1112. initialValue: theData.fixedCycle
  1113. })(
  1114. <Input />
  1115. )}
  1116. </FormItem>
  1117. <FormItem className="half-item"
  1118. {...formItemLayout}
  1119. label="固定人数" >
  1120. {getFieldDecorator('peopleNumber', {
  1121. initialValue: theData.peopleNumber || 0
  1122. })(
  1123. <InputNumber />
  1124. )}
  1125. <span style={{ marginLeft: '20px' }}>人</span>
  1126. </FormItem>
  1127. </div>
  1128. <FormItem
  1129. labelCol={{ span: 3 }}
  1130. wrapperCol={{ span: 18 }}
  1131. label="固定方案" >
  1132. {getFieldDecorator('fixedScheme', {
  1133. initialValue: theData.fixedScheme
  1134. })(
  1135. <Input type="textarea" rows={2} />
  1136. )}
  1137. </FormItem>
  1138. <div className="clearfix">
  1139. <FormItem className="half-item"
  1140. {...formItemLayout}
  1141. label="预算费用" >
  1142. {getFieldDecorator('budgetCost', {
  1143. initialValue: theData.budgetCost || 0
  1144. })(
  1145. <InputNumber min={0} max={999999} step={0.01} />
  1146. )}
  1147. <span style={{ marginLeft: '20px' }}>万元</span>
  1148. </FormItem>
  1149. <FormItem className="half-item"
  1150. {...formItemLayout}
  1151. label="费用托管" >
  1152. {getFieldDecorator('costEscrow', {
  1153. initialValue: theData.costEscrow
  1154. })(
  1155. <Radio.Group>
  1156. <Radio value={0}>否</Radio>
  1157. <Radio value={1}>是</Radio>
  1158. </Radio.Group>
  1159. )}
  1160. </FormItem>
  1161. <FormItem className="half-item"
  1162. {...formItemLayout}
  1163. label="有效期限" >
  1164. {getFieldDecorator('validityPeriod', {
  1165. initialValue: theData.validityPeriod ? moment(theData.validityPeriod) : null
  1166. })(
  1167. <DatePicker />
  1168. )}
  1169. </FormItem>
  1170. </div>
  1171. <div className="clearfix" style={{ display: 'none' }}>
  1172. <FormItem className="half-item"
  1173. {...formItemLayout}
  1174. label="雇主地址" >
  1175. <span>{theData.employerAddress}</span>
  1176. </FormItem>
  1177. <FormItem className="half-item"
  1178. {...formItemLayout}
  1179. label="雇主联系人名称" >
  1180. <span>{theData.employerContacts}</span>
  1181. </FormItem>
  1182. <FormItem className="half-item"
  1183. {...formItemLayout}
  1184. label="雇主联系人电话" >
  1185. <span>{theData.employerContactsMobile}</span>
  1186. </FormItem>
  1187. <FormItem className="half-item"
  1188. {...formItemLayout}
  1189. label="雇主联系人邮箱" >
  1190. <span>{theData.employerContactsMailbox}</span>
  1191. </FormItem>
  1192. </div>
  1193. <FormItem wrapperCol={{ span: 12, offset: 3 }}>
  1194. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  1195. <Button className="set-submit" type="ghost" onClick={(e) => { this.state.auditStatus = 1; }} htmlType="submit">发布</Button>
  1196. <Button className="set-submit" type="ghost" onClick={this.props.closeDesc}>取消</Button>
  1197. </FormItem>
  1198. </Spin>
  1199. </Form >
  1200. )
  1201. }
  1202. }));
  1203. const DemandDetail = React.createClass({
  1204. getInitialState() {
  1205. return {
  1206. visible: false,
  1207. techBrodersObj: {},
  1208. tabsKey: "1",
  1209. columns: [
  1210. {
  1211. title: '编号',
  1212. dataIndex: 'serialNumber',
  1213. key: 'serialNumber',
  1214. }, {
  1215. title: '数据类型',
  1216. dataIndex: 'dataCategory',
  1217. key: 'dataCategory',
  1218. render: text => {
  1219. switch (text) {
  1220. case "0":
  1221. return <span>个人需求</span>;
  1222. case "1":
  1223. return <span>团体需求</span>;
  1224. }
  1225. }
  1226. }, {
  1227. title: '名称',
  1228. dataIndex: 'name',
  1229. key: 'name',
  1230. }, {
  1231. title: '关键字',
  1232. dataIndex: 'keyword',
  1233. key: 'keyword',
  1234. }, {
  1235. title: '类型',
  1236. dataIndex: 'category',
  1237. key: 'category',
  1238. render: text => { return getAchievementCategory(text); }
  1239. }, {
  1240. title: '所有人名称',
  1241. dataIndex: 'theName',
  1242. key: 'theName',
  1243. }, {
  1244. title: '所有人类型',
  1245. dataIndex: 'ownerType',
  1246. key: 'ownerType',
  1247. render: text => {
  1248. switch (text) {
  1249. case "0":
  1250. return <span>个人</span>;
  1251. case "1":
  1252. return <span>组织</span>
  1253. }
  1254. }
  1255. }, {
  1256. title: '发布时间',
  1257. dataIndex: 'releaseDateFormattedDate',
  1258. key: 'releaseDateFormattedDate',
  1259. }
  1260. ],
  1261. dataSource: [],
  1262. };
  1263. },
  1264. getTechBrodersList() {
  1265. this.setState({
  1266. loading: true
  1267. });
  1268. $.ajax({
  1269. method: "get",
  1270. dataType: "json",
  1271. crossDomain: false,
  1272. url: globalConfig.context + "/api/admin/audit/techBroders",
  1273. success: function (data) {
  1274. if (!data.data) {
  1275. if (data.error && data.error.length) {
  1276. message.warning(data.error[0].message);
  1277. }
  1278. return;
  1279. };
  1280. let _me = this, theArr = [];
  1281. for (var item in data.data) {
  1282. theArr.push(
  1283. <Select.Option value={item} key={item}>{data.data[item]}</Select.Option>
  1284. )
  1285. };
  1286. this.setState({
  1287. techBrodersOption: theArr,
  1288. techBrodersObj: data.data
  1289. });
  1290. }.bind(this),
  1291. }).always(function () {
  1292. this.setState({
  1293. loading: false
  1294. });
  1295. }.bind(this));
  1296. },
  1297. getTableList() {
  1298. this.setState({
  1299. loading: true
  1300. });
  1301. $.ajax({
  1302. method: "get",
  1303. dataType: "json",
  1304. crossDomain: false,
  1305. url: globalConfig.context + "/api/admin/demand/achievementDemand",
  1306. data: { id: this.props.data.id },
  1307. success: function (data) {
  1308. let theArr = [];
  1309. if (!data.data) {
  1310. if (data.error && data.error.length) {
  1311. message.warning(data.error[0].message);
  1312. };
  1313. } else if (data.data.length) {
  1314. for (let i = 0; i < data.data.length; i++) {
  1315. let thisdata = data.data[i];
  1316. theArr.push({
  1317. key: i,
  1318. id: thisdata.id,
  1319. serialNumber: thisdata.serialNumber,
  1320. dataCategory: thisdata.dataCategory,
  1321. name: thisdata.name,
  1322. keyword: thisdata.keyword,
  1323. category: thisdata.category,
  1324. ownerType: thisdata.ownerType,
  1325. theName: thisdata.username || thisdata.unitName,
  1326. releaseDate: thisdata.releaseDate,
  1327. releaseDateFormattedDate: thisdata.releaseDateFormattedDate
  1328. });
  1329. };
  1330. };
  1331. this.setState({
  1332. dataSource: theArr,
  1333. });
  1334. }.bind(this),
  1335. }).always(function () {
  1336. this.setState({
  1337. loading: false
  1338. });
  1339. }.bind(this));
  1340. },
  1341. tableRowClick(record, index) {
  1342. window.open(globalConfig.context + '/portal/detail/achievementDetail.html?id=' + record.id + '&type=' + record.ownerType);
  1343. },
  1344. handleCancel(e) {
  1345. this.setState({
  1346. visible: false,
  1347. });
  1348. this.props.closeDesc(false);
  1349. },
  1350. handleOk(e) {
  1351. this.setState({
  1352. visible: false,
  1353. });
  1354. this.props.closeDesc(false, true);
  1355. },
  1356. componentWillMount() {
  1357. this.getTechBrodersList();
  1358. },
  1359. componentWillReceiveProps(nextProps) {
  1360. if (!this.state.visible && nextProps.showDesc) {
  1361. this.state.tabsKey = "1";
  1362. };
  1363. this.state.visible = nextProps.showDesc;
  1364. },
  1365. render() {
  1366. if (this.props.data) {
  1367. return (
  1368. <div className="patent-desc">
  1369. <Modal maskClosable={false} visible={this.state.visible}
  1370. onOk={this.checkPatentProcess} onCancel={this.handleCancel}
  1371. width='1000px'
  1372. footer=''
  1373. className="admin-desc-content">
  1374. <Spin spinning={this.state.loading}>
  1375. <Tabs activeKey={this.state.tabsKey}
  1376. onChange={(e) => {
  1377. this.setState({ tabsKey: e });
  1378. if (e == "2") {
  1379. this.getTableList();
  1380. };
  1381. }} >
  1382. <Tabs.TabPane tab="需求详情" key="1">
  1383. {(() => {
  1384. if (this.props.data.auditStatus != "0" && this.props.data.auditStatus != "4") {
  1385. return <DemandDetailShow
  1386. data={this.props.data}
  1387. detailApiUrl={this.props.detailApiUrl}
  1388. techBrodersOption={this.state.techBrodersOption}
  1389. techBrodersObj={this.state.techBrodersObj}
  1390. demandTypeOption={this.props.demandTypeOption}
  1391. closeDesc={this.handleCancel}
  1392. visible={this.state.visible}
  1393. handleOk={this.handleOk} />
  1394. } else {
  1395. return <DemandDetailForm
  1396. data={this.props.data}
  1397. detailApiUrl={this.props.detailApiUrl}
  1398. companyOption={this.props.companyOption}
  1399. userOption={this.props.userOption}
  1400. techBrodersObj={this.state.techBrodersObj}
  1401. demandTypeOption={this.props.demandTypeOption}
  1402. closeDesc={this.handleCancel}
  1403. visible={this.state.visible}
  1404. handleOk={this.handleOk} />
  1405. }
  1406. })()}
  1407. </Tabs.TabPane>
  1408. <Tabs.TabPane tab="匹配列表" key="2" disabled={!this.props.data.id}>
  1409. <Table columns={this.state.columns}
  1410. dataSource={this.state.dataSource}
  1411. pagination={false}
  1412. onRowClick={this.tableRowClick} />
  1413. </Tabs.TabPane>
  1414. </Tabs>
  1415. </Spin>
  1416. </Modal>
  1417. </div>
  1418. );
  1419. } else {
  1420. return <div></div>
  1421. }
  1422. },
  1423. });
  1424. export default DemandDetail;