table.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. import React, { PureComponent } from 'react';
  2. import moment from 'moment';
  3. import queryString from 'query-string';
  4. import { Divider, Modal, Table, Badge } from 'antd';
  5. import { statuses, Codes } from '../../../utils/config';
  6. export default class TableList extends PureComponent {
  7. handleDeleteItem = (record) => {
  8. const { onDeleteItem } = this.props;
  9. Modal.confirm({
  10. title: `您确定要删除该课件?`,
  11. okText: '确定',
  12. cancelText: '取消',
  13. onOk: () => onDeleteItem({id: record.id}),
  14. });
  15. }
  16. render() {
  17. const { curStatus, onDeleteItem, onEditItem, location, pagination, ...tableProps } = this.props;
  18. const columns = [{
  19. title: '课件编号',
  20. dataIndex: 'code',
  21. key: 'code',
  22. width: '28%',
  23. },{
  24. title: '课件名称',
  25. dataIndex: 'name',
  26. key: 'name',
  27. width: '28%',
  28. },{
  29. title: '状态',
  30. dataIndex: 'status',
  31. key: 'status',
  32. render: (text, record) => {
  33. const statusMap = {[Codes.CODE_NORMAL]: 'success', [Codes.CODE_DELETE]: 'error'};
  34. return (<Badge status={statusMap[record.status]} text={statuses[record.status]} />);
  35. },
  36. filters: Object.keys(statuses).map(key => ({ text: statuses[key], value: key })),
  37. filterMultiple: false,
  38. filteredValue: [curStatus],
  39. width: '12%',
  40. },{
  41. title: '修改时间',
  42. dataIndex: 'gmtModified',
  43. key: 'gmtModified',
  44. render: (text, record) => (
  45. <div>{moment(text).format('YYYY-MM-DD HH:mm:ss')}</div>
  46. ),
  47. width: '20%',
  48. },{
  49. title: '操作',
  50. dataIndex: 'operation',
  51. key: 'operation',
  52. render: (text, record) => (
  53. <div>
  54. <a onClick={() => onEditItem(record)}>编辑</a>
  55. <Divider type="vertical" />
  56. <a onClick={() => this.handleDeleteItem(record)}>删除</a>
  57. </div>
  58. ),
  59. width: '12%',
  60. }];
  61. columns.map(item => {
  62. item.dataIndex == 'status' && !curStatus ? delete item.filteredValue : null;
  63. });
  64. tableProps.pagination = !!pagination && { ...pagination, showSizeChanger: true, showQuickJumper: true, showTotal: total => `共 ${total} 条`};
  65. return (
  66. <Table
  67. simple
  68. bordered
  69. { ...tableProps }
  70. columns={columns}
  71. rowKey={record => record.id}
  72. />
  73. );
  74. }
  75. }