PackageItem.js 1006 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import React, { Component } from 'react';
  2. import { Card, Table } from 'antd';
  3. import { renderProductType } from '../../utils/utils';
  4. import styles from './CourseItem.less';
  5. class PackageItem extends Component {
  6. render() {
  7. const { products } = this.props;
  8. const packageColumns = [{
  9. title: '产品编号',
  10. dataIndex: 'code',
  11. key: 1,
  12. width: '40%',
  13. }, {
  14. title: '产品名称',
  15. dataIndex: 'name',
  16. key: 2,
  17. width: '40%',
  18. }, {
  19. title: '产品类型',
  20. dataIndex: 'type',
  21. key: 3,
  22. width: '20%',
  23. render: text => renderProductType(text),
  24. }];
  25. return (
  26. <Card title="套餐包内容" style={{ height: 450, marginBottom: 16 }}>
  27. <Table
  28. pagination={false}
  29. rowKey={record => record.id}
  30. dataSource={products}
  31. columns={packageColumns}
  32. scroll={{ y: 300 }}
  33. className={styles.dataTable}
  34. />
  35. </Card>
  36. );
  37. }
  38. }
  39. export default PackageItem;