|
@@ -5,7 +5,7 @@ import { Card, Table, Form, Spin, Input, InputNumber, Button, Icon, message } fr
|
|
|
import queryString from 'query-string';
|
|
|
import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
|
|
|
import ProductSelectModal from './product';
|
|
|
-import { Codes, pageSize } from '../../../utils/config';
|
|
|
+import { Codes, pageSize, productType } from '../../../utils/config';
|
|
|
|
|
|
@Form.create()
|
|
|
@connect(state => ({
|
|
@@ -13,14 +13,15 @@ import { Codes, pageSize } from '../../../utils/config';
|
|
|
product: state.product,
|
|
|
}))
|
|
|
export default class PackageProfile extends PureComponent {
|
|
|
+ state = { proType: [Codes.CODE_COURSE] }; // 产品类型[默认为课程资源]
|
|
|
|
|
|
handleEditProuctClick = () => {
|
|
|
+ const { proType } = this.state;
|
|
|
this.props.dispatch({ type: 'comboDetail/showModal' });
|
|
|
this.props.dispatch({
|
|
|
type: 'product/query',
|
|
|
payload: {
|
|
|
- type: Codes.CODE_COURSE,
|
|
|
- status: Codes.CODE_NORMAL,
|
|
|
+ type: proType[0],
|
|
|
pageNo: 1,
|
|
|
pageSize,
|
|
|
}
|
|
@@ -51,16 +52,18 @@ export default class PackageProfile extends PureComponent {
|
|
|
|
|
|
handleProductModalSearch = (data) => {
|
|
|
const newData = { ...data };
|
|
|
+ const { proType } = this.state;
|
|
|
if (newData.keyword) {
|
|
|
newData[newData.field] = newData.keyword;
|
|
|
}
|
|
|
delete newData.field;
|
|
|
delete newData.keyword;
|
|
|
+
|
|
|
this.props.dispatch({
|
|
|
type: 'product/query',
|
|
|
payload: {
|
|
|
- type: Codes.CODE_COURSE,
|
|
|
- status: Codes.CODE_NORMAL,
|
|
|
+ ...newData,
|
|
|
+ type: proType[0],
|
|
|
pageNo: 1,
|
|
|
pageSize,
|
|
|
}
|
|
@@ -68,6 +71,15 @@ export default class PackageProfile extends PureComponent {
|
|
|
}
|
|
|
|
|
|
handleProductModalTableChange = (pagination, filterArgs, filters) => {
|
|
|
+ // 待选资源列表中资源类型过滤选项
|
|
|
+ const { type } = filterArgs;
|
|
|
+ if (Array.isArray(type) && type.length) {
|
|
|
+ this.setState({ proType: type.map(item => item) });
|
|
|
+ } else {
|
|
|
+ this.setState({ proType: [Codes.CODE_COURSE] });
|
|
|
+ filterArgs.type = [Codes.CODE_COURSE];
|
|
|
+ }
|
|
|
+
|
|
|
const newFilters = { ...filters };
|
|
|
if (newFilters.keyword) {
|
|
|
newFilters[newFilters.field] = newFilters.keyword;
|
|
@@ -75,15 +87,17 @@ export default class PackageProfile extends PureComponent {
|
|
|
delete newFilters.field;
|
|
|
delete newFilters.keyword;
|
|
|
|
|
|
- const data = {
|
|
|
- ...newFilters,
|
|
|
- pageNo: pagination.current,
|
|
|
- pageSize: pagination.pageSize,
|
|
|
- status: Codes.CODE_NORMAL,
|
|
|
- };
|
|
|
+ // table header filter
|
|
|
+ const getValue = obj => Object.keys(obj).map(key => obj[key]).join(',');
|
|
|
+ const tableFilters = Object.keys(filterArgs).reduce((obj, key) => {
|
|
|
+ const newObj = { ...obj };
|
|
|
+ newObj[key] = getValue(filterArgs[key]);
|
|
|
+ return newObj;
|
|
|
+ }, {});
|
|
|
|
|
|
+ const data = { ...newFilters, ...tableFilters, pageNo: pagination.current, pageSize: pagination.pageSize };
|
|
|
Object.keys(data).map(key => data[key] ? null : delete data[key]);
|
|
|
- dispatch({ type: 'product/query', payload: data });
|
|
|
+ this.props.dispatch({ type: 'product/query', payload: data });
|
|
|
}
|
|
|
|
|
|
handlePageCancel = () => {
|
|
@@ -92,6 +106,7 @@ export default class PackageProfile extends PureComponent {
|
|
|
pathname: '/product/package',
|
|
|
search: queryString.stringify(filters),
|
|
|
}));
|
|
|
+ this.props.dispatch({ type: 'comboDetail/initState' });
|
|
|
}
|
|
|
|
|
|
handlePageSubmit = (e) => {
|
|
@@ -119,6 +134,7 @@ export default class PackageProfile extends PureComponent {
|
|
|
// add params `status`
|
|
|
if (operType === 'create') {
|
|
|
data.status = Codes.CODE_NORMAL;
|
|
|
+ data.type = Codes.CODE_PACKAGE;
|
|
|
}
|
|
|
else if (operType === 'update') {
|
|
|
data.status = currentItem.status;
|
|
@@ -139,6 +155,7 @@ export default class PackageProfile extends PureComponent {
|
|
|
|
|
|
render() {
|
|
|
const { form, comboDetail, product } = this.props;
|
|
|
+ const { proType } = this.state;
|
|
|
const { modalShow, currentItem, itemLoading } = comboDetail;
|
|
|
const { list, listLoading, pagination } = product;
|
|
|
const { products } = currentItem;
|
|
@@ -161,22 +178,31 @@ export default class PackageProfile extends PureComponent {
|
|
|
};
|
|
|
|
|
|
const columns = [{
|
|
|
- title: '产品封面',
|
|
|
- dataIndex: 'coverUrl',
|
|
|
- key: 'coverUrl',
|
|
|
- render: (text, record) => {},
|
|
|
- },{
|
|
|
- title: '产品编号',
|
|
|
+ // title: '封面',
|
|
|
+ // dataIndex: 'coverUrl',
|
|
|
+ // key: 'coverUrl',
|
|
|
+ // render: (text, record) => {},
|
|
|
+ // },{
|
|
|
+ title: '编号',
|
|
|
dataIndex: 'code',
|
|
|
key: 'code',
|
|
|
+ width: '20%',
|
|
|
},{
|
|
|
- title: '产品名称',
|
|
|
+ title: '名称',
|
|
|
dataIndex: 'name',
|
|
|
key: 'name',
|
|
|
+ width: '20%',
|
|
|
+ },{
|
|
|
+ title: '类型',
|
|
|
+ dataIndex: 'type',
|
|
|
+ key: 'type',
|
|
|
+ render: (text, record) => productType[text],
|
|
|
+ width: '15%',
|
|
|
},{
|
|
|
title: '供应商',
|
|
|
dataIndex: 'cpName',
|
|
|
key: 'cpName',
|
|
|
+ width: '17%',
|
|
|
},{
|
|
|
title: '供应商价格',
|
|
|
dataIndex: 'cpPrice',
|
|
@@ -190,6 +216,7 @@ export default class PackageProfile extends PureComponent {
|
|
|
parser={value => value.replace(/\¥\s?|(,*)/g, '')}
|
|
|
/>
|
|
|
),
|
|
|
+ width: '28%',
|
|
|
}];
|
|
|
|
|
|
return (
|
|
@@ -220,7 +247,7 @@ export default class PackageProfile extends PureComponent {
|
|
|
rowKey={record => record.id}
|
|
|
locale={{
|
|
|
emptyText: <span style={{ color: "#C6D0D6" }}> <Icon type="frown-o"/>
|
|
|
- 该产品包内暂无相关产品!</span>
|
|
|
+ 该产品包内暂无相关内容!</span>
|
|
|
}}
|
|
|
/>
|
|
|
</Form.Item>
|
|
@@ -234,10 +261,12 @@ export default class PackageProfile extends PureComponent {
|
|
|
rowKeyName="id"
|
|
|
modalVisible={modalShow}
|
|
|
selTableData={products || []}
|
|
|
+ width={600}
|
|
|
style={{ top: 20 }}
|
|
|
fsTableDataSource={list}
|
|
|
fsTableLoading={listLoading}
|
|
|
fsTablePagination={pagination}
|
|
|
+ fsFilteredValue={proType}
|
|
|
onOk={this.handleProductModalOk}
|
|
|
onCancel={this.handleProductModalCancel}
|
|
|
onSearch={this.handleProductModalSearch}
|