AccountsOverdue.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. import React, { Component } from 'react';
  2. import moment from 'moment';
  3. import { connect } from 'dva';
  4. import { Card, Badge } from 'antd';
  5. import { StandardTableList } from '../../../components/AXList';
  6. import { addRowKey } from '../../../utils/utils';
  7. import styles from './AccountsTerminals.less';
  8. @connect(({ loading, accounts }) => ({
  9. accounts,
  10. loading: loading.models.accounts,
  11. }))
  12. export default class OverdueAccountsPage extends Component {
  13. constructor(props) {
  14. super(props);
  15. const { state } = props.location;
  16. this.state = {
  17. UIParams: (state || {}).UIParams, // 组件的状态参数
  18. Queryers: (state || {}).Queryers, // 查询的条件参数
  19. };
  20. }
  21. componentWillMount() {
  22. this.props.dispatch({
  23. type: 'accounts/fetchTerminalsList',
  24. payload: {
  25. fastExpired: 1,
  26. ...this.state.Queryers,
  27. }
  28. })
  29. }
  30. // 下载
  31. handleDownloadOperation = () => {
  32. this.props.dispatch({
  33. type: 'accounts/fetchTerminalsExcel',
  34. payload: {
  35. fastExpired: 1
  36. }
  37. })
  38. };
  39. handleFilterOperation = (params, states) => {
  40. this.setState({
  41. UIParams: states,
  42. Queryers: params,
  43. });
  44. this.props.dispatch({
  45. type: 'accounts/fetchTerminalsList',
  46. payload: {
  47. fastExpired: 1,
  48. ...params,
  49. },
  50. });
  51. };
  52. render() {
  53. const { loading,accounts } = this.props;
  54. const { list, totalSize, pageSize, pageNo } = accounts;
  55. const basicSearch = {
  56. keys: [{
  57. name: '终端编号',
  58. field: 'code',
  59. }],
  60. };
  61. const pagination = {
  62. pageNo,
  63. pageSize,
  64. totalSize,
  65. };
  66. const columns = [{
  67. title: '终端编号',
  68. key: 1,
  69. dataIndex: 'ucode',
  70. width: '15%',
  71. }, {
  72. title: '课程包编号',
  73. key: 2,
  74. dataIndex: 'pcode',
  75. width: '10%',
  76. }, {
  77. title: '课程包名称',
  78. key: 3,
  79. dataIndex: 'pname',
  80. width: '15%',
  81. }, {
  82. title: '权限有效期',
  83. key: 4,
  84. render: (_, record) => {
  85. const { startTimeStr, endTimeStr } = record;
  86. return (
  87. <div className={styles.authDesc}>
  88. <p><span>起始时间:&nbsp;&nbsp;</span>{`${startTimeStr}`}</p>
  89. <p><span>到期时间:&nbsp;&nbsp;</span>{`${endTimeStr}`}</p>
  90. </div>
  91. );
  92. },
  93. dataIndex: 'cityName',
  94. width: '15%',
  95. align: 'center',
  96. }, {
  97. title: '权限有效时长',
  98. key: 5,
  99. dataIndex: 'endTime',
  100. render: (text) => {
  101. const day = moment(text).diff(moment(), 'days');
  102. if (day < 0) {
  103. return <Badge status="error" text="已到期" />;
  104. }
  105. return <span><span style={{ color: '#52c41a', fontWeight: 'bold' }}>{day}</span>天到期</span>;
  106. },
  107. width: '10%',
  108. }, {
  109. title: '校区名称',
  110. key: 6,
  111. dataIndex: 'campusName',
  112. width: '16%',
  113. }, {
  114. title: '联系电话',
  115. key: 7,
  116. dataIndex: 'campusContactWay',
  117. width: '12%',
  118. }, {
  119. title: '联系人',
  120. key: 8,
  121. dataIndex: 'campusContactName',
  122. width: '6%',
  123. }];
  124. return (
  125. <Card>
  126. <StandardTableList
  127. columns={columns}
  128. loading={loading}
  129. dataSource={addRowKey(list)}
  130. header={{
  131. basicSearch,
  132. onFilterClick: this.handleFilterOperation,
  133. onDownload: this.handleDownloadOperation,
  134. }}
  135. footer={{
  136. pagination,
  137. }}
  138. keepUIState={{ ...this.state.UIParams }}
  139. showStatusSelect={false}
  140. />
  141. </Card>
  142. );
  143. }
  144. }