AccountsTotalList.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. import React, { Component } from 'react';
  2. import { connect } from 'dva';
  3. import { Card } from 'antd';
  4. import { StandardTableList } from '../../../components/AXList';
  5. import { addRowKey, renderStatus } from '../../../utils/utils';
  6. @connect(({ loading, accounts }) => ({
  7. accounts,
  8. loading: loading.models.accounts,
  9. }))
  10. export default class TotalListAccountsPage extends Component {
  11. constructor(props) {
  12. super(props);
  13. const { state } = props.location;
  14. this.state = {
  15. UIParams: (state || {}).UIParams, // 组件的状态参数
  16. Queryers: (state || {}).Queryers, // 查询的条件参数
  17. };
  18. }
  19. componentWillMount() {
  20. this.props.dispatch({
  21. type: 'accounts/fetchCampusAmount',
  22. payload: {}
  23. });
  24. this.props.dispatch({
  25. type: 'accounts/fetchTerminalsAmount',
  26. payload: {}
  27. });
  28. this.props.dispatch({
  29. type: 'accounts/fetchTotalList',
  30. payload: { ...this.state.Queryers }
  31. });
  32. }
  33. handleFilterOperation = (params, states) => {
  34. this.setState({
  35. UIParams: states,
  36. Queryers: params,
  37. });
  38. this.props.dispatch({
  39. type: 'accounts/fetchTotalList',
  40. payload: {
  41. ...params,
  42. },
  43. });
  44. };
  45. render() {
  46. const { loading,accounts } = this.props;
  47. const { list, totalSize, pageSize, pageNo, campusAmount, terminalsAmount} = accounts;
  48. const basicSearch = {
  49. keys: [{
  50. name: '终端编号',
  51. field: 'code',
  52. }],
  53. };
  54. const pagination = {
  55. pageNo,
  56. pageSize,
  57. totalSize,
  58. };
  59. const columns = [{
  60. title: '校区类型',
  61. key: 1,
  62. dataIndex: 'merchantName',
  63. width: '15%',
  64. }, {
  65. title: '校区名称',
  66. key: 2,
  67. dataIndex: 'campusName',
  68. width: '20%',
  69. }, {
  70. title: '终端编号',
  71. key: 3,
  72. dataIndex: 'code',
  73. width: '20%',
  74. }, {
  75. title: '终端名称',
  76. key: 4,
  77. dataIndex: 'name',
  78. width: '30%',
  79. }, {
  80. title: '课程状态',
  81. key: 5,
  82. dataIndex: 'status',
  83. render: text => renderStatus(text),
  84. width: '15%',
  85. }];
  86. return (
  87. <Card>
  88. <StandardTableList
  89. columns={columns}
  90. loading={loading}
  91. dataSource={addRowKey(list)}
  92. header={{
  93. basicSearch,
  94. campusAmount,
  95. terminalsAmount,
  96. onFilterClick: this.handleFilterOperation,
  97. }}
  98. footer={{
  99. pagination,
  100. }}
  101. keepUIState={{ ...this.state.UIParams }}
  102. showStatusSelect={false}
  103. />
  104. </Card>
  105. );
  106. }
  107. }