businessProject.jsx 19 KB

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