table.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. import React, { Component } from 'react';
  2. import moment from 'moment';
  3. import { Divider, Avatar, Modal, Badge, Table } from 'antd';
  4. import { Codes, statuses, domains } from '../../utils/config';
  5. export default class CMSUserTableList extends Component {
  6. handleOperateItem = (record) => {
  7. const { onDeleteItem, onRecoverItem } = this.props;
  8. Modal.confirm({
  9. title: `您确定要${record.status === Codes.CODE_NORMAL ? '禁用' : '解禁'}该账户?`,
  10. onOk() {
  11. if (record.status === Codes.CODE_NORMAL) {
  12. onDeleteItem({ id: record.id });
  13. } else {
  14. onRecoverItem({ id: record.id, status: Codes.CODE_NORMAL });
  15. }
  16. },
  17. });
  18. }
  19. render() {
  20. const {
  21. onDeleteItem,
  22. onEditItem,
  23. onRecoverItem,
  24. location,
  25. curStatus,
  26. pagination,
  27. ...tableProps
  28. } = this.props;
  29. const colorList = ['#f56a00', '#7265e6', '#ffbf00', '#00a2ae'];
  30. const columns = [{
  31. title: '头像',
  32. dataIndex: 'avatar',
  33. key: 'avatar',
  34. render: (text, record) => {
  35. return (
  36. <Avatar
  37. src={text}
  38. style={{ backgroundColor: colorList[Math.floor(Math.random() * (colorList.length - 1))], verticalAlign: 'middle' }}
  39. >
  40. {(record.nickName || record.name)[0]}
  41. </Avatar>
  42. );
  43. },
  44. width: '6%',
  45. }, {
  46. title: '用户名称',
  47. dataIndex: 'name',
  48. key: 'name',
  49. width: '14%',
  50. }, {
  51. title: '用户昵称',
  52. dataIndex: 'nickName',
  53. key: 'nickName',
  54. width: '13%',
  55. }, {
  56. title: '厂商名称',
  57. dataIndex: 'merchantId',
  58. key: 'merchantId',
  59. render: (text, record) => record.merchantName,
  60. width: '13%',
  61. }, {
  62. title: '厂商类型',
  63. dataIndex: 'domain',
  64. key: 'domain',
  65. render: (text, record) => domains[record.domain],
  66. width: '12%',
  67. }, {
  68. title: '状态',
  69. dataIndex: 'status',
  70. key: 'status',
  71. render: (text, record) => {
  72. const statusMap = { [Codes.CODE_NORMAL]: 'success', [Codes.CODE_DELETE]: 'error' };
  73. return (<Badge status={statusMap[record.status]} text={statuses[record.status]} />);
  74. },
  75. filters: Object.keys(statuses).map(key => ({ text: statuses[key], value: key })),
  76. filterMultiple: false,
  77. filteredValue: curStatus,
  78. width: '10%',
  79. }, {
  80. title: '修改时间',
  81. dataIndex: 'gmtModified',
  82. key: 'gmtModified',
  83. render: text => (
  84. <div>{moment(text).format('YYYY-MM-DD HH:mm:ss')}</div>
  85. ),
  86. width: '19%',
  87. }, {
  88. title: '操作',
  89. dataIndex: 'operation',
  90. key: 'operation',
  91. render: (text, record) => (
  92. <div>
  93. <a onClick={() => onEditItem(record)}>编辑</a>
  94. <Divider type="vertical" />
  95. <a onClick={() => this.handleOperateItem(record)}>{record.status === Codes.CODE_NORMAL ? '禁用' : '解禁'}</a>
  96. </div>
  97. ),
  98. width: '13%',
  99. }];
  100. // 配置分页
  101. tableProps.pagination = !!pagination && { ...pagination, showSizeChanger: true, showQuickJumper: true, showTotal: total => `共 ${total} 条` };
  102. return (
  103. <Table
  104. simple
  105. bordered
  106. {...tableProps}
  107. columns={columns}
  108. rowKey={record => record.id}
  109. />
  110. );
  111. }
  112. }