index.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. import React, { Component } from 'react';
  2. import { connect } from 'dva';
  3. import { Divider, Table, Card, Form, Row, Col, Input, Select, DatePicker, Icon } from 'antd';
  4. import moment from 'moment';
  5. import { productType } from '../../utils/config';
  6. import styles from './index.less';
  7. @Form.create()
  8. @connect(state => ({ snapshot: state.snapshot }))
  9. export default class SoldProductList extends Component {
  10. render() {
  11. // 模拟数据
  12. // const mockData = [];
  13. // for (let i = 1; i < 2000; i++) {
  14. // mockData.push({
  15. // id: i,
  16. // productCode: 'C-001',
  17. // productName: '小学语文二年级上册',
  18. // productType: 'COURSE',
  19. // userCode: '1500024398001',
  20. // userName: '教室六',
  21. // campusCode: '1500024398',
  22. // campusName: '湖南省-长沙市天水区-育新小学',
  23. // merchantName: '贝尔安亲',
  24. // cpPrice: 1000.85,
  25. // merchantPrice: 20000.890,
  26. // terminalPrice: 21000,
  27. // chargeUnit: '年',
  28. // quantity: 1,
  29. // gmtCreated: 1590000134,
  30. // });
  31. // }
  32. const { snapshot } = this.props;
  33. const { list, listLoading } = snapshot;
  34. // 表格-列对象
  35. const columns = [{
  36. title: '产品编号',
  37. dataIndex: 'productCode',
  38. key: 1, //设置了dataIndex可忽略这个属性
  39. },{
  40. title: '产品名称',
  41. dataIndex: 'productName',
  42. key: 2,
  43. },{
  44. title: '产品类型',
  45. dataIndex: 'productType',
  46. key: 3,
  47. render: (text, record) => productType[text],
  48. },{
  49. title: '终端编号',
  50. dataIndex: 'userCode',
  51. key: 4,
  52. },{
  53. title: '终端名称',
  54. dataIndex: 'userName',
  55. key: 5,
  56. },{
  57. title: '校区编号',
  58. dataIndex: 'campusCode',
  59. key: 6,
  60. },{
  61. title: '校区名称',
  62. dataIndex: 'campusName',
  63. key: 7,
  64. },{
  65. title: '渠道名称',
  66. dataIndex: 'merchantName',
  67. key: 8,
  68. },{
  69. title: '供应商价格(¥)',
  70. dataIndex: 'cpPrice',
  71. key: 9,
  72. },{
  73. title: '渠道价格(¥)',
  74. dataIndex: 'merchantPrice',
  75. key: 10,
  76. },{
  77. title: '终端价格(¥)',
  78. dataIndex: 'terminalPrice',
  79. key: 11,
  80. },{
  81. title: '数量',
  82. dataIndex: 'quantity',
  83. key: 12,
  84. },{
  85. title: '计价单位',
  86. dataIndex: 'chargeUnit',
  87. key: 13,
  88. },{
  89. title: '创建时间',
  90. dataIndex: 'gmtCreated',
  91. key: 14,
  92. render: (text, record) => moment(text).format('YYYY-MM-DD HH:mm:ss'),
  93. }];
  94. const { getFieldDecorator } = this.props.form;
  95. return (
  96. <Card>
  97. <div className={styles.tableList}>
  98. <span>筛选<Icon type="filter" /></span>
  99. <div>
  100. <Table
  101. loading={listLoading}
  102. bordered
  103. rowKey={(record) => record.id}
  104. columns={columns}
  105. dataSource={list}
  106. scroll={{ x: 1800 }}
  107. />
  108. </div>
  109. </div>
  110. </Card>
  111. );
  112. }
  113. }