businessProject.jsx 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  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. Upload,
  16. Popconfirm,
  17. Cascader,
  18. InputNumber,
  19. Radio
  20. } from 'antd';
  21. import { getGameState, splitUrl, getprovince } from '@/tools.js';
  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/admin/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: 1,
  96. auditStatus:1
  97. },
  98. success: function(data) {
  99. let theArr = [];
  100. if (!data.data || !data.data.list) {
  101. if (data.error && data.error.length) {
  102. message.warning(data.error[0].message);
  103. }
  104. } else {
  105. for (let i = 0; i < data.data.list.length; i++) {
  106. let thisdata = data.data.list[i],
  107. ProvinceCityArr = [],
  108. cname = '',
  109. superName = '',
  110. ProvinceS = thisdata.province, //getprovince
  111. citys = thisdata.city,
  112. Areas = thisdata.area;
  113. ProvinceCityArr.push(ProvinceS, citys, Areas);
  114. this.state.categoryList.map((item) => {
  115. if (thisdata.categoryId == item.id) {
  116. cname = item.name;
  117. superName = item.superName;
  118. }
  119. });
  120. theArr.push({
  121. key: i,
  122. id: thisdata.id, //业务名称
  123. name: thisdata.name, //业务名称
  124. categoryId: thisdata.categoryId, //业务品类
  125. number: thisdata.number,
  126. price: thisdata.price, //市场价
  127. superName: superName,
  128. cname: cname,
  129. city: thisdata.city,
  130. activityPrice: thisdata.activityPrice ? thisdata.activityPrice : '', //最低折扣
  131. memberPrice: thisdata.memberPrice ? thisdata.memberPrice : '', //会员价
  132. offset: thisdata.offset ? thisdata.offset : '',
  133. activityPrice: thisdata.activityPrice ? thisdata.activityPrice : '', //活动价
  134. activityFlag: thisdata.activityFlag, //活动生效标识
  135. status: thisdata.status, //项目状态
  136. province: thisdata.province,
  137. introduce: thisdata.introduce,
  138. createTime: thisdata.createTime ? new Date(thisdata.createTime).toLocaleString() : '',
  139. value: thisdata.value,
  140. applyConditions: thisdata.applyConditions
  141. });
  142. }
  143. this.state.pagination.current = data.data.pageNo;
  144. this.state.pagination.total = data.data.totalCount;
  145. }
  146. this.setState({
  147. dataSource: theArr,
  148. pagination: this.state.pagination
  149. });
  150. }.bind(this)
  151. }).always(
  152. function() {
  153. this.setState({
  154. loading: false
  155. });
  156. }.bind(this)
  157. );
  158. },
  159. getInitialState() {
  160. return {
  161. searchMore: true,
  162. selectedRowKeys: [],
  163. selectedRows: [],
  164. loading: false,
  165. orgCodeUrl: [],
  166. typeSearch:[],
  167. companyLogoUrl: [],
  168. pagination: {
  169. defaultCurrent: 1,
  170. defaultPageSize: 10,
  171. showQuickJumper: true,
  172. pageSize: 10,
  173. onChange: function(page) {
  174. this.loadData(page);
  175. this.setState({
  176. selectedRowKeys: []
  177. });
  178. }.bind(this),
  179. showTotal: function(total) {
  180. return '共' + total + '条数据';
  181. }
  182. },
  183. columns: [
  184. {
  185. title: '项目名称',
  186. dataIndex: 'name',
  187. key: 'bname'
  188. },
  189. {
  190. title: '品类名称',
  191. dataIndex: 'cname',
  192. key: 'cname',
  193. render:(text,recard)=>{
  194. let ids =recard.categoryId,categoryList =this.state.categoryList,txt='' ;
  195. categoryList.map(item=>{
  196. if(item.children){
  197. (item.children).map(atem=>{
  198. if(atem.value==ids){
  199. txt= atem.label
  200. }
  201. })
  202. }
  203. })
  204. return txt;
  205. }
  206. },
  207. {
  208. title: '上级品类',
  209. dataIndex: 'superName',
  210. key: 'superName',
  211. render:(text,recard)=>{
  212. let ids =recard.categoryId,categoryList =this.state.categoryList,txt='' ;
  213. categoryList.map(item=>{
  214. if(item.children){
  215. (item.children).map(atem=>{
  216. if(atem.value==ids){
  217. txt= item.label
  218. }
  219. })
  220. }
  221. })
  222. return txt;
  223. }
  224. },
  225. {
  226. title: '业务地区',
  227. dataIndex: 'area',
  228. key: 'area',
  229. render: (text, rocard) => {
  230. return (
  231. <div>
  232. {rocard.province != 0 ? (
  233. <span>{getprovince(rocard.province) + '-' + getprovince(rocard.city)}</span>
  234. ) : (
  235. '全国'
  236. )}
  237. </div>
  238. );
  239. }
  240. },
  241. {
  242. title: '市场价',
  243. dataIndex: 'price',
  244. key: 'price'
  245. },
  246. {
  247. title: '最低折扣',
  248. dataIndex: 'offset',
  249. key: 'offset'
  250. },
  251. {
  252. title: '会员价',
  253. dataIndex: 'memberPrice',
  254. key: 'memberPrice'
  255. },
  256. {
  257. title: '活动价',
  258. dataIndex: 'activityPrice',
  259. key: 'activityPrice'
  260. },
  261. {
  262. title: '活动生效标识',
  263. dataIndex: 'activityFlag',
  264. key: 'activityFlag',
  265. render: (text) => {
  266. return getGameState(text);
  267. }
  268. },
  269. {
  270. title: '审核',
  271. dataIndex: 'caozuo',
  272. key: 'caozuo',
  273. render: (text, recard) => {
  274. return (
  275. <div className="btnRight">
  276. <Button
  277. type="primary"
  278. onClick={(e) => {
  279. e.stopPropagation();
  280. this.tableRowClick(recard);
  281. }}
  282. >
  283. 审核
  284. </Button>
  285. </div>
  286. );
  287. }
  288. }
  289. ],
  290. dataSource: []
  291. };
  292. },
  293. //业务品类列表获取
  294. topLevel() {
  295. $.ajax({
  296. method: 'get',
  297. dataType: 'json',
  298. crossDomain: false,
  299. url: globalConfig.context + '/portal/service/jtBusiness/getCategoryList',
  300. data: {
  301. },
  302. success: function(data) {
  303. let theArr = [],thisdata=data.data;
  304. if (!data.data) {
  305. if (data.error && data.error.length) {
  306. message.warning(data.error[0].message);
  307. }
  308. } else {
  309. thisdata.map((item,index) => {
  310. theArr.push({
  311. 'value':item.topLevelId,
  312. 'label':item.topLevel,
  313. 'children':[]
  314. })
  315. if (item.children) {
  316. item.children.map(atem => {
  317. (theArr[index].children).push({
  318. 'value':atem.id,
  319. 'label':atem.name
  320. })
  321. })
  322. }
  323. })
  324. }
  325. this.setState({
  326. categoryList: theArr,
  327. });
  328. this.loadData();
  329. }.bind(this)
  330. }).always(
  331. function() {
  332. this.setState({
  333. loading: false
  334. });
  335. }.bind(this)
  336. );
  337. },
  338. componentWillMount() {
  339. this.topLevel();
  340. },
  341. detailes(recard) {
  342. this.setState({
  343. loading:true
  344. });
  345. $.ajax({
  346. method: 'get',
  347. dataType: 'json',
  348. crossDomain: false,
  349. url: globalConfig.context + '/api/user/jtBusiness/project/detail',
  350. data: {
  351. id: recard.id
  352. },
  353. success: function(data) {
  354. let thisData = data.data;
  355. if (!thisData) {
  356. if (data.error && data.error.length) {
  357. message.warning(data.error[0].message);
  358. }
  359. thisData = {};
  360. }
  361. let categoryList = this.state.categoryList,name='';
  362. categoryList.map(item=>{
  363. if((item.children).length){
  364. (item.children).map(atem=>{
  365. if(atem.value==thisData.categoryId){
  366. name=item.label+'/'+atem.label;
  367. return;
  368. }
  369. })
  370. }
  371. })
  372. this.setState({
  373. id: thisData.id,
  374. data: thisData,
  375. name: name,
  376. createTime: thisData.createTime ? new Date(thisData.createTime).toLocaleString() : '',
  377. auditStatus: thisData.auditStatus,
  378. orgCodeUrl: thisData.minImgUrl
  379. ? splitUrl(thisData.minImgUrl, ',', globalConfig.avatarHost + '/upload')
  380. : [],
  381. companyLogoUrl: thisData.maxImgUrl
  382. ? splitUrl(thisData.maxImgUrl, ',', globalConfig.avatarHost + '/upload')
  383. : []
  384. });
  385. }.bind(this)
  386. }).always(
  387. function() {
  388. this.setState({
  389. loading: false
  390. });
  391. }.bind(this)
  392. );
  393. },
  394. //项目列表整行点击
  395. tableRowClick(record, index) {
  396. this.state.RowData = record;
  397. this.setState({
  398. editvisible: true
  399. });
  400. this.detailes(record);
  401. },
  402. edithandleCancel(e) {
  403. this.setState({
  404. editvisible: false
  405. });
  406. },
  407. //审核通过/拒绝
  408. updateFun(index){
  409. this.setState({
  410. loading:true
  411. })
  412. $.ajax({
  413. method: "post",
  414. dataType: "JSON",
  415. crossDomain: false,
  416. url: globalConfig.context + '/api/admin/jtBusiness/project/audit',
  417. data: {
  418. id: this.state.id,
  419. auditResult:index,
  420. auditInfo:this.state.refuseValue
  421. }
  422. }).done(function (data) {
  423. if (!data.error.length) {
  424. message.success('操作成功!');
  425. this.setState({
  426. loading: false,
  427. editvisible:false
  428. });
  429. if(this.state.pagination.total%10==1){
  430. this.loadData((this.state.page)-1);
  431. }else{
  432. this.loadData(this.state.page);
  433. }
  434. } else {
  435. message.warning(data.error[0].message);
  436. };
  437. }.bind(this));
  438. },
  439. //审核拒绝
  440. refuse(){
  441. this.setState({
  442. refuseValue:'',
  443. refuseVisible:true
  444. })
  445. },
  446. refuseOk(){
  447. if(!this.state.refuseValue){
  448. message.warning('请填写拒绝原因。')
  449. return;
  450. }
  451. this.setState({
  452. refuseVisible:false
  453. })
  454. this.updateFun(1)
  455. },
  456. refuseCancel(){
  457. this.setState({
  458. refuseValue:'',
  459. refuseVisible:false
  460. })
  461. },
  462. search() {
  463. this.loadData();
  464. },
  465. //搜索部分的清零
  466. reset() {
  467. this.state.nameSearch = ''; //项目名称清零
  468. this.state.typeSearch = undefined; //品类名称清零
  469. this.state.ressSearch = undefined; //省市区清零
  470. this.state.activityFlag = undefined; //活动生效清零
  471. this.state.status = undefined; //项目状态清零
  472. this.loadData();
  473. },
  474. //更多搜索的显示与否
  475. searchSwitch() {
  476. this.setState({
  477. searchMore: !this.state.searchMore
  478. });
  479. },
  480. render() {
  481. const FormItem = Form.Item;
  482. const rowSelection = {
  483. selectedRowKeys: this.state.selectedRowKeys,
  484. onChange: (selectedRowKeys, selectedRows) => {
  485. this.setState({
  486. selectedRows: selectedRows.slice(-1),
  487. selectedRowKeys: selectedRowKeys.slice(-1)
  488. });
  489. }
  490. };
  491. const theData = this.state.data || {};
  492. return (
  493. <div className="user-content">
  494. <div className="content-title">
  495. <div className="user-search">
  496. <Input
  497. placeholder="业务项目名称"
  498. style={{ width: '150px', marginRight: '10px', marginBottom: '10px' }}
  499. value={this.state.nameSearch}
  500. onChange={(e) => {
  501. this.setState({ nameSearch: e.target.value });
  502. }}
  503. />
  504. <Cascader placeholder='业务项目品类'
  505. options={this.state.categoryList}
  506. style={{width:200,marginRight:10}}
  507. value={this.state.typeSearch} onChange={(e)=>{this.setState({typeSearch:e})}}/>
  508. <Button type="primary" onClick={this.search} style={{ marginRight: '10px' }}>
  509. 搜索
  510. </Button>
  511. <Button onClick={this.reset} style={{ marginRight: '10px' }}>
  512. 重置
  513. </Button>
  514. </div>
  515. <div className="patent-table">
  516. <Spin spinning={this.state.loading}>
  517. <Table
  518. columns={this.state.columns}
  519. dataSource={this.state.dataSource}
  520. rowSelection={rowSelection}
  521. pagination={this.state.pagination}
  522. />
  523. </Spin>
  524. </div>
  525. <div className="patent-desc">
  526. <Modal
  527. className="customeDetails"
  528. title="业务项目"
  529. width="1000px"
  530. visible={this.state.editvisible}
  531. onOk={this.edithandleCancel}
  532. onCancel={this.edithandleCancel}
  533. footer=""
  534. >
  535. <Form layout="horizontal" onSubmit={this.edithandleSubmit} id="demand-form">
  536. <Spin spinning={this.state.loading}>
  537. <div className="clearfix">
  538. <FormItem
  539. className="half-item"
  540. labelCol={{ span: 8 }}
  541. wrapperCol={{ span: 12 }}
  542. label="项目名称"
  543. >
  544. <span>{theData.name}</span>
  545. </FormItem>
  546. <FormItem
  547. className="half-item"
  548. labelCol={{ span: 8 }}
  549. wrapperCol={{ span: 12 }}
  550. label="业务品类"
  551. >
  552. <span>{this.state.name}</span>
  553. </FormItem>
  554. </div>
  555. <div className="clearfix">
  556. <FormItem
  557. className="half-item"
  558. labelCol={{ span: 8 }}
  559. wrapperCol={{ span: 12 }}
  560. label="省份"
  561. >
  562. <span>
  563. {theData.province != '0' ? getprovince(theData.province) : '全国'}
  564. </span>
  565. </FormItem>
  566. <FormItem
  567. className="half-item"
  568. labelCol={{ span: 8 }}
  569. wrapperCol={{ span: 12 }}
  570. label="热点"
  571. >
  572. <span>{theData.isHot=='1' ? '是' :theData.isHot=='0'?'否':''}</span>
  573. </FormItem>
  574. </div>
  575. <div className="clearfix">
  576. <FormItem
  577. className="half-item"
  578. labelCol={{ span: 8 }}
  579. wrapperCol={{ span: 12 }}
  580. label="市场价"
  581. >
  582. <span>{theData.price} 万元</span>
  583. </FormItem>
  584. <FormItem
  585. className="half-item"
  586. labelCol={{ span: 8 }}
  587. wrapperCol={{ span: 12 }}
  588. label="活动价"
  589. >
  590. <span>{theData.activityPrice} 万元</span>
  591. </FormItem>
  592. <FormItem
  593. className="half-item"
  594. labelCol={{ span: 8 }}
  595. wrapperCol={{ span: 12 }}
  596. label="最低折扣"
  597. >
  598. <span>{theData.offset} 万元</span>
  599. </FormItem>
  600. <FormItem
  601. className="half-item"
  602. labelCol={{ span: 8 }}
  603. wrapperCol={{ span: 12 }}
  604. label="会员价"
  605. >
  606. <span>{theData.memberPrice} 万元</span>
  607. </FormItem>
  608. <FormItem
  609. className="half-item"
  610. labelCol={{ span: 8 }}
  611. wrapperCol={{ span: 12 }}
  612. label="活动生效"
  613. >
  614. <span>{theData.activityFlag =='1'? '有效' : theData.activityFlag =='0'?'无效':''}</span>
  615. </FormItem>
  616. <FormItem
  617. className="half-item"
  618. labelCol={{ span: 8 }}
  619. wrapperCol={{ span: 12 }}
  620. label="创建时间"
  621. >
  622. <span>{this.state.createTime}</span>
  623. </FormItem>
  624. </div>
  625. <div className="clearfix">
  626. <FormItem labelCol={{ span: 4 }} wrapperCol={{ span: 12 }} label="业务项目服务内容">
  627. <span>{theData.introduce}</span>
  628. </FormItem>
  629. </div>
  630. {/* <div className="clearfix">
  631. <FormItem labelCol={{ span: 4 }} wrapperCol={{ span: 12 }} label="标签">
  632. <span>{this.state.tags}</span>
  633. </FormItem>
  634. </div> */}
  635. <div className="clearfix">
  636. <FormItem labelCol={{ span: 4 }} wrapperCol={{ span: 12 }} label="项目营销说明">
  637. <span>{theData.advertisement}</span>
  638. </FormItem>
  639. </div>
  640. <div className="clearfix">
  641. <FormItem
  642. labelCol={{ span: 4 }}
  643. wrapperCol={{ span: 12 }}
  644. label="业务项目价值及作用"
  645. >
  646. <span>{theData.value}</span>
  647. </FormItem>
  648. </div>
  649. <div className="clearfix">
  650. <FormItem
  651. labelCol={{ span: 4 }}
  652. wrapperCol={{ span: 12 }}
  653. label="业务项目客户基本条件"
  654. >
  655. <span>{theData.applyConditions}</span>
  656. </FormItem>
  657. </div>
  658. <div className="clearfix pictures">
  659. <FormItem
  660. className="half-item"
  661. labelCol={{ span: 8 }}
  662. wrapperCol={{ span: 10 }}
  663. label="业务项目图标(小)"
  664. >
  665. <Upload
  666. className="demandDetailShow-upload"
  667. listType="picture-card"
  668. fileList={this.state.orgCodeUrl}
  669. onPreview={(file) => {
  670. this.setState({
  671. previewImage: file.url || file.thumbUrl,
  672. previewVisible: true
  673. });
  674. }}
  675. />
  676. <Modal
  677. maskClosable={false}
  678. footer={null}
  679. visible={this.state.previewVisible}
  680. onCancel={() => {
  681. this.setState({ previewVisible: false });
  682. }}
  683. >
  684. <img
  685. alt=""
  686. style={{ width: '100%' }}
  687. src={this.state.previewImage || ''}
  688. />
  689. </Modal>
  690. </FormItem>
  691. <FormItem
  692. className="half-item"
  693. labelCol={{ span: 8 }}
  694. wrapperCol={{ span: 12 }}
  695. label="业务项目图标(大)"
  696. >
  697. <Upload
  698. className="demandDetailShow-upload"
  699. listType="picture-card"
  700. fileList={this.state.companyLogoUrl}
  701. onPreview={(file) => {
  702. this.setState({
  703. previewImage: file.url || file.thumbUrl,
  704. previewVisible: true
  705. });
  706. }}
  707. />
  708. <Modal
  709. maskClosable={false}
  710. footer={null}
  711. visible={this.state.previewVisible}
  712. onCancel={() => {
  713. this.setState({ previewVisible: false });
  714. }}
  715. >
  716. <img
  717. alt=""
  718. style={{ width: '100%' }}
  719. src={this.state.previewImage || ''}
  720. />
  721. </Modal>
  722. </FormItem>
  723. <div className="clearfix">
  724. <FormItem wrapperCol={{ span: 12, offset: 3 }}>
  725. <Button
  726. className="set-submit"
  727. type="primary"
  728. onClick={(e) => {
  729. this.updateFun(0);
  730. }}
  731. >
  732. 审核通过
  733. </Button>
  734. <Button
  735. type="danger"
  736. style={{ marginRight: 20 }}
  737. onClick={(e) => {
  738. this.refuse();
  739. }}
  740. >
  741. 审核拒绝
  742. </Button>
  743. <Button
  744. className="set-submit"
  745. type="ghost"
  746. onClick={this.edithandleCancel}
  747. >
  748. 取消
  749. </Button>
  750. </FormItem>
  751. </div>
  752. </div>
  753. </Spin>
  754. </Form>
  755. </Modal>
  756. </div>
  757. </div>
  758. <Modal
  759. title="审核拒绝"
  760. visible={this.state.refuseVisible}
  761. onOk={this.refuseOk}
  762. onCancel={this.refuseCancel}
  763. >
  764. <div>
  765. <FormItem labelCol={{ span: 3 }} wrapperCol={{ span: 18 }} label="拒绝原因">
  766. <Input type="textarea" rows={4} value={this.state.refuseValue} placeholder="输入拒绝原因" onChange={(e)=>{this.setState({refuseValue:e.target.value})}}/>
  767. </FormItem>
  768. </div>
  769. </Modal>
  770. </div>
  771. );
  772. }
  773. })
  774. );
  775. export default BusinessProject;