index.js 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. import React, { Component } from 'react';
  2. import { connect } from 'dva';
  3. import {
  4. Row,
  5. Col,
  6. Table,
  7. Form,
  8. Card,
  9. Input,
  10. Button,
  11. } from 'antd';
  12. import moment from 'moment';
  13. import PageHeaderLayout from '../../layouts/PageHeaderLayout';
  14. import { productType, pageSize } from '../../utils/config';
  15. import styles from './index.less';
  16. @Form.create()
  17. @connect(state => ({ snapshot: state.snapshot }))
  18. export default class SoldProductList extends Component {
  19. getFormValue = () => {
  20. const { form } = this.props;
  21. const { getFieldsValue } = form;
  22. const filters = getFieldsValue();
  23. if (filters && filters.time) {
  24. filters.timeBegin = filters.time[0].format('X');
  25. filters.timeEnd = filters.time[1].format('X');
  26. delete filters.time;
  27. }
  28. if (filters.orderStatus === 'all') {
  29. delete filters.orderStatus;
  30. }
  31. return filters;
  32. }
  33. handleFilterSubmit = (e) => {
  34. e.preventDefault();
  35. const filters = this.getFormValue();
  36. this.props.dispatch({ type: 'snapshot/query', payload: { ...filters, pageSize } });
  37. }
  38. handleFilterReset = () => {
  39. this.props.form.resetFields();
  40. this.props.dispatch({ type: 'snapshot/query', payload: { pageSize } });
  41. }
  42. handleTableChange = (pagination) => {
  43. const filters = {
  44. ...this.getFormValue(),
  45. pageNo: pagination.current,
  46. pageSize: pagination.pageSize
  47. };
  48. this.props.dispatch({ type: 'snapshot/query', payload: { ...filters, pageSize } });
  49. }
  50. render() {
  51. const { snapshot, form } = this.props;
  52. const { getFieldDecorator } = form;
  53. const { list, listLoading, pagination } = snapshot;
  54. const columns = [{
  55. title: '产品编号',
  56. dataIndex: 'productCode',
  57. key: 1,
  58. }, {
  59. title: '产品名称',
  60. dataIndex: 'productName',
  61. key: 2,
  62. }, {
  63. title: '类型',
  64. dataIndex: 'productType',
  65. key: 3,
  66. render: text => productType[text],
  67. }, {
  68. title: '终端编号',
  69. dataIndex: 'userCode',
  70. key: 4,
  71. }, {
  72. title: '终端名称',
  73. dataIndex: 'userName',
  74. key: 5,
  75. }, {
  76. title: '校区编号',
  77. dataIndex: 'campusCode',
  78. key: 6,
  79. }, {
  80. title: '校区名称',
  81. dataIndex: 'campusName',
  82. key: 7,
  83. }, {
  84. title: '渠道价格(¥)',
  85. dataIndex: 'merchantPrice',
  86. key: 8,
  87. }, {
  88. title: '终端价格(¥)',
  89. dataIndex: 'terminalPrice',
  90. key: 9,
  91. }, {
  92. title: '数量',
  93. dataIndex: 'quantity',
  94. key: 10,
  95. }, {
  96. title: '单位',
  97. dataIndex: 'chargeUnit',
  98. key: 11,
  99. }, {
  100. title: '创建时间',
  101. dataIndex: 'gmtCreated',
  102. key: 12,
  103. render: text => moment(text).format('YYYY-MM-DD HH:mm:ss'),
  104. }];
  105. const newPagination = !!pagination && { ...pagination, showSizeChanger: true, showQuickJumper: true, showTotal: total => `共 ${total} 条` };
  106. return (
  107. <PageHeaderLayout>
  108. <Card>
  109. <Form layout="vertical" className={styles.tableSearchForm} onSubmit={this.handleFilterSubmit}>
  110. <Row gutter={24}>
  111. <Col span={6}>
  112. <Form.Item label="校区名称">
  113. {getFieldDecorator('campusName', {
  114. })(<Input placeholder="请输入" />)}
  115. </Form.Item>
  116. </Col>
  117. <Col span={6}>
  118. <Form.Item label="校区编号">
  119. {getFieldDecorator('campusCode', {
  120. })(<Input placeholder="请输入" />)}
  121. </Form.Item>
  122. </Col>
  123. <Col span={6}>
  124. <Form.Item label="产品编号">
  125. {getFieldDecorator('productCode', {
  126. })(<Input placeholder="请输入" />)}
  127. </Form.Item>
  128. </Col>
  129. <Col span={6}>
  130. <Form.Item label="终端编号">
  131. {getFieldDecorator('userCode', {
  132. })(<Input placeholder="请输入" />)}
  133. </Form.Item>
  134. </Col>
  135. </Row>
  136. <Row>
  137. <Col span={24} style={{ textAlign: 'left' }}>
  138. <Button type="primary" htmlType="submit">搜索</Button>
  139. <Button onClick={this.handleFilterReset} style={{ marginLeft: 8 }}>重置</Button>
  140. </Col>
  141. </Row>
  142. </Form>
  143. <Table
  144. bordered
  145. loading={listLoading}
  146. onChange={this.handleTableChange}
  147. rowKey={record => record.id}
  148. columns={columns}
  149. dataSource={list}
  150. pagination={newPagination}
  151. scroll={{ x: 1800 }}
  152. />
  153. </Card>
  154. </PageHeaderLayout>
  155. );
  156. }
  157. }