|
@@ -8,7 +8,7 @@ import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
|
|
|
import CourseSelectModal from './course';
|
|
|
import SupportSelectModal from './support';
|
|
|
import PackageSelectModal from './package';
|
|
|
-import { Codes, productType } from '../../../utils/config';
|
|
|
+import { Codes, productType, pageSize } from '../../../utils/config';
|
|
|
import styles from './index.less';
|
|
|
|
|
|
const RadioGroup = Radio.Group;
|
|
@@ -64,10 +64,20 @@ export default class MerchantProductCreate extends PureComponent {
|
|
|
delete newData.field;
|
|
|
delete newData.keyword;
|
|
|
}
|
|
|
- if (curClickedBtn === Codes.CODE_COURSE) {
|
|
|
+ if (curClickedBtn == Codes.CODE_COURSE) {
|
|
|
dispatch({
|
|
|
type: 'course/query',
|
|
|
- payload: { ...newData, pageNo: 1, pageSize: 10, status: Codes.CODE_NORMAL },
|
|
|
+ payload: { ...newData, pageNo: 1, pageSize },
|
|
|
+ });
|
|
|
+ } else if (curClickedBtn == Codes.CODE_SUPPORT) {
|
|
|
+ dispatch({
|
|
|
+ type: 'support/query',
|
|
|
+ payload: { ...newData, pageNo: 1, pageSize },
|
|
|
+ });
|
|
|
+ } else if (curClickedBtn == Codes.CODE_PACKAGE) {
|
|
|
+ dispatch({
|
|
|
+ type: 'combo/query',
|
|
|
+ payload: { ...newData, pageNo: 1, pageSize },
|
|
|
});
|
|
|
}
|
|
|
}
|
|
@@ -116,8 +126,7 @@ export default class MerchantProductCreate extends PureComponent {
|
|
|
type: 'course/query',
|
|
|
payload: {
|
|
|
pageNo: 1,
|
|
|
- pageSize: 10,
|
|
|
- status: Codes.CODE_NORMAL,
|
|
|
+ pageSize,
|
|
|
}
|
|
|
});
|
|
|
})
|
|
@@ -130,8 +139,7 @@ export default class MerchantProductCreate extends PureComponent {
|
|
|
type: 'support/query',
|
|
|
payload: {
|
|
|
pageNo: 1,
|
|
|
- pageSize: 10,
|
|
|
- status: Codes.CODE_NORMAL,
|
|
|
+ pageSize,
|
|
|
}
|
|
|
});
|
|
|
})
|
|
@@ -144,8 +152,7 @@ export default class MerchantProductCreate extends PureComponent {
|
|
|
type: 'combo/query',
|
|
|
payload: {
|
|
|
pageNo: 1,
|
|
|
- pageSize: 10,
|
|
|
- status: Codes.CODE_NORMAL,
|
|
|
+ pageSize,
|
|
|
}
|
|
|
});
|
|
|
})
|
|
@@ -174,11 +181,11 @@ export default class MerchantProductCreate 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 === Codes.CODE_COURSE) {
|
|
|
- dispatch({ type: 'course/query', payload: { ...data, status: Codes.CODE_NORMAL } });
|
|
|
+ dispatch({ type: 'course/query', payload: { ...data } });
|
|
|
} else if (curClickedBtn === Codes.CODE_SUPPORT) {
|
|
|
- dispatch({ type: 'support/query', payload: { ...data, status: Codes.CODE_NORMAL } });
|
|
|
+ dispatch({ type: 'support/query', payload: { ...data } });
|
|
|
} else if (curClickedBtn === Codes.CODE_PACKAGE) {
|
|
|
- dispatch({ type: 'combo/query', payload: { ...data, status: Codes.CODE_PACKAGE } });
|
|
|
+ dispatch({ type: 'combo/query', payload: { ...data } });
|
|
|
}
|
|
|
}
|
|
|
|