businessProject.jsx 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  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? this.state.typeSearch[0]:'',
  93. secondId:this.state.typeSearch?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 + '/api/user/jtBusiness/tag/list',
  425. data: {
  426. pageNo: 1,
  427. pageSize:9999,
  428. },
  429. success:function(data){
  430. if(!data.data&&data.data.list.length){
  431. if(data.error&&data.error.length){
  432. message.error(data.error[0].message)
  433. return;
  434. }
  435. }else{
  436. let thisdata = data.data.list,theDate=[];
  437. thisdata.map((item,index)=>{
  438. theDate.push({
  439. key:index,
  440. id:item.id,
  441. name:item.name
  442. })
  443. })
  444. this.setState({
  445. tagList:theDate
  446. })
  447. }
  448. }.bind(this)
  449. })
  450. },
  451. componentWillMount() {
  452. this.loadTag();
  453. this.topLevel();
  454. },
  455. //项目列表整行点击
  456. tableRowClick(record, index) {
  457. this.state.RowData = record;
  458. this.setState({
  459. showDesc: true
  460. });
  461. },
  462. //新增一个项目,保存
  463. addhandleSubmit(e) {
  464. e.preventDefault();
  465. if (!this.state.categoryName) {
  466. message.warning('请输入项目名称');
  467. return false;
  468. };
  469. if (this.state.categoryName.length>16) {
  470. message.warning('项目名称在16个字以内');
  471. return false;
  472. };
  473. if (!this.state.addCid||!this.state.addCid[1]) {
  474. message.warning('请选择项目二级品类');
  475. return false;
  476. }
  477. this.setState({
  478. loading: true
  479. });
  480. //上级组织字典
  481. $.ajax({
  482. method: 'post',
  483. dataType: 'json',
  484. crossDomain: false,
  485. url: globalConfig.context + '/api/user/jtBusiness/project/apply',
  486. data: {
  487. name: this.state.categoryName, //项目名称
  488. categoryId: this.state.addCid[1],
  489. isHot: this.state.isHot,
  490. province: this.state.ProvinceCity ? this.state.ProvinceCity[0] : '', //是否全国
  491. city: this.state.ProvinceCity ? this.state.ProvinceCity[1] : ''
  492. }
  493. }).done(
  494. function(data) {
  495. this.setState({
  496. loading: false
  497. });
  498. if (!data.error.length) {
  499. message.success('新增项目成功!');
  500. this.handleCancel();
  501. this.loadData(this.state.page);
  502. } else {
  503. message.warning(data.error[0].message);
  504. }
  505. }.bind(this)
  506. );
  507. },
  508. //项目整行删除
  509. delectRow() {
  510. let deletedIds = '';
  511. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  512. let rowItem = this.state.selectedRows[idx];
  513. if (rowItem.id) {
  514. deletedIds = rowItem.id;
  515. }
  516. }
  517. this.setState({
  518. selectedRowKeys: [],
  519. loading: deletedIds.length > 0
  520. });
  521. $.ajax({
  522. method: 'get',
  523. dataType: 'json',
  524. crossDomain: false,
  525. url: globalConfig.context + '/api/user/jtBusiness/project/delete',
  526. data: {
  527. id: deletedIds
  528. }
  529. }).done(
  530. function(data) {
  531. if (!data.error.length) {
  532. message.success('删除成功!');
  533. this.setState({
  534. loading: false
  535. });
  536. } else {
  537. message.warning(data.error[0].message);
  538. }
  539. this.loadData(this.state.page);
  540. }.bind(this)
  541. );
  542. },
  543. addClick() {
  544. this.state.RowData = {};
  545. this.setState({
  546. visible: true,
  547. isHot: 0
  548. });
  549. this.addReset();
  550. },
  551. closeDesc(e, s) {
  552. this.state.showDesc = e;
  553. if (s) {
  554. this.loadData(this.state.page);
  555. };
  556. },
  557. handleCancel() {
  558. this.setState({ visible: false });
  559. },
  560. search() {
  561. this.loadData();
  562. },
  563. //搜索部分的清零
  564. reset() {
  565. this.state.nameSearch = ''; //项目名称清零
  566. this.state.cid = undefined; //品类名称清零
  567. this.state.typeSearch=undefined;
  568. this.state.ressSearch = undefined; //省市区清零
  569. this.state.activityFlag = undefined; //活动生效清零
  570. this.state.status = undefined; //项目状态清零
  571. this.loadData();
  572. },
  573. //新增部分的清零
  574. addReset() {
  575. this.state.categoryName = ''; //项目名称清零
  576. this.state.ProvinceCity = undefined;
  577. this.state.addCid = undefined;
  578. this.state.boutique = '';
  579. },
  580. //更多搜索的显示与否
  581. searchSwitch() {
  582. this.setState({
  583. searchMore: !this.state.searchMore
  584. });
  585. },
  586. render() {
  587. const FormItem = Form.Item;
  588. const rowSelection = {
  589. selectedRowKeys: this.state.selectedRowKeys,
  590. onChange: (selectedRowKeys, selectedRows) => {
  591. this.setState({
  592. selectedRows: selectedRows.slice(-1),
  593. selectedRowKeys: selectedRowKeys.slice(-1)
  594. });
  595. }
  596. };
  597. const formItemLayout = {
  598. labelCol: { span: 8 },
  599. wrapperCol: { span: 14 }
  600. };
  601. const hasSelected = this.state.selectedRowKeys.length > 0;
  602. const { RangePicker } = DatePicker;
  603. return (
  604. <div className="user-content">
  605. <div className="content-title">
  606. <div className="user-search">
  607. <Button
  608. type="primary"
  609. className="addButton"
  610. onClick={this.addClick}
  611. style={{ float: 'right', marginRight: '50px' }}
  612. >
  613. 新增项目<Icon type="plus" />
  614. </Button>
  615. <Input
  616. placeholder="业务项目名称"
  617. style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
  618. value={this.state.nameSearch}
  619. onChange={(e) => {
  620. this.setState({ nameSearch: e.target.value });
  621. }}
  622. />
  623. <Cascader placeholder='业务项目品类'
  624. options={this.state.categoryList}
  625. style={{width:200,marginRight:10}}
  626. value={this.state.typeSearch} onChange={(e)=>{this.setState({typeSearch:e})}}/>
  627. <Button type="primary" onClick={this.search} style={{ marginRight: '10px' }}>
  628. 搜索
  629. </Button>
  630. <Button onClick={this.reset} style={{ marginRight: '10px' }}>
  631. 重置
  632. </Button>
  633. <Popconfirm title="是否删除?" onConfirm={this.delectRow} okText="是" cancelText="否">
  634. <Button
  635. style={{
  636. background: '#ea0862',
  637. border: 'none',
  638. color: '#fff',
  639. marginRight: '10px',
  640. marginLeft: '10px'
  641. }}
  642. disabled={!hasSelected}
  643. >
  644. 删除<Icon type="minus" />
  645. </Button>
  646. </Popconfirm>
  647. </div>
  648. <div className="patent-table">
  649. <Spin spinning={this.state.loading}>
  650. <Table
  651. columns={this.state.columns}
  652. dataSource={this.state.dataSource}
  653. rowSelection={rowSelection}
  654. pagination={this.state.pagination}
  655. onRowClick={this.tableRowClick}
  656. current={this.state.aa}
  657. />
  658. </Spin>
  659. </div>
  660. <TechDemandDesc
  661. data={this.state.RowData}
  662. showDesc={this.state.showDesc}
  663. closeDesc={this.closeDesc}
  664. categoryList={this.state.categoryList}
  665. tagList={this.state.tagList}
  666. />
  667. <div className="patent-desc">
  668. <Modal
  669. maskClosable={false}
  670. visible={this.state.visible}
  671. onOk={this.checkPatentProcess}
  672. onCancel={this.handleCancel}
  673. width="400px"
  674. title="新增业务项目"
  675. footer=""
  676. className="admin-desc-content"
  677. >
  678. <Form layout="horizontal" onSubmit={this.addhandleSubmit} id="demand-form">
  679. <Spin spinning={this.state.loading}>
  680. <div className="clearfix">
  681. <FormItem labelCol={{ span: 7 }} wrapperCol={{ span: 12 }} label="业务项目名称">
  682. <Input
  683. placeholder="业务项目名称"
  684. value={this.state.categoryName}
  685. style={{ width: '94%' }}
  686. onChange={(e) => {
  687. this.setState({ categoryName: e.target.value });
  688. }}
  689. required="required"
  690. />
  691. <span className="mandatory" style={{ color: 'red', marginLeft: '5px' }}>
  692. *
  693. </span>
  694. </FormItem>
  695. </div>
  696. <div className="clearfix">
  697. <FormItem labelCol={{ span: 7 }} wrapperCol={{ span: 12 }} label="业务品类">
  698. <Cascader placeholder='业务项目品类'
  699. options={this.state.categoryList}
  700. value={this.state.addCid}
  701. style={{ width: '94%' }}
  702. onChange={(e)=>{this.setState({addCid:e})}}/>
  703. <span className="mandatory" style={{ color: 'red', marginLeft: '5px' }}>
  704. *
  705. </span>
  706. </FormItem>
  707. </div>
  708. <div className="clearfix">
  709. <FormItem labelCol={{ span: 7 }} wrapperCol={{ span: 12 }} label="省-市">
  710. <Cascader
  711. options={citySelect()}
  712. value={this.state.ProvinceCity}
  713. placeholder="选择市"
  714. style={{ width: '94%' }}
  715. onChange={(e, pre) => {
  716. this.setState({ ProvinceCity: e });
  717. }}
  718. />
  719. <span style={{ color: 'red', marginLeft: '5px' }}>*</span>
  720. </FormItem>
  721. </div>
  722. <div className="clearfix">
  723. <FormItem labelCol={{ span: 7 }} wrapperCol={{ span: 12 }} label="热点">
  724. <Radio.Group
  725. onChange={(e) => {
  726. this.setState({ isHot: e.target.value });
  727. }}
  728. value={this.state.isHot}
  729. >
  730. <Radio value={0}>否</Radio>
  731. <Radio value={1}>是</Radio>
  732. </Radio.Group>
  733. </FormItem>
  734. </div>
  735. <FormItem wrapperCol={{ span: 12, offset: 7 }}>
  736. <Button className="set-submit" type="primary" htmlType="submit">
  737. 保存
  738. </Button>
  739. <Button
  740. className="set-submit"
  741. type="ghost"
  742. onClick={this.handleCancel}
  743. style={{ marginLeft: '15px' }}
  744. >
  745. 取消
  746. </Button>
  747. </FormItem>
  748. </Spin>
  749. </Form>
  750. </Modal>
  751. </div>
  752. </div>
  753. </div>
  754. );
  755. }
  756. })
  757. );
  758. export default BusinessProject;