|
@@ -1,19 +1,14 @@
|
|
|
import React, { PureComponent } from 'react';
|
|
|
import { routerRedux } from 'dva/router';
|
|
|
-import PropTypes from 'prop-types';
|
|
|
import queryString from 'query-string';
|
|
|
import { connect } from 'dva';
|
|
|
-import { Spin, Popover, Badge, Table, Radio, Card, Form, Input, Icon, Button, Select } from 'antd';
|
|
|
+import { Spin, Table, Card, Form, Input, Icon, Button, Select } from 'antd';
|
|
|
import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
|
|
|
import LessonSelectSortModal from './lesson';
|
|
|
import ResourceSelectModal from './resource';
|
|
|
import SupportSelectSortModal from './support';
|
|
|
import { Codes, ossHost } from '../../../utils/config';
|
|
|
|
|
|
-const FormItem = Form.Item;
|
|
|
-const Option = Select.Option;
|
|
|
-const { TextArea } = Input;
|
|
|
-
|
|
|
@Form.create()
|
|
|
@connect(state => ({
|
|
|
courseDetail: state.courseDetail,
|
|
@@ -45,7 +40,7 @@ export default class CourseDetail extends PureComponent {
|
|
|
curClickedBtn: btnName,
|
|
|
}, () => {
|
|
|
const { dispatch } = this.props;
|
|
|
- if (btnName === 'lessonBtn') {
|
|
|
+ if (btnName == 'lessonBtn') {
|
|
|
dispatch({ type: 'courseDetail/showLessonModal' });
|
|
|
dispatch({
|
|
|
type: 'lesson/query',
|
|
@@ -55,7 +50,7 @@ export default class CourseDetail extends PureComponent {
|
|
|
status: Codes.CODE_NORMAL,
|
|
|
}
|
|
|
});
|
|
|
- } else if (btnName === 'cvImgBtn' || btnName === 'bgImgBtn') {
|
|
|
+ } else if (btnName == 'cvImgBtn' || btnName == 'bgImgBtn') {
|
|
|
dispatch({ type: 'courseDetail/showResourceModal' });
|
|
|
dispatch({
|
|
|
type: 'resource/query',
|
|
@@ -66,7 +61,7 @@ export default class CourseDetail extends PureComponent {
|
|
|
type: Codes.CODE_IMAGE,
|
|
|
}
|
|
|
});
|
|
|
- } else if (btnName === 'supportBtn') {
|
|
|
+ } else if (btnName == 'supportBtn') {
|
|
|
dispatch({ type: 'courseDetail/showSupportModal' });
|
|
|
dispatch({
|
|
|
type: 'support/query',
|
|
@@ -84,11 +79,11 @@ export default class CourseDetail extends PureComponent {
|
|
|
handleModalCancel = () => {
|
|
|
const { curClickedBtn } = this.state;
|
|
|
const { dispatch } = this.props;
|
|
|
- if (curClickedBtn === 'lessonBtn') {
|
|
|
+ if (curClickedBtn == 'lessonBtn') {
|
|
|
dispatch({ type: 'courseDetail/hideLessonModal' });
|
|
|
- } else if (curClickedBtn === 'cvImgBtn' || curClickedBtn === 'bgImgBtn') {
|
|
|
+ } else if (curClickedBtn == 'cvImgBtn' || curClickedBtn == 'bgImgBtn') {
|
|
|
dispatch({ type: 'courseDetail/hideResourceModal' });
|
|
|
- } else if (curClickedBtn === 'supportBtn') {
|
|
|
+ } else if (curClickedBtn == 'supportBtn') {
|
|
|
dispatch({ type: 'courseDetail/hideSupportModal' });
|
|
|
}
|
|
|
}
|
|
@@ -97,22 +92,22 @@ export default class CourseDetail extends PureComponent {
|
|
|
handleModalOk = (data) => {
|
|
|
const { curClickedBtn } = this.state;
|
|
|
const { dispatch } = this.props;
|
|
|
- if (curClickedBtn === 'lessonBtn') {
|
|
|
+ if (curClickedBtn == 'lessonBtn') {
|
|
|
dispatch({
|
|
|
type: 'courseDetail/saveLessonList',
|
|
|
payload: { subItemList: data }
|
|
|
});
|
|
|
- } else if (curClickedBtn === 'cvImgBtn') {
|
|
|
+ } else if (curClickedBtn == 'cvImgBtn') {
|
|
|
dispatch({
|
|
|
type: 'courseDetail/saveCoverImg',
|
|
|
payload: { coverUrl: data.path },
|
|
|
});
|
|
|
- } else if (curClickedBtn === 'bgImgBtn') {
|
|
|
+ } else if (curClickedBtn == 'bgImgBtn') {
|
|
|
dispatch({
|
|
|
type: 'courseDetail/saveBackgroundImg',
|
|
|
payload: { bgUrl: data.path },
|
|
|
});
|
|
|
- } else if (curClickedBtn === 'supportBtn') {
|
|
|
+ } else if (curClickedBtn == 'supportBtn') {
|
|
|
dispatch({
|
|
|
type: 'courseDetail/saveSupportList',
|
|
|
payload: { supportList: data }
|
|
@@ -127,18 +122,16 @@ export default class CourseDetail extends PureComponent {
|
|
|
const newData = { ...data };
|
|
|
if (newData.keyword) {
|
|
|
newData[newData.field] = newData.keyword;
|
|
|
- delete newData.field;
|
|
|
- delete newData.keyword;
|
|
|
- } else {
|
|
|
- delete newData.field;
|
|
|
- delete newData.keyword;
|
|
|
}
|
|
|
- if (curClickedBtn === 'lessonBtn') {
|
|
|
+ delete newData.field;
|
|
|
+ delete newData.keyword;
|
|
|
+
|
|
|
+ if (curClickedBtn == 'lessonBtn') {
|
|
|
dispatch({
|
|
|
type: `lesson/query`,
|
|
|
payload: { ...newData, pageNo: 1, pageSize: 10, status: Codes.CODE_NORMAL },
|
|
|
});
|
|
|
- } else if (curClickedBtn === 'cvImgBtn' || curClickedBtn === 'bgImgBtn') {
|
|
|
+ } else if (curClickedBtn == 'cvImgBtn' || curClickedBtn == 'bgImgBtn') {
|
|
|
dispatch({
|
|
|
type: `resource/query`,
|
|
|
payload: { ...newData, pageNo: 1, pageSize: 10, status: Codes.CODE_NORMAL, type: Codes.CODE_IMAGE },
|
|
@@ -153,12 +146,10 @@ export default class CourseDetail extends PureComponent {
|
|
|
const newFilters = { ...filters };
|
|
|
if (newFilters.keyword) {
|
|
|
newFilters[newFilters.field] = newFilters.keyword;
|
|
|
- delete newFilters.field;
|
|
|
- delete newFilters.keyword;
|
|
|
- } else {
|
|
|
- delete newFilters.field;
|
|
|
- delete newFilters.keyword;
|
|
|
}
|
|
|
+ delete newFilters.field;
|
|
|
+ delete newFilters.keyword;
|
|
|
+
|
|
|
const getValue = obj => Object.keys(obj).map(key => obj[key]).join(',');
|
|
|
const tableFilters = Object.keys(filterArgs).reduce((obj, key) => {
|
|
|
const newObj = { ...obj };
|
|
@@ -169,11 +160,11 @@ export default class CourseDetail extends PureComponent {
|
|
|
const data = { ...newFilters, ...tableFilters, pageNo: pagination.current, pageSize: pagination.pageSize };
|
|
|
Object.keys(data).map(key => data[key] ? null : delete data[key]);
|
|
|
|
|
|
- if (curClickedBtn === 'lessonBtn') {
|
|
|
+ if (curClickedBtn == 'lessonBtn') {
|
|
|
dispatch({ type: `lesson/query`, payload: data });
|
|
|
- } else if (curClickedBtn === 'cvImgBtn' || curClickedBtn === 'bgImgBtn') {
|
|
|
+ } else if (curClickedBtn == 'cvImgBtn' || curClickedBtn == 'bgImgBtn') {
|
|
|
dispatch({ type: `resource/query`, payload: { ...data, type: Codes.CODE_IMAGE } });
|
|
|
- } else if (curClickedBtn === 'supportBtn') {
|
|
|
+ } else if (curClickedBtn == 'supportBtn') {
|
|
|
dispatch({ type: `support/query`, payload: data });
|
|
|
}
|
|
|
}
|
|
@@ -335,46 +326,46 @@ export default class CourseDetail extends PureComponent {
|
|
|
<Spin spinning={itemLoading}>
|
|
|
<Card title="课程信息">
|
|
|
<Form layout="horizontal" onSubmit={this.handlePageSubmit}>
|
|
|
- <FormItem label="课程编号:" hasFeedback {...formItemLayout}>
|
|
|
+ <Form.Item label="课程编号:" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('code', {
|
|
|
rules: [{ required: true, type: 'string', message: "编号为必填项!" }],
|
|
|
initialValue: code,
|
|
|
})(<Input />)}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="课程名称:" hasFeedback {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="课程名称:" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('name', {
|
|
|
rules: [{ required: true, type: 'string', message: "名称为必填项!" }],
|
|
|
initialValue: name,
|
|
|
})(<Input />)}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="课程副标题:" hasFeedback {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="课程副标题:" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('subTitle', {
|
|
|
initialValue: subTitle,
|
|
|
})(<Input />)}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="面包屑导航:" hasFeedback {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="面包屑导航:" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('breadCrumbs', {
|
|
|
initialValue: breadCrumbs,
|
|
|
})(<Input />)}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="课程概要:" hasFeedback {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="课程概要:" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('digest', {
|
|
|
initialValue: digest,
|
|
|
- })(<TextArea />)}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="课程详情:" hasFeedback {...formItemLayout}>
|
|
|
+ })(<Input.TextArea />)}
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="课程详情:" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('detail', {
|
|
|
initialValue: detail,
|
|
|
- })(<TextArea />)}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="所属供应商:" {...formItemLayout}>
|
|
|
+ })(<Input.TextArea />)}
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="所属供应商:" {...formItemLayout}>
|
|
|
{getFieldDecorator('cpId', {
|
|
|
initialValue: cpId,
|
|
|
})(
|
|
|
- <Select placeholder="请选择">{merchant.list.map(item => <Option value={item.id} key={item.id}>{item.name}</Option>)}</Select>
|
|
|
+ <Select placeholder="请选择">{merchant.list.map(item => <Select.Option value={item.id} key={item.id}>{item.name}</Select.Option>)}</Select>
|
|
|
)}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="封面图片" {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="封面图片" {...formItemLayout}>
|
|
|
<Button onClick={() => this.handleModalShow('cvImgBtn')} type="primary" icon="select" size="small">选择</Button>
|
|
|
{!coverUrl ? null :
|
|
|
<Card
|
|
@@ -384,8 +375,8 @@ export default class CourseDetail extends PureComponent {
|
|
|
style={{ width: 240, marginTop: 20 }}
|
|
|
>
|
|
|
</Card>}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="背景图片" {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="背景图片" {...formItemLayout}>
|
|
|
<Button onClick={() => this.handleModalShow('bgImgBtn')} type="primary" icon="select" size="small">选择</Button>
|
|
|
{!bgUrl ? null :
|
|
|
<Card
|
|
@@ -395,11 +386,11 @@ export default class CourseDetail extends PureComponent {
|
|
|
style={{ width: 240, marginTop: 20 }}
|
|
|
>
|
|
|
</Card>}
|
|
|
- </FormItem>
|
|
|
- <FormItem label="相关课" {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="相关课" {...formItemLayout}>
|
|
|
<Button onClick={() => this.handleModalShow('lessonBtn')} type="primary" size="small" icon="edit">编辑</Button>
|
|
|
- </FormItem>
|
|
|
- <FormItem wrapperCol={{ offset: 7, span: 12 }}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item wrapperCol={{ offset: 7, span: 12 }}>
|
|
|
<Table
|
|
|
locale={{
|
|
|
emptyText: <span style={{ color: "#C6D0D6" }}> <Icon type="frown-o"/>
|
|
@@ -411,11 +402,11 @@ export default class CourseDetail extends PureComponent {
|
|
|
bordered
|
|
|
pagination={false}
|
|
|
/>
|
|
|
- </FormItem>
|
|
|
- <FormItem label="相关配套" {...formItemLayout}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item label="相关配套" {...formItemLayout}>
|
|
|
<Button onClick={() => this.handleModalShow('supportBtn')} type="primary" size="small" icon="edit">编辑</Button>
|
|
|
- </FormItem>
|
|
|
- <FormItem wrapperCol={{ offset: 7, span: 12 }}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item wrapperCol={{ offset: 7, span: 12 }}>
|
|
|
<Table
|
|
|
locale={{
|
|
|
emptyText: <span style={{ color: "#C6D0D6" }}> <Icon type="frown-o"/>
|
|
@@ -427,11 +418,11 @@ export default class CourseDetail extends PureComponent {
|
|
|
bordered
|
|
|
pagination={false}
|
|
|
/>
|
|
|
- </FormItem>
|
|
|
- <FormItem {...submitFormLayout} style={{ marginTop: 32 }}>
|
|
|
+ </Form.Item>
|
|
|
+ <Form.Item {...submitFormLayout} style={{ marginTop: 32 }}>
|
|
|
<Button onClick={this.handlePageCancel}>取消</Button>
|
|
|
<Button type="primary" style={{ marginLeft: 35 }} htmlType="submit">提交</Button>
|
|
|
- </FormItem>
|
|
|
+ </Form.Item>
|
|
|
</Form>
|
|
|
{/*课的模态选择框*/}
|
|
|
<LessonSelectSortModal
|