|
@@ -3,37 +3,166 @@ import { routerRedux } from 'dva/router';
|
|
|
import PropTypes from 'prop-types';
|
|
|
import queryString from 'query-string';
|
|
|
import { connect } from 'dva';
|
|
|
-import { Spin, Card, Form } from 'antd';
|
|
|
import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
|
|
|
import BaseInfoCard from './baseInfo';
|
|
|
import RecommendList from './recommend';
|
|
|
+import { Codes, pageSize } from '../../../utils/config';
|
|
|
|
|
|
-@connect(state => ({ merchantDetail: state.merchantDetail }))
|
|
|
+@connect(state => ({
|
|
|
+ mproduct: state.mproduct,
|
|
|
+ merchantDetail: state.merchantDetail,
|
|
|
+}))
|
|
|
export default class MerchantDetail extends PureComponent {
|
|
|
static propTypes = {
|
|
|
merchantDetail: PropTypes.object,
|
|
|
+ mproduct: PropTypes.object,
|
|
|
};
|
|
|
|
|
|
state = { curTab: 'baseInfo' };
|
|
|
|
|
|
handleTabChange = (key) => {
|
|
|
this.setState({ curTab: key });
|
|
|
+ if (key === 'recommend') {
|
|
|
+ const { merchantDetail } = this.props;
|
|
|
+ const { currentItem } = merchantDetail;
|
|
|
+ const { id } = currentItem;
|
|
|
+ this.props.dispatch({
|
|
|
+ type: 'merchantDetail/queryMerchantRecommend',
|
|
|
+ payload: { id },
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- render() {
|
|
|
+ handleRecommendAdjustClick = () => {
|
|
|
+ const { merchantDetail } = this.props;
|
|
|
+ const { currentItem } = merchantDetail;
|
|
|
+ const { id } = currentItem;
|
|
|
+ this.props.dispatch({ type: 'merchantDetail/showRecModal' });
|
|
|
+ this.props.dispatch({
|
|
|
+ type: 'mproduct/query',
|
|
|
+ payload: {
|
|
|
+ merchantId: id,
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ handleRecommendModalCancel = () => {
|
|
|
+ this.props.dispatch({ type: 'merchantDetail/hideRecModal' });
|
|
|
+ }
|
|
|
+
|
|
|
+ handleRecommendModalOk = (data) => {
|
|
|
+ this.props.dispatch({
|
|
|
+ type: 'merchantDetail/saveRecResult',
|
|
|
+ payload: data,
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ handleRecommendModalSearch = (data) => {
|
|
|
+ const { merchantDetail } = this.props;
|
|
|
+ const { currentItem } = merchantDetail;
|
|
|
+ const { id } = currentItem;
|
|
|
+ const newData = { ...data };
|
|
|
+ if (newData.keyword) {
|
|
|
+ newData[newData.field] = newData.keyword;
|
|
|
+ }
|
|
|
+ delete newData.field;
|
|
|
+ delete newData.keyword;
|
|
|
+ this.props.dispatch({
|
|
|
+ type: 'mproduct/query',
|
|
|
+ payload: {
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize,
|
|
|
+ merchantId: id,
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ handleRecommendModalTableChange = (pagination, filterArgs, filters) => {
|
|
|
+ const { merchantDetail } = this.props;
|
|
|
+ const { currentItem } = merchantDetail;
|
|
|
+ const { id } = currentItem;
|
|
|
+ const newFilters = { ...filters };
|
|
|
+ if (newFilters.keyword) {
|
|
|
+ newFilters[newFilters.field] = newFilters.keyword;
|
|
|
+ }
|
|
|
+ delete newFilters.field;
|
|
|
+ delete newFilters.keyword;
|
|
|
+
|
|
|
+ const data = {
|
|
|
+ ...newFilters,
|
|
|
+ pageNo: pagination.current,
|
|
|
+ pageSize: pagination.pageSize,
|
|
|
+ merchantId: id,
|
|
|
+ };
|
|
|
+
|
|
|
+ Object.keys(data).map(key => data[key] ? null : delete data[key]);
|
|
|
+ dispatch({ type: 'mproduct/query', payload: data });
|
|
|
+ }
|
|
|
+
|
|
|
+ handleRecommendPageCancel = () => {
|
|
|
const { dispatch, merchantDetail } = this.props;
|
|
|
- const { itemLoading, currentItem, filters } = merchantDetail;
|
|
|
+ const { filters } = merchantDetail;
|
|
|
+ dispatch(
|
|
|
+ routerRedux.push({
|
|
|
+ pathname: '/merchant',
|
|
|
+ search: queryString.stringify(filters)
|
|
|
+ })
|
|
|
+ );
|
|
|
+ dispatch({
|
|
|
+ type: 'merchantDetail/clearCache',
|
|
|
+ payload: { recommend: [] },
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ handleRecommendPageSubmit = () => {
|
|
|
+ const { dispatch, merchantDetail } = this.props;
|
|
|
+ const { filters, currentItem, recommend } = merchantDetail;
|
|
|
+ const { id } = currentItem;
|
|
|
+ const idList = recommend.map(item => item.id);
|
|
|
+ dispatch({
|
|
|
+ type: 'merchantDetail/updateMerchantRecommend',
|
|
|
+ payload: { merchantId: id, idList },
|
|
|
+ callback: () => {
|
|
|
+ dispatch(
|
|
|
+ routerRedux.push({
|
|
|
+ pathname: '/merchant',
|
|
|
+ search: queryString.stringify(filters)
|
|
|
+ })
|
|
|
+ );
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
|
|
|
- const tabList = [{
|
|
|
- key: 'baseInfo',
|
|
|
- tab: '基础信息',
|
|
|
- },{
|
|
|
- key: 'recommend',
|
|
|
- tab: '推荐位设置',
|
|
|
- }];
|
|
|
+ render() {
|
|
|
+ const { dispatch, merchantDetail, mproduct } = this.props;
|
|
|
+ const {
|
|
|
+ itemLoading,
|
|
|
+ currentItem,
|
|
|
+ filters,
|
|
|
+ operType,
|
|
|
+ recommend,
|
|
|
+ recModalShow,
|
|
|
+ recLoading,
|
|
|
+ } = merchantDetail;
|
|
|
+
|
|
|
+ const { domain } = currentItem;
|
|
|
|
|
|
- const baseInfoCardProps = {
|
|
|
+ let tabList;
|
|
|
+ if (operType === 'update' && domain === Codes.CODE_PJ) {
|
|
|
+ tabList = [{
|
|
|
+ key: 'baseInfo',
|
|
|
+ tab: '基础信息',
|
|
|
+ },{
|
|
|
+ key: 'recommend',
|
|
|
+ tab: '推荐位设置',
|
|
|
+ }];
|
|
|
+ }
|
|
|
+
|
|
|
+ const baseInfoTabProps = {
|
|
|
item: currentItem,
|
|
|
+ loading: itemLoading,
|
|
|
onCancel: () => {
|
|
|
dispatch(
|
|
|
routerRedux.push({
|
|
@@ -41,29 +170,61 @@ export default class MerchantDetail extends PureComponent {
|
|
|
search: queryString.stringify(filters)
|
|
|
})
|
|
|
);
|
|
|
+ dispatch({
|
|
|
+ type: 'merchantDetail/clearCache',
|
|
|
+ payload: { currentItem: {} },
|
|
|
+ });
|
|
|
},
|
|
|
onSubmit: (data) => {
|
|
|
- console.log(data);
|
|
|
+ const newData = { ...data };
|
|
|
+ if (operType === 'create') {
|
|
|
+ newData.status = Codes.CODE_NORMAL;
|
|
|
+ }
|
|
|
+ if (operType === 'update') {
|
|
|
+ const { id, status } = currentItem;
|
|
|
+ newData.status = status;
|
|
|
+ newData.id = id;
|
|
|
+ }
|
|
|
+ dispatch({
|
|
|
+ type: `merchantDetail/${operType}`,
|
|
|
+ payload: newData,
|
|
|
+ callback: () => {
|
|
|
+ dispatch(routerRedux.push({
|
|
|
+ pathname: '/merchant',
|
|
|
+ search: queryString.stringify(filters),
|
|
|
+ }));
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
};
|
|
|
- const recommendCardProps = {
|
|
|
-
|
|
|
+ const recommendTabProps = {
|
|
|
+ rowKeyName: "id",
|
|
|
+ loading: recLoading,
|
|
|
+ selTableData: recommend,
|
|
|
+ modalVisible: recModalShow,
|
|
|
+ fsTableDataSource: mproduct.list,
|
|
|
+ fsTablePagination: mproduct.pagination,
|
|
|
+ fsTableLoading: mproduct.listLoading,
|
|
|
+ fsTableOnChange: this.handleRecommendModalTableChange,
|
|
|
+ onOk: this.handleRecommendModalOk,
|
|
|
+ onCancel: this.handleRecommendModalCancel,
|
|
|
+ onSearch: this.handleRecommendModalSearch,
|
|
|
+ modalShowController: this.handleRecommendAdjustClick,
|
|
|
+ onPageCancel: this.handleRecommendPageCancel,
|
|
|
+ onPageSubmit: this.handleRecommendPageSubmit,
|
|
|
};
|
|
|
|
|
|
const contentMap = {
|
|
|
- baseInfo: <BaseInfoCard { ...baseInfoCardProps }/>,
|
|
|
- recommend: <RecommendList />
|
|
|
+ baseInfo: <BaseInfoCard { ...baseInfoTabProps }/>,
|
|
|
+ recommend: <RecommendList { ...recommendTabProps } />
|
|
|
};
|
|
|
|
|
|
return (
|
|
|
<PageHeaderLayout
|
|
|
- title="相关配置"
|
|
|
tabList={tabList}
|
|
|
onTabChange={this.handleTabChange}
|
|
|
>
|
|
|
- <Spin spinning={itemLoading}>
|
|
|
- {contentMap[this.state.curTab]}
|
|
|
- </Spin>
|
|
|
+ {contentMap[this.state.curTab]}
|
|
|
</PageHeaderLayout>
|
|
|
);
|
|
|
}
|