|
@@ -2,14 +2,12 @@ import React, { Component } from 'react';
|
|
|
import pathToRegexp from 'path-to-regexp';
|
|
|
import { connect } from 'dva';
|
|
|
import { routerRedux } from 'dva/router';
|
|
|
-import { Form, Modal, Card, Button, Input, Radio, Switch } from 'antd';
|
|
|
+import { Form, Modal, Card, Icon, Button, Input, Radio, Switch } from 'antd';
|
|
|
import AXDragSortTable from '../../../components/AXDragSortTable';
|
|
|
import Selector from '../../../components/AXTableSelector/Selector';
|
|
|
-import AXVideoPlayer from '../../../components/AXVideoPlayer';
|
|
|
import FooterToolbar from '../../../components/FooterToolbar';
|
|
|
import {
|
|
|
genAbsolutePicUrl,
|
|
|
- renderStatus,
|
|
|
statusToBool,
|
|
|
boolToStatus,
|
|
|
getResourceTypeName,
|
|
@@ -196,7 +194,7 @@ export default class CoursewareCreatePage extends Component {
|
|
|
dataIndex: 'path',
|
|
|
key: 1,
|
|
|
render: (text, record) => {
|
|
|
- const { type, url, format } = record;
|
|
|
+ const { type } = record;
|
|
|
if (type === Hotax.RESOURCE_IMAGE) {
|
|
|
return (
|
|
|
<div className={styles.picture}>
|
|
@@ -214,12 +212,7 @@ export default class CoursewareCreatePage extends Component {
|
|
|
} else {
|
|
|
return (
|
|
|
<div className={styles.video}>
|
|
|
- <AXVideoPlayer
|
|
|
- width="100%"
|
|
|
- height="100%"
|
|
|
- url={url}
|
|
|
- isM3U8={format === 'm3u8'}
|
|
|
- />
|
|
|
+ <Icon style={{ fontSize: 50 }} type="video-camera" />
|
|
|
</div>
|
|
|
);
|
|
|
}
|
|
@@ -227,33 +220,22 @@ export default class CoursewareCreatePage extends Component {
|
|
|
width: '10%',
|
|
|
align: 'center',
|
|
|
}, {
|
|
|
- title: '编号',
|
|
|
+ title: '资源编号',
|
|
|
dataIndex: 'code',
|
|
|
key: 2,
|
|
|
- width: '20%',
|
|
|
+ width: '25%',
|
|
|
}, {
|
|
|
- title: '名称',
|
|
|
+ title: '资源名称',
|
|
|
dataIndex: 'name',
|
|
|
key: 3,
|
|
|
- width: '20%',
|
|
|
+ width: '25%',
|
|
|
}, {
|
|
|
- title: '类型',
|
|
|
+ title: '资源类型',
|
|
|
dataIndex: 'type',
|
|
|
key: 4,
|
|
|
width: '10%',
|
|
|
render: text => getResourceTypeName(text),
|
|
|
align: 'center',
|
|
|
- }, {
|
|
|
- title: '格式',
|
|
|
- dataIndex: 'format',
|
|
|
- key: 5,
|
|
|
- align: 'center',
|
|
|
- }, {
|
|
|
- title: '状态',
|
|
|
- dataIndex: 'status',
|
|
|
- key: 6,
|
|
|
- render: text => renderStatus(text),
|
|
|
- align: 'center',
|
|
|
}];
|
|
|
|
|
|
const renderCardName = () => {
|
|
@@ -277,21 +259,14 @@ export default class CoursewareCreatePage extends Component {
|
|
|
</Radio.Group>
|
|
|
);
|
|
|
};
|
|
|
- // 根据选定的资源列表类型决定渲染样式
|
|
|
const renderResourceList = () => {
|
|
|
- if (!resourceList.length) {
|
|
|
- return (
|
|
|
- <h3 style={{ color: 'red' }}>你还未选择任何资源,请点击上方资源列表进行选择</h3>
|
|
|
- );
|
|
|
- } else {
|
|
|
- return (
|
|
|
- <AXDragSortTable
|
|
|
- columns={imageColumns}
|
|
|
- data={resourceList}
|
|
|
- onChange={this.handleDragSortTableChange}
|
|
|
- />
|
|
|
- );
|
|
|
- }
|
|
|
+ return (
|
|
|
+ <AXDragSortTable
|
|
|
+ columns={imageColumns}
|
|
|
+ data={resourceList}
|
|
|
+ onChange={this.handleDragSortTableChange}
|
|
|
+ />
|
|
|
+ );
|
|
|
};
|
|
|
return (
|
|
|
<div>
|
|
@@ -363,6 +338,7 @@ export default class CoursewareCreatePage extends Component {
|
|
|
multiple={resourceType === 'Picture' || resourceType === 'AudioBook'}
|
|
|
loading={loading}
|
|
|
selectorName={resourceType}
|
|
|
+ fixedName="Resource"
|
|
|
list={resource.list}
|
|
|
pageNo={resource.pageNo}
|
|
|
pageSize={resource.pageSize}
|