businessCategory.jsx 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  1. import React from 'react';
  2. import $ from 'jquery/src/ajax';
  3. import { Form, Icon, Button, Input, Select, Spin, Table, message, Modal, Upload,Popconfirm } from 'antd';
  4. import {typeModule} from '@/dataDic.js';
  5. import {splitUrl,getTypeModule} from '@/tools.js';
  6. //图片组件
  7. const PicturesWall = React.createClass({
  8. getInitialState() {
  9. return {
  10. previewVisible: false,
  11. previewImage: '',
  12. fileList: [],
  13. tags: []
  14. };
  15. },
  16. handleCancel() {
  17. this.setState({ previewVisible: false });
  18. },
  19. handlePreview(file) {
  20. this.setState({
  21. previewImage: file.url || file.thumbUrl,
  22. previewVisible: true
  23. });
  24. },
  25. handleChange(info) {
  26. let fileList = info.fileList;
  27. this.setState({ fileList });
  28. this.props.fileList(fileList);
  29. },
  30. componentWillReceiveProps(nextProps) {
  31. this.state.fileList = nextProps.pictureUrl;
  32. },
  33. render() {
  34. const { previewVisible, previewImage, fileList } = this.state;
  35. const uploadButton = (
  36. <div>
  37. <Icon type="plus" />
  38. <div className="ant-upload-text">点击上传</div>
  39. </div>
  40. );
  41. return (
  42. <div className="clearfix">
  43. <Upload
  44. action={globalConfig.context + '/api/admin/jtBusiness/uploadPicture'}
  45. data={{ sign: 'jt_business_picture'}}
  46. listType="picture-card"
  47. fileList={fileList}
  48. onPreview={this.handlePreview}
  49. onChange={this.handleChange}
  50. >
  51. {fileList.length >=1 ? null : uploadButton}
  52. </Upload>
  53. <Modal maskClosable={false} visible={previewVisible} footer={null} onCancel={this.handleCancel}>
  54. <img alt="example" style={{ width: '100%' }} src={previewImage} />
  55. </Modal>
  56. </div>
  57. );
  58. }
  59. });
  60. const BusinessCategory=Form.create()(React.createClass({
  61. loadData(pageNo) {
  62. this.state.data = [];
  63. this.setState({
  64. loading: true,
  65. page:pageNo,
  66. });
  67. $.ajax({
  68. method: "get",
  69. dataType: "json",
  70. crossDomain: false,
  71. url: globalConfig.context + '/api/admin/jtBusiness/category/list',
  72. data: {
  73. pageNo: pageNo || 1,
  74. pageSize: this.state.pagination.pageSize,
  75. name:this.state.nameSearch, //品类名称
  76. layer:this.state.layerSearch,//组织层级
  77. },
  78. success: function (data) {
  79. let theArr = [];
  80. if (!data.data || !data.data.list) {
  81. if (data.error && data.error.length) {
  82. message.warning(data.error[0].message);
  83. };
  84. } else {
  85. for (let i = 0; i < data.data.list.length; i++) {
  86. let thisdata = data.data.list[i];
  87. theArr.push({
  88. key: i,
  89. id: thisdata.id,//品类ID
  90. sort:thisdata.sort,//品类序号
  91. number: thisdata.number,//品类编号
  92. module:thisdata.module?thisdata.module.toString():undefined,
  93. name: thisdata.name,//品类名称
  94. layer:thisdata.layer,
  95. superId:thisdata.superId,
  96. layerName: thisdata.layerName,//品类层级
  97. superNameId: thisdata.superId,//上级品类
  98. });
  99. };
  100. this.state.pagination.current = data.data.pageNo;
  101. this.state.pagination.total = data.data.totalCount;
  102. };
  103. this.setState({
  104. dataSource: theArr,
  105. pagination: this.state.pagination
  106. });
  107. }.bind(this),
  108. }).always(function () {
  109. this.setState({
  110. loading: false
  111. });
  112. }.bind(this));
  113. },
  114. loadMenu() {
  115. this.state.data = [];
  116. $.ajax({
  117. method: "get",
  118. dataType: "json",
  119. crossDomain: false,
  120. url: globalConfig.context + '/api/admin/jtBusiness/category/list',
  121. data: {
  122. pageNo: 1,
  123. pageSize:9999,
  124. layer:1,//组织层级
  125. },
  126. success: function (data) {
  127. let theArr = [];
  128. if (!data.data || !data.data.list) {
  129. if (data.error && data.error.length) {
  130. message.warning(data.error[0].message);
  131. };
  132. } else {
  133. for (let i = 0; i < data.data.list.length; i++) {
  134. let thisdata = data.data.list[i];
  135. theArr.push({
  136. key: i,
  137. id: thisdata.id,//品类ID
  138. name: thisdata.name,//品类名称
  139. });
  140. };
  141. };
  142. this.setState({
  143. dataMenu: theArr,
  144. });
  145. }.bind(this),
  146. }).always(function () {
  147. this.setState({
  148. loading: false
  149. });
  150. }.bind(this));
  151. },
  152. getInitialState() {
  153. return {
  154. searchMore: true,
  155. selectedRowKeys: [],
  156. pictureUrl: [],
  157. selectedRows: [],
  158. loading: false,
  159. pagination: {
  160. defaultCurrent: 1,
  161. defaultPageSize: 10,
  162. showQuickJumper: true,
  163. pageSize: 10,
  164. onChange: function (page) {
  165. this.loadData(page);
  166. this.setState({
  167. selectedRowKeys: [],
  168. })
  169. }.bind(this),
  170. showTotal: function (total) {
  171. return '共' + total + '条数据';
  172. }
  173. },
  174. columns: [
  175. {
  176. title: '品类编号',
  177. dataIndex: 'number',
  178. key: 'number',
  179. }, {
  180. title: '品类名称',
  181. dataIndex: 'name',
  182. key: 'name',
  183. }, {
  184. title: '品类层级',
  185. dataIndex: 'layerName',
  186. key: 'layerName'
  187. }, {
  188. title: '上级品类',
  189. dataIndex: 'superName',
  190. key: 'superName',
  191. render:(text)=>{
  192. return text?text:'超级品类'
  193. }
  194. },{
  195. title:'操作',
  196. dataIndex: 'superName1',
  197. key: 'superName1',
  198. render:(text,recard)=>{
  199. return (
  200. <div>
  201. {recard.layer<2&&<Button onClick={(e)=>{e.stopPropagation();this.nextAdd(recard)}}>新建下级品类</Button>}
  202. </div>
  203. )
  204. }
  205. }
  206. ],
  207. dataSource: [],
  208. };
  209. },
  210. componentWillMount() {
  211. this.loadData();
  212. this.loadMenu();
  213. },
  214. //新建下级
  215. nextAdd(recard){
  216. this.setState({
  217. recrdAdd:recard,
  218. visible: true,
  219. name:'',
  220. addFirst:1,
  221. superId:recard.id,
  222. module:recard.module?recard.module.toString():'undefined'
  223. });
  224. },
  225. //编辑保存
  226. edithandleSubmit(e){
  227. e.preventDefault();
  228. let thePictureUrl = [];
  229. if (this.state.pictureUrl.length) {
  230. let picArr = [];
  231. this.state.pictureUrl.map(function (item) {
  232. if ( item.response && item.response.data && item.response.data.length ){
  233. picArr.push(item.response.data);
  234. }
  235. });
  236. thePictureUrl = picArr.join(",");
  237. };
  238. $.ajax({
  239. method: "post",
  240. dataType: "json",
  241. crossDomain: false,
  242. url: globalConfig.context + "/api/admin/jtBusiness/category/update",
  243. data: {
  244. id: this.state.id,
  245. name:this.state.name,
  246. summary:this.state.summary,
  247. imgUrl:thePictureUrl,
  248. module:this.state.modules,
  249. superId:this.state.superNameId
  250. }
  251. }).done(function (data) {
  252. if (!data.error.length) {
  253. message.success('保存成功!');
  254. this.setState({
  255. loading: false,
  256. editvisible:false
  257. });
  258. } else {
  259. message.warning(data.error[0].message);
  260. };
  261. this.loadData(this.state.page)
  262. }.bind(this));
  263. },
  264. //整行删除
  265. delectRow() {
  266. let deletedIds =[];
  267. let rowItem = this.state.selectedRowKeys[0];
  268. let data = this.state.dataSource ||[];
  269. if (data.length) {
  270. deletedIds.push(data[rowItem].id);
  271. }
  272. this.setState({
  273. selectedRowKeys: [],
  274. loading: deletedIds.length > 0
  275. });
  276. $.ajax({
  277. method: "post",
  278. dataType: "json",
  279. crossDomain: false,
  280. url: globalConfig.context + "/api/admin/jtBusiness/category/delete",
  281. data: {
  282. id: deletedIds[0]
  283. }
  284. }).done(function (data) {
  285. if (!data.error.length) {
  286. message.success('删除成功!');
  287. this.setState({
  288. loading: false,
  289. });
  290. } else {
  291. message.warning(data.error[0].message);
  292. };
  293. this.loadData(this.state.page)
  294. }.bind(this));
  295. },
  296. addClick() {
  297. this.state.RowData = {};
  298. this.setState({
  299. visible: true,
  300. addFirst:0,
  301. name:'',
  302. superId:'',
  303. module:"1"
  304. });
  305. },
  306. //新增保存
  307. addhandleSubmit(e){
  308. e.preventDefault();
  309. this.setState({
  310. loading:true
  311. })
  312. $.ajax({
  313. method: "post",
  314. dataType: "json",
  315. crossDomain: false,
  316. url: globalConfig.context + "/api/admin/jtBusiness/category/apply",
  317. data: {
  318. name:this.state.name,
  319. superId:this.state.superId,
  320. layer:this.state.addFirst?((this.state.recrdAdd.layer)+1):'1',
  321. module:this.state.module
  322. }
  323. }).done(function (data) {
  324. if (!data.error.length) {
  325. message.success('新增成功!');
  326. this.setState({
  327. loading: false,
  328. visible:false
  329. });
  330. } else {
  331. message.warning(data.error[0].message);
  332. };
  333. this.loadData(this.state.page)
  334. }.bind(this));
  335. },
  336. editClick() {
  337. this.state.RowData = {};
  338. this.setState({
  339. editvisible: true
  340. });
  341. },
  342. detailes(recard){
  343. this.setState({
  344. loading: true,
  345. });
  346. $.ajax({
  347. method: "get",
  348. dataType: "json",
  349. crossDomain: false,
  350. url: globalConfig.context + '/api/admin/jtBusiness/category/detail',
  351. data: {
  352. id:recard.id
  353. },
  354. success: function (data) {
  355. if (!data.data) {
  356. if (data.error && data.error.length) {
  357. message.warning(data.error[0].message);
  358. };
  359. } else {
  360. let thisdata=data.data;
  361. this.setState({
  362. id:thisdata.id,//品类id
  363. name:thisdata.name,//品类名称
  364. createTime:thisdata.createTime?(new Date(thisdata.createTime)).toLocaleString():'',
  365. superId:thisdata.superId,//父类id
  366. modules:thisdata.module?thisdata.module.toString():undefined,
  367. pictureUrl: thisdata.imgUrl ? splitUrl(thisdata.imgUrl, ',', globalConfig.avatarHost + '/upload') : [],
  368. superNameId:thisdata.superId
  369. })
  370. };
  371. }.bind(this),
  372. }).always(function () {
  373. this.setState({
  374. loading: false
  375. });
  376. }.bind(this));
  377. },
  378. handleCancel() {
  379. this.setState({ visible: false })
  380. },
  381. edithandleCancel() {
  382. this.setState({ editvisible: false })
  383. },
  384. search() {
  385. this.loadData();
  386. },
  387. reset() {
  388. this.state.nameSearch = '';//品类名称清零
  389. this.state.layerSearch = undefined;//品类层级清零
  390. this.loadData();
  391. },
  392. searchSwitch() {
  393. this.setState({
  394. searchMore: !this.state.searchMore
  395. });
  396. },
  397. getPictureUrl(e) {
  398. this.setState({ pictureUrl: e });
  399. },
  400. tableRowClick(record, index) {
  401. this.setState({
  402. editvisible: true,
  403. visible:false,
  404. theData:record
  405. });
  406. this.detailes(record)
  407. },
  408. render() {
  409. const FormItem = Form.Item
  410. const rowSelection = {
  411. selectedRowKeys: this.state.selectedRowKeys,
  412. onChange: (selectedRowKeys, selectedRows) => {
  413. this.setState({
  414. selectedRows: selectedRows.slice(-1),
  415. selectedRowKeys: selectedRowKeys.slice(-1)
  416. });
  417. }
  418. };
  419. const hasSelected = this.state.selectedRowKeys.length > 0;
  420. const theData =this.state.theData ||{};
  421. const recrdAdd = this.state.recrdAdd ||{};
  422. const dataMenu =this.state.dataMenu || {};
  423. return (
  424. <div className="user-content" >
  425. <div className="content-title">
  426. <div className="content-title">
  427. <span>项目业务管理</span>
  428. </div>
  429. <div className="user-search">
  430. <Input placeholder="业务品类名称" style={{width:'150px',marginRight:'10px',marginBottom:'10px'}}
  431. value={this.state.nameSearch}
  432. onChange={(e) => { this.setState({ nameSearch: e.target.value }); }} />
  433. <Select placeholder="品类层级"
  434. style={{ width:'200px',marginRight:'10px' }}
  435. value={this.state.layerSearch} onChange={(e)=>{this.setState({layerSearch:e})}}>
  436. <Select.Option value="1">一级</Select.Option>
  437. <Select.Option value="2">二级</Select.Option>
  438. </Select>
  439. <Button type="primary" onClick={this.search} style={{marginRight:'10px'}}>搜索</Button>
  440. <Button onClick={this.reset} style={{marginRight:'10px'}}>重置</Button>
  441. <Popconfirm title="是否删除?" onConfirm={this.delectRow} okText="是" cancelText="否">
  442. <Button style={{marginRight:'10px' ,marginLeft:'10px'}} type="danger"
  443. disabled={!hasSelected}
  444. >删除<Icon type="minus" />
  445. </Button>
  446. </Popconfirm>
  447. <Popconfirm title="是否停用?" onConfirm={this.blockRow} okText="是" cancelText="否">
  448. <Button style={{ background: "#ea0862", border: "none", color: "#fff",marginRight:'10px' ,marginLeft:'10px',display:'none'}}
  449. disabled={!hasSelected}
  450. >停用<Icon type="minus" />
  451. </Button>
  452. </Popconfirm>
  453. <Button type="primary" className="addButton" onClick={this.addClick} style={{float:'right',marginRight:'200px'}}>新增品类<Icon type="plus" /></Button>
  454. </div>
  455. <div className="patent-table">
  456. <Spin spinning={this.state.loading}>
  457. <Table columns={this.state.columns}
  458. dataSource={this.state.dataSource}
  459. rowSelection={rowSelection}
  460. pagination={this.state.pagination}
  461. onRowClick={this.tableRowClick} />
  462. </Spin>
  463. </div>
  464. <div className="patent-desc">
  465. <Modal maskClosable={false} visible={this.state.visible}
  466. onOk={this.checkPatentProcess} onCancel={this.handleCancel}
  467. width='420px'
  468. title='新增品类'
  469. footer=''
  470. className="admin-desc-content">
  471. <Form layout="horizontal" onSubmit={(e)=>{this.addhandleSubmit(e,{})}} id="demand-form">
  472. <Spin spinning={this.state.loading}>
  473. <div className="clearfix">
  474. <FormItem
  475. labelCol={{ span: 7 }}
  476. wrapperCol={{ span: 12 }}
  477. label="品类名称" >
  478. <Input placeholder="品类名称" value={this.state.name} style={{width:'94%'}}
  479. onChange={(e)=>{this.setState({name:e.target.value})}} required="required"/>
  480. <span className="mandatory" style={{color:'red',marginLeft:'5px'}}>*</span>
  481. </FormItem>
  482. </div>
  483. <div className="clearfix">
  484. <FormItem
  485. labelCol={{ span: 7 }}
  486. wrapperCol={{ span: 12 }}
  487. label="所属模块" >
  488. {!this.state.addFirst? <Select value ={this.state.module} onChange={(e)=>{this.setState({module:e})}}>
  489. {typeModule.map(item=>{
  490. return <Select.Option key={item.value} value={item.value}>{item.key}</Select.Option>
  491. })}
  492. </Select>:<span>{getTypeModule(recrdAdd.module)}</span>}
  493. </FormItem>
  494. </div>
  495. <div className="clearfix">
  496. <FormItem
  497. labelCol={{ span: 7 }}
  498. wrapperCol={{ span: 12 }}
  499. label="上级品类"
  500. >
  501. <span>{this.state.addFirst?recrdAdd.name:'超级品类'}</span>
  502. </FormItem>
  503. </div>
  504. <FormItem wrapperCol={{ span: 12, offset: 7 }}>
  505. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  506. <Button className="set-submit" type="ghost" onClick={this.handleCancel} style={{marginLeft:'15px'}}>取消</Button>
  507. </FormItem>
  508. </Spin>
  509. </Form >
  510. </Modal>
  511. </div>
  512. <div className="patent-desc">
  513. <Modal maskClosable={false} visible={this.state.editvisible}
  514. onOk={this.checkPatentProcess} onCancel={this.edithandleCancel}
  515. width='600px'
  516. title='编辑品类'
  517. footer=''
  518. className="admin-desc-content">
  519. <Form layout='horizontal' onSubmit={this.edithandleSubmit} id="demand-form">
  520. <Spin spinning={this.state.loading}>
  521. <div className="clearfix">
  522. <FormItem
  523. labelCol={{ span: 7 }}
  524. wrapperCol={{ span: 12 }}
  525. label="品类名称" >
  526. <Input placeholder="组织名称" value={this.state.name}
  527. onChange={(e)=>{this.setState({name:e.target.value})}}/>
  528. </FormItem>
  529. </div>
  530. {theData.layer=='2'?<div className="clearfix">
  531. <FormItem
  532. labelCol={{ span: 7 }}
  533. wrapperCol={{ span: 12 }}
  534. label="上级品类"
  535. >
  536. <Select onChange={(e)=>{this.setState({superNameId:e})}} value={this.state.superNameId}>
  537. {
  538. dataMenu.map(item=>{
  539. return <Select.Option key={item.key} value={item.id}>{item.name}</Select.Option>
  540. })
  541. }
  542. </Select>
  543. </FormItem>
  544. </div>:''}
  545. <div className="clearfix">
  546. <FormItem
  547. labelCol={{ span: 7 }}
  548. wrapperCol={{ span: 12 }}
  549. label="业务品类图标" >
  550. <PicturesWall
  551. fileList={this.getPictureUrl}
  552. pictureUrl={this.state.pictureUrl}
  553. visible={this.props.visible}
  554. />
  555. </FormItem>
  556. </div>
  557. <div className="clearfix">
  558. <FormItem
  559. labelCol={{ span: 7 }}
  560. wrapperCol={{ span: 12 }}
  561. label="品类序号"
  562. >
  563. <span>{theData.sort}</span>
  564. </FormItem>
  565. </div>
  566. <div className="clearfix">
  567. <FormItem
  568. labelCol={{ span: 7 }}
  569. wrapperCol={{ span: 12 }}
  570. label="品类层级"
  571. >
  572. <span>{theData.layerName}</span>
  573. </FormItem>
  574. </div>
  575. <FormItem
  576. labelCol={{ span: 7 }}
  577. wrapperCol={{ span: 12 }}
  578. label="所属模块" >
  579. {theData.layer=='1'?<Select value ={this.state.modules} onChange={(e)=>{this.setState({modules:e})}} style={{width:160}}>
  580. {typeModule.map(item=>{
  581. return <Select.Option key={item.value} value={item.value}>{item.key}</Select.Option>
  582. })}
  583. </Select>:<span>{getTypeModule(this.state.modules)}</span>}
  584. </FormItem>
  585. <div className="clearfix">
  586. <FormItem
  587. labelCol={{ span: 7 }}
  588. wrapperCol={{ span: 12 }}
  589. label="品类编号"
  590. >
  591. <span>{theData.number}</span>
  592. </FormItem>
  593. </div>
  594. <div className="clearfix" >
  595. <FormItem
  596. labelCol={{ span: 7 }}
  597. wrapperCol={{ span: 12 }}
  598. label="创建人"
  599. >
  600. <span>超级管理员</span>
  601. </FormItem>
  602. </div>
  603. <div className="clearfix">
  604. <FormItem
  605. labelCol={{ span: 7 }}
  606. wrapperCol={{ span: 12 }}
  607. label="创建时间"
  608. >
  609. <span>{this.state.createTime}</span>
  610. </FormItem>
  611. </div>
  612. <FormItem wrapperCol={{ span: 12, offset: 7 }}>
  613. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  614. <Button className="set-submit" type="ghost" onClick={this.edithandleCancel} style={{marginLeft:'100px'}}>取消</Button>
  615. </FormItem>
  616. </Spin>
  617. </Form >
  618. </Modal>
  619. </div>
  620. </div>
  621. </div>
  622. );
  623. }
  624. }));
  625. export default BusinessCategory;