CourseItem.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. import React, { Component } from 'react';
  2. import { Row, Col, Card, Table, Radio } from 'antd';
  3. import { genAbsolutePicUrl } from '../../utils/utils';
  4. import styles from './CourseItem.less';
  5. function CourseTpl({ title, subTitle, coverUrl }) {
  6. return (
  7. <div className={styles.content}>
  8. <div className={styles.courseWrapper}>
  9. <img src={genAbsolutePicUrl(coverUrl)} alt="" />
  10. <div className={styles.desc}>
  11. <div className={styles.title}>{title}</div>
  12. <div className={styles.subTitle}>{subTitle}</div>
  13. </div>
  14. </div>
  15. </div>
  16. );
  17. }
  18. class CourseItem extends Component {
  19. state = {
  20. openKey: 'lesson',
  21. };
  22. handleRadioChange = (e) => {
  23. this.setState({ openKey: e.target.value });
  24. };
  25. render() {
  26. const { subItemList, supportList } = this.props;
  27. const lessonColumns = [{
  28. title: '课编号',
  29. dataIndex: 'code',
  30. key: 1,
  31. width: '50%',
  32. }, {
  33. title: '课名称',
  34. dataIndex: 'title',
  35. key: 2,
  36. width: '50%',
  37. }];
  38. const supportColumns = [{
  39. title: '配套编号',
  40. dataIndex: 'code',
  41. key: 1,
  42. width: '50%',
  43. }, {
  44. title: '配套名称',
  45. dataIndex: 'name',
  46. key: 2,
  47. width: '50%',
  48. }];
  49. return (
  50. <Row gutter={16} style={{ marginBottom: 16 }}>
  51. <Col span={9}>
  52. <Card title="课程信息" style={{ height: 540 }} className={styles.coverCard}>
  53. <CourseTpl {...this.props} />
  54. </Card>
  55. </Col>
  56. <Col span={15}>
  57. <Card
  58. title={
  59. <Radio.Group
  60. value={this.state.openKey}
  61. onChange={this.handleRadioChange}
  62. >
  63. <Radio.Button value="lesson">课列表</Radio.Button>
  64. <Radio.Button value="support">周边配套</Radio.Button>
  65. </Radio.Group>
  66. }
  67. style={{ height: 540 }}
  68. >{this.state.openKey === 'lesson' ? (
  69. <Table
  70. pagination={false}
  71. rowKey={record => record.id}
  72. dataSource={subItemList}
  73. columns={lessonColumns}
  74. scroll={{ y: 400 }}
  75. className={styles.dataTable}
  76. />
  77. ) : (
  78. <Table
  79. pagination={false}
  80. rowKey={record => record.id}
  81. dataSource={supportList}
  82. columns={supportColumns}
  83. scroll={{ y: 400 }}
  84. className={styles.dataTable}
  85. />
  86. )}
  87. </Card>
  88. </Col>
  89. </Row>
  90. );
  91. }
  92. }
  93. export default CourseItem;