businessProject.jsx 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759
  1. import React from 'react';
  2. import $ from 'jquery/src/ajax';
  3. import { citySelect } from '@/NewDicProvinceListAll';
  4. import {
  5. Form,
  6. Icon,
  7. Button,
  8. Input,
  9. Select,
  10. Spin,
  11. Table,
  12. message,
  13. DatePicker,
  14. Modal,
  15. Radio,
  16. Upload,
  17. Popconfirm,
  18. Cascader,
  19. } from 'antd';
  20. import { getGameState, getprovince, getReleaseStateList } from '@/tools.js';
  21. import TechDemandDesc from '@/account/business/businessDesc';
  22. //图片组件
  23. const PicturesWall = React.createClass({
  24. getInitialState() {
  25. return {
  26. previewVisible: false,
  27. previewImage: '',
  28. fileList: []
  29. };
  30. },
  31. handleCancel() {
  32. this.setState({ previewVisible: false });
  33. },
  34. handlePreview(file) {
  35. this.setState({
  36. previewImage: file.url || file.thumbUrl,
  37. previewVisible: true
  38. });
  39. },
  40. handleChange(info) {
  41. let fileList = info.fileList;
  42. this.setState({ fileList });
  43. this.props.fileList(fileList);
  44. },
  45. componentWillReceiveProps(nextProps) {
  46. this.state.fileList = nextProps.pictureUrl;
  47. },
  48. render() {
  49. const { previewVisible, previewImage, fileList } = this.state;
  50. const uploadButton = (
  51. <div>
  52. <Icon type="plus" />
  53. <div className="ant-upload-text">点击上传</div>
  54. </div>
  55. );
  56. return (
  57. <div style={{ display: 'inline-block' }}>
  58. <Upload
  59. action={globalConfig.context + '/api/user/jtBusiness/project/uploadPicture'}
  60. data={{ sign: 'jt_project_picture' }}
  61. listType="picture-card"
  62. fileList={fileList}
  63. onPreview={this.handlePreview}
  64. onChange={this.handleChange}
  65. >
  66. {fileList.length >= 1 ? null : uploadButton}
  67. </Upload>
  68. <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  69. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  70. </Modal>
  71. </div>
  72. );
  73. }
  74. });
  75. //主体
  76. const BusinessProject = Form.create()(
  77. React.createClass({
  78. loadData(pageNo) {
  79. this.state.data = [];
  80. this.setState({
  81. loading: true,
  82. page: pageNo
  83. });
  84. $.ajax({
  85. method: 'get',
  86. dataType: 'json',
  87. crossDomain: false,
  88. url: globalConfig.context + '/portal/service/jtProject/list',
  89. data: {
  90. pageNo: pageNo || 1,
  91. pageSize: this.state.pagination.pageSize,
  92. topId: this.state.typeSearch[0]? this.state.typeSearch[0]:'',
  93. secondId:this.state.typeSearch[1]?this.state.typeSearch[1]:'',
  94. name: this.state.nameSearch,
  95. privateProject: 0
  96. },
  97. success: function(data) {
  98. let theArr = [];
  99. if (!data.data || !data.data.list) {
  100. if (data.error && data.error.length) {
  101. message.warning(data.error[0].message);
  102. }
  103. } else {
  104. for (let i = 0; i < data.data.list.length; i++) {
  105. let thisdata = data.data.list[i],
  106. ProvinceCityArr = [],
  107. cname = '',
  108. superName = '',
  109. ProvinceS = thisdata.province, //getprovince
  110. citys = thisdata.city,
  111. Areas = thisdata.area;
  112. ProvinceCityArr.push(ProvinceS, citys, Areas);
  113. (this.state.categoryList).map((item,index) => {
  114. if((item.children).length){
  115. (item.children).map((atem,indexT)=>{
  116. if (thisdata.categoryId == atem.value) {
  117. console.log()
  118. cname = item.label;
  119. superName = atem.label;
  120. return;
  121. }
  122. })
  123. }
  124. });
  125. theArr.push({
  126. key: i,
  127. id: thisdata.id, //业务名称
  128. name: thisdata.name, //业务名称
  129. categoryId: thisdata.categoryId, //业务品类
  130. number: thisdata.number,
  131. price: thisdata.price, //市场价
  132. superName: superName,
  133. cname: cname,
  134. auditStatus: thisdata.auditStatus,
  135. city: thisdata.city,
  136. activityPrice: thisdata.activityPrice ? thisdata.activityPrice : '', //最低折扣
  137. memberPrice: thisdata.memberPrice ? thisdata.memberPrice : '', //会员价
  138. offset: thisdata.offset ? thisdata.offset : '',
  139. activityPrice: thisdata.activityPrice ? thisdata.activityPrice : '', //活动价
  140. activityFlag: thisdata.activityFlag, //活动生效标识
  141. status: thisdata.status, //项目状态
  142. province: thisdata.province,
  143. introduce: thisdata.introduce,
  144. createTime: thisdata.createTime ? new Date(thisdata.createTime).toLocaleString() : '',
  145. value: thisdata.value,
  146. applyConditions: thisdata.applyConditions,
  147. releaseDate:thisdata.releaseDate?(new Date(thisdata.releaseDate)).toLocaleString():''
  148. });
  149. }
  150. this.state.pagination.current = data.data.pageNo;
  151. this.state.pagination.total = data.data.totalCount;
  152. }
  153. this.setState({
  154. dataSource: theArr,
  155. pagination: this.state.pagination
  156. });
  157. }.bind(this)
  158. }).always(
  159. function() {
  160. this.setState({
  161. loading: false
  162. });
  163. }.bind(this)
  164. );
  165. },
  166. getInitialState() {
  167. return {
  168. tagList:[],
  169. searchMore: true,
  170. selectedRowKeys: [],
  171. selectedRows: [],
  172. loading: false,
  173. typeSearch:[],
  174. orgCodeUrl: [],
  175. companyLogoUrl: [],
  176. pagination: {
  177. defaultCurrent: 1,
  178. defaultPageSize: 10,
  179. showQuickJumper: true,
  180. pageSize: 10,
  181. onChange: function(page) {
  182. this.loadData(page);
  183. this.setState({
  184. selectedRowKeys: []
  185. });
  186. }.bind(this),
  187. showTotal: function(total) {
  188. return '共' + total + '条数据';
  189. }
  190. },
  191. columns: [
  192. {
  193. title: '项目名称',
  194. dataIndex: 'name',
  195. key: 'bname'
  196. },
  197. {
  198. title: '品类名称',
  199. dataIndex: 'cname',
  200. key: 'cname'
  201. },
  202. {
  203. title: '上级品类',
  204. dataIndex: 'superName',
  205. key: 'superName'
  206. },
  207. {
  208. title: '业务地区',
  209. dataIndex: 'area',
  210. key: 'area',
  211. render: (text, rocard) => {
  212. return (
  213. <div>
  214. {rocard.province != 0 ? (
  215. <span>{getprovince(rocard.province) + '-' + getprovince(rocard.city)}</span>
  216. ) : (
  217. '全国'
  218. )}
  219. </div>
  220. );
  221. }
  222. },
  223. {
  224. title: '市场价',
  225. dataIndex: 'price',
  226. key: 'price'
  227. },
  228. {
  229. title: '最低折扣',
  230. dataIndex: 'offset',
  231. key: 'offset'
  232. },
  233. {
  234. title: '会员价',
  235. dataIndex: 'memberPrice',
  236. key: 'memberPrice'
  237. },
  238. {
  239. title: '活动价',
  240. dataIndex: 'activityPrice',
  241. key: 'activityPrice'
  242. },
  243. {
  244. title: '发布状态',
  245. dataIndex: 'auditStatus',
  246. key: 'auditStatus',
  247. render: (text) => {
  248. return getReleaseStateList(text);
  249. }
  250. },
  251. {
  252. title: '发布时间',
  253. dataIndex: 'releaseDate',
  254. key: 'releaseDate'
  255. },
  256. {
  257. title: '活动生效标识',
  258. dataIndex: 'activityFlag',
  259. key: 'activityFlag',
  260. render: (text) => {
  261. return getGameState(text);
  262. }
  263. },
  264. {
  265. title: '审核',
  266. dataIndex: 'caozuo',
  267. key: 'caozuo',
  268. render: (text, recard) => {
  269. return (
  270. <div className="btnRight">
  271. {recard.auditStatus != '1' &&
  272. recard.auditStatus != '2' && (
  273. <Button
  274. type="primary"
  275. style={{ background: '#3fcf9e', border: 'none', color: '#fff' }}
  276. onClick={(e) => {
  277. e.stopPropagation(), this.submission(recard);
  278. }}
  279. >
  280. 提交审核
  281. </Button>
  282. )}
  283. {recard.auditStatus!='1'&&recard.auditStatus=='2'&&<Button type="success" onClick={(e)=>{ e.stopPropagation(),this.updateFun(recard)}}>刷新发布</Button>}
  284. {recard.auditStatus!='1'&&recard.auditStatus=='2'&&<Button type="danger" onClick={(e)=>{e.stopPropagation(),this.revokeFun(recard)}}>撤销发布</Button>}
  285. </div>
  286. );
  287. }
  288. }
  289. ],
  290. dataSource: []
  291. };
  292. },
  293. //提交审核
  294. submission(record) {
  295. this.setState({
  296. showDesc: false,
  297. loading: true
  298. });
  299. $.ajax({
  300. method: 'get',
  301. dataType: 'json',
  302. crossDomain: false,
  303. url: globalConfig.context + '/api/user/jtBusiness/project/publish',
  304. data: {
  305. id: record.id,
  306. auditStatus:1
  307. }
  308. }).done(
  309. function(data) {
  310. if (!data.error.length) {
  311. message.success('提交成功.');
  312. this.setState({
  313. loading: false
  314. });
  315. this.loadData(this.state.page);
  316. } else {
  317. message.warning(data.error[0].message);
  318. }
  319. }.bind(this)
  320. );
  321. },
  322. //业务品类列表获取
  323. topLevel() {
  324. $.ajax({
  325. method: 'get',
  326. dataType: 'json',
  327. crossDomain: false,
  328. url: globalConfig.context + '/portal/service/jtBusiness/getCategoryList',
  329. data: {
  330. },
  331. success: function(data) {
  332. let theArr = [],thisdata=data.data;
  333. if (!data.data) {
  334. if (data.error && data.error.length) {
  335. message.warning(data.error[0].message);
  336. }
  337. } else {
  338. thisdata.map((item,index) => {
  339. theArr.push({
  340. 'value':item.topLevelId,
  341. 'label':item.topLevel,
  342. 'children':[]
  343. })
  344. if (item.children) {
  345. item.children.map(atem => {
  346. (theArr[index].children).push({
  347. 'value':atem.id,
  348. 'label':atem.name
  349. })
  350. })
  351. }
  352. })
  353. }
  354. this.setState({
  355. categoryList: theArr,
  356. });
  357. this.loadData();
  358. }.bind(this)
  359. }).always(
  360. function() {
  361. this.setState({
  362. loading: false
  363. });
  364. }.bind(this)
  365. );
  366. },
  367. //刷新发布
  368. updateFun(recard){
  369. this.setState({
  370. loading:true
  371. })
  372. $.ajax({
  373. method: "get",
  374. dataType: "json",
  375. crossDomain: false,
  376. url: globalConfig.context +'/api/user/jtBusiness/project/refreshPublish',
  377. data: {
  378. id: recard.id,
  379. auditStatus:recard.auditStatus
  380. }
  381. }).done(function (data) {
  382. if (!data.error.length) {
  383. message.success('刷新成功!');
  384. this.setState({
  385. loading: false,
  386. });
  387. } else {
  388. message.warning(data.error[0].message);
  389. };
  390. this.loadData(this.state.page);
  391. }.bind(this));
  392. },
  393. //撤销发布
  394. revokeFun(recard){
  395. this.setState({
  396. loading:true
  397. })
  398. $.ajax({
  399. method: "get",
  400. dataType: "json",
  401. crossDomain: false,
  402. url: globalConfig.context + '/api/user/jtBusiness/project/offShelf',
  403. data: {
  404. id: recard.id,
  405. auditStatus:recard.auditStatus
  406. }
  407. }).done(function (data) {
  408. if (!data.error.length) {
  409. message.success('撤销成功!');
  410. this.setState({
  411. loading: false,
  412. });
  413. this.loadData(this.state.page);
  414. } else {
  415. message.warning(data.error[0].message);
  416. };
  417. }.bind(this));
  418. },
  419. loadTag(){
  420. $.ajax({
  421. method: 'get',
  422. dataType: 'json',
  423. crossDomain: false,
  424. url: globalConfig.context + '/portal/service/jtBusiness/getCategoryList',
  425. data: {},
  426. success:function(data){
  427. if(!data.data){
  428. if(data.error&&data.error.length){
  429. message.error(data.error[0].message)
  430. return;
  431. }
  432. }else{
  433. let thisdata = data.data,theDate=[];
  434. thisdata.map((item,index)=>{
  435. theDate.push({
  436. key:index,
  437. id:item.id,
  438. name:item.tagName
  439. })
  440. })
  441. this.setState({
  442. tagList:theDate
  443. })
  444. }
  445. }.bind(this)
  446. })
  447. },
  448. componentWillMount() {
  449. this.loadTag();
  450. this.topLevel();
  451. },
  452. //项目列表整行点击
  453. tableRowClick(record, index) {
  454. this.state.RowData = record;
  455. this.setState({
  456. showDesc: true
  457. });
  458. },
  459. //新增一个项目,保存
  460. addhandleSubmit(e) {
  461. e.preventDefault();
  462. if (!this.state.categoryName) {
  463. message.warning('请输入项目名称');
  464. return false;
  465. };
  466. if (this.state.categoryName.length>16) {
  467. message.warning('项目名称在16个字以内');
  468. return false;
  469. };
  470. if (!this.state.addCid||!this.state.addCid[1]) {
  471. message.warning('请选择项目二级品类');
  472. return false;
  473. }
  474. this.setState({
  475. loading: true
  476. });
  477. //上级组织字典
  478. $.ajax({
  479. method: 'post',
  480. dataType: 'json',
  481. crossDomain: false,
  482. url: globalConfig.context + '/api/user/jtBusiness/project/apply',
  483. data: {
  484. name: this.state.categoryName, //项目名称
  485. categoryId: this.state.addCid[1],
  486. isHot: this.state.isHot,
  487. province: this.state.ProvinceCity ? this.state.ProvinceCity[0] : '', //是否全国
  488. city: this.state.ProvinceCity ? this.state.ProvinceCity[1] : ''
  489. }
  490. }).done(
  491. function(data) {
  492. this.setState({
  493. loading: false
  494. });
  495. if (!data.error.length) {
  496. message.success('新增项目成功!');
  497. this.handleCancel();
  498. this.loadData(this.state.page);
  499. } else {
  500. message.warning(data.error[0].message);
  501. }
  502. }.bind(this)
  503. );
  504. },
  505. //项目整行删除
  506. delectRow() {
  507. let deletedIds = '';
  508. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  509. let rowItem = this.state.selectedRows[idx];
  510. if (rowItem.id) {
  511. deletedIds = rowItem.id;
  512. }
  513. }
  514. this.setState({
  515. selectedRowKeys: [],
  516. loading: deletedIds.length > 0
  517. });
  518. $.ajax({
  519. method: 'get',
  520. dataType: 'json',
  521. crossDomain: false,
  522. url: globalConfig.context + '/api/user/jtBusiness/project/delete',
  523. data: {
  524. id: deletedIds
  525. }
  526. }).done(
  527. function(data) {
  528. if (!data.error.length) {
  529. message.success('删除成功!');
  530. this.setState({
  531. loading: false
  532. });
  533. } else {
  534. message.warning(data.error[0].message);
  535. }
  536. this.loadData(this.state.page);
  537. }.bind(this)
  538. );
  539. },
  540. addClick() {
  541. this.state.RowData = {};
  542. this.setState({
  543. visible: true,
  544. isHot: 0
  545. });
  546. this.addReset();
  547. },
  548. closeDesc(e, s) {
  549. this.state.showDesc = e;
  550. if (s) {
  551. this.loadData(this.state.page);
  552. };
  553. },
  554. handleCancel() {
  555. this.setState({ visible: false });
  556. },
  557. search() {
  558. this.loadData();
  559. },
  560. //搜索部分的清零
  561. reset() {
  562. this.state.nameSearch = ''; //项目名称清零
  563. this.state.cid = undefined; //品类名称清零
  564. this.typeSearch=undefined;
  565. this.state.ressSearch = undefined; //省市区清零
  566. this.state.activityFlag = undefined; //活动生效清零
  567. this.state.status = undefined; //项目状态清零
  568. this.loadData();
  569. },
  570. //新增部分的清零
  571. addReset() {
  572. this.state.categoryName = ''; //项目名称清零
  573. this.state.ProvinceCity = undefined;
  574. this.state.addCid = undefined;
  575. this.state.boutique = '';
  576. },
  577. //更多搜索的显示与否
  578. searchSwitch() {
  579. this.setState({
  580. searchMore: !this.state.searchMore
  581. });
  582. },
  583. render() {
  584. const FormItem = Form.Item;
  585. const rowSelection = {
  586. selectedRowKeys: this.state.selectedRowKeys,
  587. onChange: (selectedRowKeys, selectedRows) => {
  588. this.setState({
  589. selectedRows: selectedRows.slice(-1),
  590. selectedRowKeys: selectedRowKeys.slice(-1)
  591. });
  592. }
  593. };
  594. const formItemLayout = {
  595. labelCol: { span: 8 },
  596. wrapperCol: { span: 14 }
  597. };
  598. const hasSelected = this.state.selectedRowKeys.length > 0;
  599. const { RangePicker } = DatePicker;
  600. return (
  601. <div className="user-content">
  602. <div className="content-title">
  603. <div className="user-search">
  604. <Button
  605. type="primary"
  606. className="addButton"
  607. onClick={this.addClick}
  608. style={{ float: 'right', marginRight: '50px' }}
  609. >
  610. 新增项目<Icon type="plus" />
  611. </Button>
  612. <Input
  613. placeholder="业务项目名称"
  614. style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
  615. value={this.state.nameSearch}
  616. onChange={(e) => {
  617. this.setState({ nameSearch: e.target.value });
  618. }}
  619. />
  620. <Cascader placeholder='业务项目品类'
  621. options={this.state.categoryList}
  622. style={{width:200,marginRight:10}}
  623. value={this.state.typeSearch} onChange={(e)=>{this.setState({typeSearch:e})}}/>
  624. <Button type="primary" onClick={this.search} style={{ marginRight: '10px' }}>
  625. 搜索
  626. </Button>
  627. <Button onClick={this.reset} style={{ marginRight: '10px' }}>
  628. 重置
  629. </Button>
  630. <Popconfirm title="是否删除?" onConfirm={this.delectRow} okText="是" cancelText="否">
  631. <Button
  632. style={{
  633. background: '#ea0862',
  634. border: 'none',
  635. color: '#fff',
  636. marginRight: '10px',
  637. marginLeft: '10px'
  638. }}
  639. disabled={!hasSelected}
  640. >
  641. 删除<Icon type="minus" />
  642. </Button>
  643. </Popconfirm>
  644. </div>
  645. <div className="patent-table">
  646. <Spin spinning={this.state.loading}>
  647. <Table
  648. columns={this.state.columns}
  649. dataSource={this.state.dataSource}
  650. rowSelection={rowSelection}
  651. pagination={this.state.pagination}
  652. onRowClick={this.tableRowClick}
  653. current={this.state.aa}
  654. />
  655. </Spin>
  656. </div>
  657. <TechDemandDesc
  658. data={this.state.RowData}
  659. showDesc={this.state.showDesc}
  660. closeDesc={this.closeDesc}
  661. categoryList={this.state.categoryList}
  662. tagList={this.state.tagList}
  663. />
  664. <div className="patent-desc">
  665. <Modal
  666. maskClosable={false}
  667. visible={this.state.visible}
  668. onOk={this.checkPatentProcess}
  669. onCancel={this.handleCancel}
  670. width="400px"
  671. title="新增业务项目"
  672. footer=""
  673. className="admin-desc-content"
  674. >
  675. <Form layout="horizontal" onSubmit={this.addhandleSubmit} id="demand-form">
  676. <Spin spinning={this.state.loading}>
  677. <div className="clearfix">
  678. <FormItem labelCol={{ span: 7 }} wrapperCol={{ span: 12 }} label="业务项目名称">
  679. <Input
  680. placeholder="业务项目名称"
  681. value={this.state.categoryName}
  682. style={{ width: '94%' }}
  683. onChange={(e) => {
  684. this.setState({ categoryName: e.target.value });
  685. }}
  686. required="required"
  687. />
  688. <span className="mandatory" style={{ color: 'red', marginLeft: '5px' }}>
  689. *
  690. </span>
  691. </FormItem>
  692. </div>
  693. <div className="clearfix">
  694. <FormItem labelCol={{ span: 7 }} wrapperCol={{ span: 12 }} label="业务品类">
  695. <Cascader placeholder='业务项目品类'
  696. options={this.state.categoryList}
  697. value={this.state.addCid}
  698. style={{ width: '94%' }}
  699. onChange={(e)=>{this.setState({addCid:e})}}/>
  700. <span className="mandatory" style={{ color: 'red', marginLeft: '5px' }}>
  701. *
  702. </span>
  703. </FormItem>
  704. </div>
  705. <div className="clearfix">
  706. <FormItem labelCol={{ span: 7 }} wrapperCol={{ span: 12 }} label="省-市">
  707. <Cascader
  708. options={citySelect()}
  709. value={this.state.ProvinceCity}
  710. placeholder="选择市"
  711. style={{ width: '94%' }}
  712. onChange={(e, pre) => {
  713. this.setState({ ProvinceCity: e });
  714. }}
  715. />
  716. <span style={{ color: 'red', marginLeft: '5px' }}>*</span>
  717. </FormItem>
  718. </div>
  719. <div className="clearfix">
  720. <FormItem labelCol={{ span: 7 }} wrapperCol={{ span: 12 }} label="热点">
  721. <Radio.Group
  722. onChange={(e) => {
  723. this.setState({ isHot: e.target.value });
  724. }}
  725. value={this.state.isHot}
  726. >
  727. <Radio value={0}>否</Radio>
  728. <Radio value={1}>是</Radio>
  729. </Radio.Group>
  730. </FormItem>
  731. </div>
  732. <FormItem wrapperCol={{ span: 12, offset: 7 }}>
  733. <Button className="set-submit" type="primary" htmlType="submit">
  734. 保存
  735. </Button>
  736. <Button
  737. className="set-submit"
  738. type="ghost"
  739. onClick={this.handleCancel}
  740. style={{ marginLeft: '15px' }}
  741. >
  742. 取消
  743. </Button>
  744. </FormItem>
  745. </Spin>
  746. </Form>
  747. </Modal>
  748. </div>
  749. </div>
  750. </div>
  751. );
  752. }
  753. })
  754. );
  755. export default BusinessProject;