businessCategory.jsx 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  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. superName: thisdata.superName,//上级品类
  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. getInitialState() {
  115. return {
  116. searchMore: true,
  117. selectedRowKeys: [],
  118. pictureUrl: [],
  119. selectedRows: [],
  120. loading: false,
  121. pagination: {
  122. defaultCurrent: 1,
  123. defaultPageSize: 10,
  124. showQuickJumper: true,
  125. pageSize: 10,
  126. onChange: function (page) {
  127. this.loadData(page);
  128. this.setState({
  129. selectedRowKeys: [],
  130. })
  131. }.bind(this),
  132. showTotal: function (total) {
  133. return '共' + total + '条数据';
  134. }
  135. },
  136. columns: [
  137. {
  138. title: '品类编号',
  139. dataIndex: 'number',
  140. key: 'number',
  141. }, {
  142. title: '品类名称',
  143. dataIndex: 'name',
  144. key: 'name',
  145. }, {
  146. title: '品类层级',
  147. dataIndex: 'layerName',
  148. key: 'layerName'
  149. }, {
  150. title: '上级品类',
  151. dataIndex: 'superName',
  152. key: 'superName',
  153. render:(text)=>{
  154. return text?text:'超级品类'
  155. }
  156. },{
  157. title:'操作',
  158. dataIndex: 'superName1',
  159. key: 'superName1',
  160. render:(text,recard)=>{
  161. return (
  162. <div>
  163. {recard.layer<2&&<Button onClick={(e)=>{e.stopPropagation();this.nextAdd(recard)}}>新建下级品类</Button>}
  164. </div>
  165. )
  166. }
  167. }
  168. ],
  169. dataSource: [],
  170. };
  171. },
  172. componentWillMount() {
  173. this.loadData();
  174. },
  175. //新建下级
  176. nextAdd(recard){
  177. this.setState({
  178. recrdAdd:recard,
  179. visible: true,
  180. name:'',
  181. addFirst:1,
  182. superId:recard.id,
  183. module:recard.module?recard.module.toString():'undefined'
  184. });
  185. },
  186. //编辑保存
  187. edithandleSubmit(e){
  188. e.preventDefault();
  189. let thePictureUrl = [];
  190. if (this.state.pictureUrl.length) {
  191. let picArr = [];
  192. this.state.pictureUrl.map(function (item) {
  193. if ( item.response && item.response.data && item.response.data.length ){
  194. picArr.push(item.response.data);
  195. }
  196. });
  197. thePictureUrl = picArr.join(",");
  198. };
  199. $.ajax({
  200. method: "post",
  201. dataType: "json",
  202. crossDomain: false,
  203. url: globalConfig.context + "/api/admin/jtBusiness/category/update",
  204. data: {
  205. id: this.state.id,
  206. name:this.state.name,
  207. summary:this.state.summary,
  208. imgUrl:thePictureUrl
  209. }
  210. }).done(function (data) {
  211. if (!data.error.length) {
  212. message.success('保存成功!');
  213. this.setState({
  214. loading: false,
  215. editvisible:false
  216. });
  217. } else {
  218. message.warning(data.error[0].message);
  219. };
  220. this.loadData(this.state.page)
  221. }.bind(this));
  222. },
  223. //整行删除
  224. delectRow() {
  225. let deletedIds =[];
  226. let rowItem = this.state.selectedRowKeys[0];
  227. let data = this.state.dataSource ||[];
  228. if (data.length) {
  229. deletedIds.push(data[rowItem].id);
  230. }
  231. this.setState({
  232. selectedRowKeys: [],
  233. loading: deletedIds.length > 0
  234. });
  235. $.ajax({
  236. method: "post",
  237. dataType: "json",
  238. crossDomain: false,
  239. url: globalConfig.context + "/api/admin/jtBusiness/category/delete",
  240. data: {
  241. id: deletedIds[0]
  242. }
  243. }).done(function (data) {
  244. if (!data.error.length) {
  245. message.success('删除成功!');
  246. this.setState({
  247. loading: false,
  248. });
  249. } else {
  250. message.warning(data.error[0].message);
  251. };
  252. this.loadData(this.state.page)
  253. }.bind(this));
  254. },
  255. addClick() {
  256. this.state.RowData = {};
  257. this.setState({
  258. visible: true,
  259. addFirst:0,
  260. name:'',
  261. superId:'',
  262. module:"1"
  263. });
  264. },
  265. //新增保存
  266. addhandleSubmit(e){
  267. e.preventDefault();
  268. this.setState({
  269. loading:true
  270. })
  271. $.ajax({
  272. method: "post",
  273. dataType: "json",
  274. crossDomain: false,
  275. url: globalConfig.context + "/api/admin/jtBusiness/category/apply",
  276. data: {
  277. name:this.state.name,
  278. superId:this.state.superId,
  279. layer:this.state.addFirst?((this.state.recrdAdd.layer)+1):'1',
  280. module:this.state.module
  281. }
  282. }).done(function (data) {
  283. if (!data.error.length) {
  284. message.success('新增成功!');
  285. this.setState({
  286. loading: false,
  287. visible:false
  288. });
  289. } else {
  290. message.warning(data.error[0].message);
  291. };
  292. this.loadData(this.state.page)
  293. }.bind(this));
  294. },
  295. editClick() {
  296. this.state.RowData = {};
  297. this.setState({
  298. editvisible: true
  299. });
  300. },
  301. detailes(recard){
  302. this.setState({
  303. loading: true,
  304. });
  305. $.ajax({
  306. method: "get",
  307. dataType: "json",
  308. crossDomain: false,
  309. url: globalConfig.context + '/api/admin/jtBusiness/category/detail',
  310. data: {
  311. id:recard.id
  312. },
  313. success: function (data) {
  314. if (!data.data) {
  315. if (data.error && data.error.length) {
  316. message.warning(data.error[0].message);
  317. };
  318. } else {
  319. let thisdata=data.data;
  320. this.setState({
  321. id:thisdata.id,//品类id
  322. name:thisdata.name,//品类名称
  323. createTime:thisdata.createTime?(new Date(thisdata.createTime)).toLocaleString():'',
  324. superId:thisdata.superId,//父类id
  325. pictureUrl: thisdata.imgUrl ? splitUrl(thisdata.imgUrl, ',', globalConfig.avatarHost + '/upload') : [],
  326. })
  327. };
  328. }.bind(this),
  329. }).always(function () {
  330. this.setState({
  331. loading: false
  332. });
  333. }.bind(this));
  334. },
  335. handleCancel() {
  336. this.setState({ visible: false })
  337. },
  338. edithandleCancel() {
  339. this.setState({ editvisible: false })
  340. },
  341. search() {
  342. this.loadData();
  343. },
  344. reset() {
  345. this.state.nameSearch = '';//品类名称清零
  346. this.state.layerSearch = undefined;//品类层级清零
  347. this.loadData();
  348. },
  349. searchSwitch() {
  350. this.setState({
  351. searchMore: !this.state.searchMore
  352. });
  353. },
  354. getPictureUrl(e) {
  355. this.setState({ pictureUrl: e });
  356. },
  357. tableRowClick(record, index) {
  358. this.setState({
  359. editvisible: true,
  360. visible:false,
  361. theData:record
  362. });
  363. this.detailes(record)
  364. },
  365. render() {
  366. const FormItem = Form.Item
  367. const rowSelection = {
  368. selectedRowKeys: this.state.selectedRowKeys,
  369. onChange: (selectedRowKeys, selectedRows) => {
  370. this.setState({
  371. selectedRows: selectedRows.slice(-1),
  372. selectedRowKeys: selectedRowKeys.slice(-1)
  373. });
  374. }
  375. };
  376. const hasSelected = this.state.selectedRowKeys.length > 0;
  377. const theData =this.state.theData ||{};
  378. const recrdAdd = this.state.recrdAdd ||{};
  379. return (
  380. <div className="user-content" >
  381. <div className="content-title">
  382. <div className="content-title">
  383. <span>项目业务管理</span>
  384. </div>
  385. <div className="user-search">
  386. <Input placeholder="业务品类名称" style={{width:'150px',marginRight:'10px',marginBottom:'10px'}}
  387. value={this.state.nameSearch}
  388. onChange={(e) => { this.setState({ nameSearch: e.target.value }); }} />
  389. <Select placeholder="品类层级"
  390. style={{ width:'200px',marginRight:'10px' }}
  391. value={this.state.layerSearch} onChange={(e)=>{this.setState({layerSearch:e})}}>
  392. <Select.Option value="1">一级</Select.Option>
  393. <Select.Option value="2">二级</Select.Option>
  394. </Select>
  395. <Button type="primary" onClick={this.search} style={{marginRight:'10px'}}>搜索</Button>
  396. <Button onClick={this.reset} style={{marginRight:'10px'}}>重置</Button>
  397. <Popconfirm title="是否删除?" onConfirm={this.delectRow} okText="是" cancelText="否">
  398. <Button style={{marginRight:'10px' ,marginLeft:'10px'}} type="danger"
  399. disabled={!hasSelected}
  400. >删除<Icon type="minus" />
  401. </Button>
  402. </Popconfirm>
  403. <Popconfirm title="是否停用?" onConfirm={this.blockRow} okText="是" cancelText="否">
  404. <Button style={{ background: "#ea0862", border: "none", color: "#fff",marginRight:'10px' ,marginLeft:'10px',display:'none'}}
  405. disabled={!hasSelected}
  406. >停用<Icon type="minus" />
  407. </Button>
  408. </Popconfirm>
  409. <Button type="primary" className="addButton" onClick={this.addClick} style={{float:'right',marginRight:'200px'}}>新增品类<Icon type="plus" /></Button>
  410. </div>
  411. <div className="patent-table">
  412. <Spin spinning={this.state.loading}>
  413. <Table columns={this.state.columns}
  414. dataSource={this.state.dataSource}
  415. rowSelection={rowSelection}
  416. pagination={this.state.pagination}
  417. onRowClick={this.tableRowClick} />
  418. </Spin>
  419. </div>
  420. <div className="patent-desc">
  421. <Modal maskClosable={false} visible={this.state.visible}
  422. onOk={this.checkPatentProcess} onCancel={this.handleCancel}
  423. width='420px'
  424. title='新增品类'
  425. footer=''
  426. className="admin-desc-content">
  427. <Form layout="horizontal" onSubmit={(e)=>{this.addhandleSubmit(e,{})}} id="demand-form">
  428. <Spin spinning={this.state.loading}>
  429. <div className="clearfix">
  430. <FormItem
  431. labelCol={{ span: 7 }}
  432. wrapperCol={{ span: 12 }}
  433. label="品类名称" >
  434. <Input placeholder="品类名称" value={this.state.name} style={{width:'94%'}}
  435. onChange={(e)=>{this.setState({name:e.target.value})}} required="required"/>
  436. <span className="mandatory" style={{color:'red',marginLeft:'5px'}}>*</span>
  437. </FormItem>
  438. </div>
  439. <div className="clearfix">
  440. <FormItem
  441. labelCol={{ span: 7 }}
  442. wrapperCol={{ span: 12 }}
  443. label="所属模块" >
  444. {!this.state.addFirst? <Select value ={this.state.module} onChange={(e)=>{this.setState({module:e})}}>
  445. {typeModule.map(item=>{
  446. return <Select.Option key={item.value} value={item.value}>{item.key}</Select.Option>
  447. })}
  448. </Select>:<span>{getTypeModule(recrdAdd.module)}</span>}
  449. </FormItem>
  450. </div>
  451. <div className="clearfix">
  452. <FormItem
  453. labelCol={{ span: 7 }}
  454. wrapperCol={{ span: 12 }}
  455. label="上级品类"
  456. >
  457. <span>{this.state.addFirst?recrdAdd.name:'超级品类'}</span>
  458. </FormItem>
  459. </div>
  460. <FormItem wrapperCol={{ span: 12, offset: 7 }}>
  461. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  462. <Button className="set-submit" type="ghost" onClick={this.handleCancel} style={{marginLeft:'15px'}}>取消</Button>
  463. </FormItem>
  464. </Spin>
  465. </Form >
  466. </Modal>
  467. </div>
  468. <div className="patent-desc">
  469. <Modal maskClosable={false} visible={this.state.editvisible}
  470. onOk={this.checkPatentProcess} onCancel={this.edithandleCancel}
  471. width='600px'
  472. title='编辑品类'
  473. footer=''
  474. className="admin-desc-content">
  475. <Form layout='horizontal' onSubmit={this.edithandleSubmit} id="demand-form">
  476. <Spin spinning={this.state.loading}>
  477. <div className="clearfix">
  478. <FormItem
  479. labelCol={{ span: 7 }}
  480. wrapperCol={{ span: 12 }}
  481. label="品类名称" >
  482. <Input placeholder="组织名称" value={this.state.name}
  483. onChange={(e)=>{this.setState({name:e.target.value})}}/>
  484. </FormItem>
  485. </div>
  486. <div className="clearfix">
  487. <FormItem
  488. labelCol={{ span: 7 }}
  489. wrapperCol={{ span: 12 }}
  490. label="上级品类"
  491. >
  492. <span>{theData.superName?theData.superName:'超级品类'}</span>
  493. </FormItem>
  494. </div>
  495. <div className="clearfix">
  496. <FormItem
  497. labelCol={{ span: 7 }}
  498. wrapperCol={{ span: 12 }}
  499. label="业务品类图标" >
  500. <PicturesWall
  501. fileList={this.getPictureUrl}
  502. pictureUrl={this.state.pictureUrl}
  503. visible={this.props.visible}
  504. />
  505. </FormItem>
  506. </div>
  507. <div className="clearfix">
  508. <FormItem
  509. labelCol={{ span: 7 }}
  510. wrapperCol={{ span: 12 }}
  511. label="品类序号"
  512. >
  513. <span>{theData.sort}</span>
  514. </FormItem>
  515. </div>
  516. <div className="clearfix">
  517. <FormItem
  518. labelCol={{ span: 7 }}
  519. wrapperCol={{ span: 12 }}
  520. label="品类层级"
  521. >
  522. <span>{theData.layerName}</span>
  523. </FormItem>
  524. </div>
  525. <FormItem
  526. labelCol={{ span: 7 }}
  527. wrapperCol={{ span: 12 }}
  528. label="所属模块" >
  529. <span>{getTypeModule(theData.module)}</span>
  530. </FormItem>
  531. <div className="clearfix">
  532. <FormItem
  533. labelCol={{ span: 7 }}
  534. wrapperCol={{ span: 12 }}
  535. label="品类编号"
  536. >
  537. <span>{theData.number}</span>
  538. </FormItem>
  539. </div>
  540. <div className="clearfix" >
  541. <FormItem
  542. labelCol={{ span: 7 }}
  543. wrapperCol={{ span: 12 }}
  544. label="创建人"
  545. >
  546. <span>超级管理员</span>
  547. </FormItem>
  548. </div>
  549. <div className="clearfix">
  550. <FormItem
  551. labelCol={{ span: 7 }}
  552. wrapperCol={{ span: 12 }}
  553. label="创建时间"
  554. >
  555. <span>{this.state.createTime}</span>
  556. </FormItem>
  557. </div>
  558. <FormItem wrapperCol={{ span: 12, offset: 7 }}>
  559. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  560. <Button className="set-submit" type="ghost" onClick={this.edithandleCancel} style={{marginLeft:'100px'}}>取消</Button>
  561. </FormItem>
  562. </Spin>
  563. </Form >
  564. </Modal>
  565. </div>
  566. </div>
  567. </div>
  568. );
  569. }
  570. }));
  571. export default BusinessCategory;