techDemandAudit.jsx 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. import React from 'react';
  2. import {Radio, Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker, Modal, Upload, Tabs} from 'antd';
  3. import ajax from 'jquery/src/ajax/xhr.js';
  4. import $ from 'jquery/src/ajax';
  5. import moment from 'moment';
  6. import '../techDemand.less';
  7. import TechDemandDesc from './demandAuditDesc.jsx';
  8. import { demandTypeList } from '../../../dataDic.js';
  9. import { companySearch, getDemandType, getSearchUrl, beforeUploadFile ,getboutique,gethot} from '../../../tools.js';
  10. import {ChooseList} from "../../order/orderNew/chooseList";
  11. const TabPane = Tabs.TabPane;
  12. const TechDemandPublish = React.createClass({
  13. loadData(pageNo, apiUrl) {
  14. this.state.data = [];
  15. if(this.state.serialNumber&&isNaN(this.state.serialNumber)){
  16. message.warning('请输入正确的编号格式');
  17. return false;
  18. }
  19. this.setState({
  20. loading: true,
  21. ispage:pageNo,
  22. });
  23. $.ajax({
  24. method: "get",
  25. dataType: "json",
  26. crossDomain: false,
  27. url: globalConfig.context +'/api/admin/demand/orgList',
  28. data: {
  29. pageNo: pageNo || 1,
  30. pageSize: this.state.pagination.pageSize,
  31. serialNumber: this.state.serialNumber,
  32. name: this.state.name,
  33. auditStatus:2,
  34. keyword: this.state.keyword,
  35. employerName: this.state.employerName,
  36. infoSources: this.state.infoSources ? Number(this.state.infoSources) : undefined,
  37. demandType: this.state.demandType ? Number(this.state.demandType) : undefined,
  38. //username: this.state.username,
  39. status: this.state.status ? Number(this.state.status) : undefined,
  40. releaseStatus: this.state.releaseStatus ? Number(this.state.releaseStatus) : undefined,
  41. validityPeriodStartDate: this.state.validityPeriodDate[0],
  42. validityPeriodEndDate: this.state.validityPeriodDate[1],
  43. releaseDateStartDate: this.state.releaseDate[0],
  44. releaseDateEndDate: this.state.releaseDate[1],
  45. createDateStartDate: this.state.releaseDateS[0],
  46. createDateEndDate: this.state.releaseDateS[1],
  47. boutique:this.state.boutique,
  48. hot:this.state.hot,
  49. dataCategory:this.state.dataCategory,
  50. //employerName: this.state.searchType == 1 ? this.state.searchName : undefined,
  51. username: this.state.searchType == 0 && this.props['data-listApiUrl'].indexOf('org') == -1 ? this.state.searchName : undefined,
  52. unitName: this.state.searchType == 0 && this.props['data-listApiUrl'].indexOf('user') == -1 ? this.state.searchName : undefined,
  53. },
  54. success: function (data) {
  55. let theArr = [];
  56. if (!data.data || !data.data.list) {
  57. if (data.error && data.error.length) {
  58. message.warning(data.error[0].message);
  59. };
  60. } else {
  61. for (let i = 0; i < data.data.list.length; i++) {
  62. let thisdata = data.data.list[i];
  63. theArr.push({
  64. key: i,
  65. id: thisdata.id,
  66. serialNumber: thisdata.serialNumber,
  67. dataCategory: thisdata.dataCategory,
  68. name: thisdata.name,
  69. keyword: thisdata.keyword,
  70. infoSources: thisdata.infoSources,
  71. username: thisdata.username,
  72. theName: thisdata.username || thisdata.employerName,
  73. demandType: thisdata.demandType,
  74. validityPeriod: thisdata.validityPeriod,
  75. employerName: thisdata.employerName,
  76. employerId: thisdata.employerId,
  77. province: thisdata.province,
  78. status: thisdata.status,
  79. releaseStatus: thisdata.releaseStatus,
  80. releaseDate: thisdata.releaseDate,
  81. principalId: thisdata.principalId,
  82. validityPeriodFormattedDate: thisdata.validityPeriodFormattedDate,
  83. releaseDateFormattedDate: thisdata.releaseDateFormattedDate,
  84. auditStatus: thisdata.auditStatus,
  85. boutique: thisdata.boutique,
  86. urgentMoney:thisdata.urgentMoney,
  87. urgentDays:thisdata.urgentDays,
  88. hot: thisdata.hot,
  89. techBrokerId:thisdata.techBrokerId,
  90. createTimeFormattedDate: thisdata.createTimeFormattedDate,
  91. techBrokerIdd:thisdata.techBrokerIdd,
  92. });
  93. };
  94. this.state.pagination.current = data.data.pageNo;
  95. this.state.pagination.total = data.data.totalCount;
  96. };
  97. this.setState({
  98. dataSource: theArr,
  99. pagination: this.state.pagination
  100. });
  101. }.bind(this),
  102. }).always(function () {
  103. this.setState({
  104. loading: false
  105. });
  106. }.bind(this));
  107. },
  108. getInitialState() {
  109. return {
  110. searchMore: true,
  111. searchType: 0,
  112. validityPeriodDate: [],
  113. releaseDate: [],
  114. releaseDateS: [],
  115. selectedRowKeys: [],
  116. selectedRows: [],
  117. loading: false,
  118. pagination: {
  119. defaultCurrent: 1,
  120. defaultPageSize: 10,
  121. showQuickJumper: true,
  122. pageSize: 10,
  123. onChange: function (page) {
  124. this.loadData(page);
  125. }.bind(this),
  126. showTotal: function (total) {
  127. return '共' + total + '条数据';
  128. }
  129. },
  130. columns: [
  131. {
  132. title: '编号',
  133. dataIndex: 'serialNumber',
  134. key: 'serialNumber',
  135. }, {
  136. title: '需求名称',
  137. dataIndex: 'name',
  138. key: 'name',
  139. },
  140. {
  141. title: '录入人',
  142. dataIndex: 'techBrokerId',
  143. key: 'techBrokerId',
  144. },
  145. {
  146. title: '是否精品',
  147. dataIndex: 'boutique',
  148. key: 'boutique',
  149. render: text => { return getboutique(text) }
  150. },
  151. {
  152. title: '关键字',
  153. dataIndex: 'keyword',
  154. key: 'keyword',
  155. }, {
  156. title: '需求类型',
  157. dataIndex: 'demandType',
  158. key: 'demandType',
  159. render: text => { return getDemandType(text); }
  160. }, {
  161. title: '信息来源',
  162. dataIndex: 'infoSources',
  163. key: 'infoSources',
  164. render: text => {
  165. switch (text) {
  166. case "0":
  167. return <span>平台采集</span>;
  168. case "1":
  169. return <span>客户发布</span>;
  170. case "2":
  171. return <span>批量导入</span>
  172. case "3":
  173. return <span>三方对接</span>
  174. }
  175. }
  176. }, {
  177. title: '审核状态',
  178. dataIndex: 'auditStatus',
  179. key: 'auditStatus',
  180. render: text => {
  181. switch (text) {
  182. case 0:
  183. return <span>未提交审核(草稿)</span>;
  184. case 1:
  185. return <span>提交审核</span>;
  186. case 2:
  187. return <span>审核中</span>;
  188. case 3:
  189. return <span>审核通过</span>;
  190. case 4:
  191. return <span>审核未通过</span>;
  192. }
  193. }
  194. }, {
  195. title: '需求状态',
  196. dataIndex: 'status',
  197. key: 'status',
  198. render: text => {
  199. switch (text) {
  200. case "0":
  201. return <span>进行中</span>;
  202. case "1":
  203. return <span>未解决</span>;
  204. case "2":
  205. return <span>已解决</span>;
  206. }
  207. }
  208. }, {
  209. title: '有效期限',
  210. dataIndex: 'validityPeriodFormattedDate',
  211. key: 'validityPeriodFormattedDate',
  212. },{
  213. title: '录入时间',
  214. dataIndex: 'createTimeFormattedDate',
  215. key: 'createTimeFormattedDate',
  216. }
  217. ],
  218. dataSource: [],
  219. searchTime: []
  220. };
  221. },
  222. getCompanyList() {
  223. this.setState({
  224. loading: true
  225. });
  226. $.ajax({
  227. method: "get",
  228. dataType: "json",
  229. crossDomain: false,
  230. url: globalConfig.context + "/api/admin/demand/unitNames",
  231. success: function (data) {
  232. let theArr = [];
  233. if (!data.data) {
  234. if (data.error && data.error.length) {
  235. message.warning(data.error[0].message);
  236. };
  237. } else {
  238. data.data.map(function (item) {
  239. theArr.push(
  240. <Select.Option value={item.uid} key={item.uid}>{item.unitName}</Select.Option>
  241. )
  242. });
  243. };
  244. this.setState({
  245. companyOption: theArr
  246. });
  247. }.bind(this),
  248. }).always(function () {
  249. this.setState({
  250. loading: false
  251. });
  252. }.bind(this));
  253. },
  254. getUserList() {
  255. this.setState({
  256. loading: true
  257. });
  258. $.ajax({
  259. method: "get",
  260. dataType: "json",
  261. crossDomain: false,
  262. url: globalConfig.context + "/api/admin/demand/userNames",
  263. success: function (data) {
  264. let theArr = [];
  265. if (!data.data) {
  266. if (data.error && data.error.length) {
  267. message.warning(data.error[0].message);
  268. };
  269. } else {
  270. data.data.map(function (item) {
  271. theArr.push(
  272. <Select.Option value={item.uid} key={item.uid}>{item.username}</Select.Option>
  273. )
  274. });
  275. };
  276. this.setState({
  277. userOption: theArr
  278. });
  279. }.bind(this),
  280. }).always(function () {
  281. this.setState({
  282. loading: false
  283. });
  284. }.bind(this));
  285. },
  286. //审核不通过
  287. examineCancel(){
  288. let nub=4;
  289. this.examine(nub)
  290. },
  291. //审核通过
  292. examineOK(){
  293. let nub=3;
  294. this.examine(nub)
  295. },
  296. examine(nub) {
  297. let deletedIds = [];
  298. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  299. let rowItem = this.state.selectedRows[idx];
  300. if (rowItem.id) {
  301. deletedIds.push(rowItem.id,rowItem.techBrokerIdd)
  302. };
  303. };
  304. this.setState({
  305. selectedRowKeys: [],
  306. loading: deletedIds.length > 0
  307. });
  308. $.ajax({
  309. method: "POST",
  310. dataType: "json",
  311. crossDomain: false,
  312. url: globalConfig.context + '/api/admin/audit/demand',
  313. data: {
  314. id: deletedIds[0],
  315. auditStatus:nub,
  316. techBroderId:deletedIds[1],
  317. releaseStatus:0
  318. }
  319. }).done(function (data) {
  320. if (!data.error.length) {
  321. message.success('操作成功');
  322. this.setState({
  323. loading: false,
  324. });
  325. } else {
  326. message.warning(data.error[0].message);
  327. };
  328. this.loadData(this.state.ispage);
  329. }.bind(this));
  330. },
  331. componentWillMount() {
  332. let theArr = [];
  333. demandTypeList.map(function (item) {
  334. theArr.push(
  335. <Select.Option value={item.value} key={item.key}>{item.key}</Select.Option>
  336. )
  337. });
  338. this.state.demandTypeOption = theArr;
  339. let data=localStorage.getItem('newData');
  340. if(data!='{}'&&data){
  341. var newData = JSON.parse(data);
  342. this.tableRowClick(newData);
  343. };
  344. this.loadData();
  345. this.getCompanyList();
  346. this.getUserList();
  347. },
  348. componentWillReceiveProps(nextProps) {
  349. if (this.props['data-listApiUrl'] != nextProps['data-listApiUrl']) {
  350. this.state.selectedRowKeys = [];
  351. this.state.selectedRows = [];
  352. this.state.serialNumber = undefined;
  353. this.state.name = undefined;
  354. this.state.keyword = undefined;
  355. this.state.infoSources = undefined;
  356. this.state.demandType = undefined;
  357. this.state.searchName = undefined;
  358. this.state.searchType = 0;
  359. this.state.status = undefined;
  360. this.state.releaseStatus = undefined;
  361. this.state.auditStatus = undefined;
  362. this.state.validityPeriodDate = [];
  363. this.state.releaseDate = [];
  364. this.state.releaseDateS = [];
  365. this.loadData(null, nextProps['data-listApiUrl']);
  366. };
  367. },
  368. tableRowClick(record, index) {
  369. this.state.RowData = record;
  370. this.setState({
  371. showDesc: true
  372. });
  373. localStorage.setItem('newData','{}');
  374. },
  375. // delectRow() {
  376. // let deletedIds = [];
  377. // for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  378. // let rowItem = this.state.selectedRows[idx];
  379. // if (rowItem.id) {
  380. // deletedIds.push(rowItem.id)
  381. // };
  382. // };
  383. // this.setState({
  384. // selectedRowKeys: [],
  385. // loading: deletedIds.length > 0
  386. // });
  387. // $.ajax({
  388. // method: "POST",
  389. // dataType: "json",
  390. // crossDomain: false,
  391. // url: globalConfig.context + "/api/admin/demand/delete",
  392. // data: {
  393. // ids: deletedIds
  394. // }
  395. // }).done(function (data) {
  396. // if (!data.error.length) {
  397. // message.success('删除成功!');
  398. // this.setState({
  399. // loading: false,
  400. // });
  401. // } else {
  402. // message.warning(data.error[0].message);
  403. // };
  404. // this.loadData();
  405. // }.bind(this));
  406. // },
  407. addClick() {
  408. this.state.RowData = {};
  409. this.setState({
  410. showDesc: true
  411. });
  412. },
  413. closeDesc(e, s) {
  414. this.state.showDesc = e;
  415. if (s) {
  416. this.loadData(this.state.ispage);
  417. };
  418. },
  419. search() {
  420. this.loadData();
  421. },
  422. reset() {
  423. this.state.serialNumber = undefined;
  424. this.state.name = undefined;
  425. this.state.keyword = undefined;
  426. this.state.employerName= undefined;
  427. this.state.infoSources = undefined;
  428. this.state.demandType = undefined;
  429. this.state.searchName = undefined;
  430. this.state.searchType = 0;
  431. this.state.boutique = '';
  432. this.state.hot='' ;
  433. this.state.status = undefined;
  434. this.state.releaseStatus = undefined;
  435. this.state.auditStatus = undefined;
  436. this.state.dataCategory = undefined;
  437. this.state.validityPeriodDate = [];
  438. this.state.releaseDate = [];
  439. this.state.releaseDateS = [];
  440. this.loadData();
  441. },
  442. searchSwitch() {
  443. this.setState({
  444. searchMore: !this.state.searchMore
  445. });
  446. },
  447. changeList(arr) {
  448. const newArr = [];
  449. this.state.columns.forEach(item => {
  450. arr.forEach(val => {
  451. if (val === item.title) {
  452. newArr.push(item);
  453. }
  454. });
  455. });
  456. this.setState({
  457. changeList: newArr
  458. });
  459. },
  460. render() {
  461. const rowSelection = {
  462. selectedRowKeys: this.state.selectedRowKeys,
  463. onChange: (selectedRowKeys, selectedRows) => {
  464. this.setState({
  465. selectedRows: selectedRows.slice(-1),
  466. selectedRowKeys: selectedRowKeys.slice(-1)
  467. });
  468. }
  469. };
  470. const hasSelected = this.state.selectedRowKeys.length > 0;
  471. const { RangePicker } = DatePicker;
  472. return (
  473. <div className="user-content" >
  474. <div className="content-title">
  475. <span>科技需求审核管理</span>
  476. <div className="patent-addNew clearfix">
  477. <Upload
  478. action={globalConfig.context + "/api/admin/demand/uploadTemplate"}
  479. data={{ 'sign': 'demand_template' }}
  480. beforeUpload={beforeUploadFile}
  481. showUploadList={false}
  482. onChange={(info) => {
  483. if (info.file.status !== 'uploading') {
  484. // console.log(info.file, info.fileList);
  485. }
  486. if (info.file.status === 'done') {
  487. if (!info.file.response.error.length) {
  488. message.success(`${info.file.name} 文件上传成功!`);
  489. } else {
  490. message.warning(info.file.response.error[0].message);
  491. return;
  492. };
  493. } else if (info.file.status === 'error') {
  494. message.error(`${info.file.name} 文件上传失败。`);
  495. };
  496. }} >
  497. <Button style={{"display":"none"}}>上传批量导入模板</Button>
  498. </Upload>
  499. <Button onClick={() => { window.open(globalConfig.context + '/api/admin/demand/downloadTemplate?sign=demand_template') }} style={{"display":"none"}}>下载批量导入模板</Button>
  500. <Button type="primary" className="addButton" onClick={this.addClick} style={{"display":"none"}}>新增需求<Icon type="plus" /></Button>
  501. </div>
  502. </div>
  503. <Tabs
  504. defaultActiveKey="1"
  505. onChange={this.callback}
  506. className="test"
  507. >
  508. <TabPane tab="搜索" key="1">
  509. <div className="user-search">
  510. <Input placeholder="需求编号"
  511. value={this.state.serialNumber}
  512. onChange={(e) => { this.setState({ serialNumber: e.target.value }); }} />
  513. <Input placeholder="需求名称"
  514. value={this.state.name}
  515. onChange={(e) => { this.setState({ name: e.target.value }); }} />
  516. <Input placeholder="关键字"
  517. value={this.state.keyword}
  518. onChange={(e) => { this.setState({ keyword: e.target.value }); }} />
  519. <Input placeholder="需求雇主名称"
  520. value={this.state.employerName}
  521. onChange={(e) => { this.setState({ employerName: e.target.value }); }} />
  522. <Radio.Group value={this.state.searchType} onChange={(e) => {
  523. this.setState({ searchType: e.target.value })
  524. }}>
  525. <Radio value={0}>认证用户</Radio>
  526. <Radio value={1}>非认证用户</Radio>
  527. </Radio.Group>
  528. <Button type="primary" onClick={this.search}>搜索</Button>
  529. <Button onClick={this.reset}>重置</Button>
  530. <Button type='primary' onClick={this.examineOK} disabled={!hasSelected} style={{"display":"none"}}>审核通过</Button>
  531. <Button type='primary' onClick={this.examineCancel} disabled={!hasSelected} style={{"display":"none"}}>审核不通过</Button>
  532. <span>更多搜索<Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
  533. <div className="search-more" style={this.state.searchMore ? { display: 'none' } : {}}>
  534. <Radio.Group value={this.state.boutique} onChange={(e) => {
  535. this.setState({ boutique: e.target.value })
  536. }}>
  537. <Radio value={1}>精品</Radio>
  538. <Radio value={0}>非精品</Radio>
  539. </Radio.Group>
  540. <Select placeholder="选择信息来源" style={{ width: 120 }}
  541. value={this.state.infoSources}
  542. onChange={(e) => { this.setState({ infoSources: e }) }}>
  543. <Select.Option value="0" >平台采集</Select.Option>
  544. <Select.Option value="1" >客户发布</Select.Option>
  545. <Select.Option value="2" >批量导入</Select.Option>
  546. <Select.Option value="3" >三方对接</Select.Option>
  547. </Select>
  548. <Select placeholder="选择需求类型"
  549. style={{ width: 120 }}
  550. value={this.state.demandType}
  551. onChange={(e) => { this.setState({ demandType: e }) }}>
  552. {this.state.demandTypeOption}
  553. </Select>
  554. <Select placeholder="选择需求状态" style={{ width: 120 }}
  555. value={this.state.status}
  556. onChange={(e) => { this.setState({ status: e }) }}>
  557. <Select.Option value="0" >进行中</Select.Option>
  558. <Select.Option value="1" >未解决</Select.Option>
  559. <Select.Option value="2" >已解决</Select.Option>
  560. </Select>
  561. <Select placeholder="选择审核状态" style={{ width: 160 }}
  562. value={this.state.auditStatus}
  563. onChange={(e) => { this.setState({ auditStatus: e }) }}>
  564. <Select.Option value="0" >未提交审核(草稿)</Select.Option>
  565. <Select.Option value="1" >提交审核</Select.Option>
  566. <Select.Option value="2" >审核中</Select.Option>
  567. <Select.Option value="3" >审核通过</Select.Option>
  568. <Select.Option value="4" >审核未通过</Select.Option>
  569. </Select>
  570. <Select placeholder="选择需求类别" style={{ width: 120 }}
  571. value={this.state.dataCategory}
  572. onChange={(e) => { this.setState({ dataCategory: e }) }}>
  573. <Select.Option value="0" >个人</Select.Option>
  574. <Select.Option value="1" >组织</Select.Option>
  575. </Select>
  576. <div style={{ marginTop: '10px' }}>
  577. <span style={{ marginLeft: '10px' }}>有效期限 : </span>
  578. <RangePicker
  579. value={[this.state.validityPeriodDate[0] ? moment(this.state.validityPeriodDate[0]) : null,
  580. this.state.validityPeriodDate[1] ? moment(this.state.validityPeriodDate[1]) : null]}
  581. onChange={(data, dataString) => { this.setState({ validityPeriodDate: dataString }); }} />
  582. <span style={{ marginLeft: '10px' }}>发布时间 : </span>
  583. <RangePicker
  584. value={[this.state.releaseDate[0] ? moment(this.state.releaseDate[0]) : null,
  585. this.state.releaseDate[1] ? moment(this.state.releaseDate[1]) : null]}
  586. onChange={(data, dataString) => { this.setState({ releaseDate: dataString }); }} />
  587. <span style={{ marginLeft: '10px' }}>录入时间 : </span>
  588. <RangePicker
  589. value={[this.state.releaseDateS[0] ? moment(this.state.releaseDateS[0]) : null,
  590. this.state.releaseDateS[1] ? moment(this.state.releaseDateS[1]) : null]}
  591. onChange={(data, dataString) => { this.setState({ releaseDateS: dataString }); }} />
  592. </div>
  593. </div>
  594. </div>
  595. </TabPane>
  596. <TabPane tab="更改表格显示数据" key="2">
  597. <div style={{ marginLeft: 10 }}>
  598. <ChooseList
  599. columns={this.state.columns}
  600. changeFn={this.changeList}
  601. changeList={this.state.changeList}
  602. top={55}
  603. margin={11}
  604. />
  605. </div>
  606. </TabPane>
  607. </Tabs>
  608. <div className="patent-table">
  609. <Spin spinning={this.state.loading}>
  610. <Table columns={
  611. this.state.changeList
  612. ? this.state.changeList
  613. : this.state.columns
  614. }
  615. style={{
  616. cursor: 'pointer',
  617. }}
  618. dataSource={this.state.dataSource}
  619. rowSelection={rowSelection}
  620. pagination={this.state.pagination}
  621. onRowClick={this.tableRowClick} />
  622. </Spin>
  623. </div>
  624. <TechDemandDesc
  625. data={this.state.RowData}
  626. detailApiUrl={this.props['data-detailApiUrl']}
  627. companyOption={this.state.companyOption}
  628. userOption={this.state.userOption}
  629. demandTypeOption={this.state.demandTypeOption}
  630. showDesc={this.state.showDesc}
  631. closeDesc={this.closeDesc} />
  632. </div >
  633. );
  634. }
  635. });
  636. export default TechDemandPublish;