|
@@ -1,3 +1,4 @@
|
|
|
|
+import { message } from 'antd';
|
|
import { queryOne, createMerchantProduct } from '../../services/mproduct';
|
|
import { queryOne, createMerchantProduct } from '../../services/mproduct';
|
|
import pathToRegexp from 'path-to-regexp';
|
|
import pathToRegexp from 'path-to-regexp';
|
|
import queryString from 'query-string';
|
|
import queryString from 'query-string';
|
|
@@ -21,7 +22,7 @@ export default {
|
|
dispatch({ type: 'queryOne', payload: { ...params } });
|
|
dispatch({ type: 'queryOne', payload: { ...params } });
|
|
dispatch({ type: 'saveFilters', payload: state });
|
|
dispatch({ type: 'saveFilters', payload: state });
|
|
}
|
|
}
|
|
- if (pathname === '/goods/add') {
|
|
|
|
|
|
+ if (pathname == '/goods/add') {
|
|
dispatch({ type: 'saveFilters', payload: state });
|
|
dispatch({ type: 'saveFilters', payload: state });
|
|
}
|
|
}
|
|
});
|
|
});
|
|
@@ -42,7 +43,8 @@ export default {
|
|
* createMerchantProduct ({ payload, callback }, { call, put }) {
|
|
* createMerchantProduct ({ payload, callback }, { call, put }) {
|
|
const { data, success } = yield call(createMerchantProduct, payload);
|
|
const { data, success } = yield call(createMerchantProduct, payload);
|
|
if (success) {
|
|
if (success) {
|
|
- yield put({ type: 'clearPage' });
|
|
|
|
|
|
+ message.success('创建成功!');
|
|
|
|
+ yield put({ type: 'initState' });
|
|
if (callback) callback();
|
|
if (callback) callback();
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -52,42 +54,33 @@ export default {
|
|
changeLoading(state, { payload }) {
|
|
changeLoading(state, { payload }) {
|
|
return { ...state, ...payload };
|
|
return { ...state, ...payload };
|
|
},
|
|
},
|
|
-
|
|
|
|
querySuccess(state, { payload }) {
|
|
querySuccess(state, { payload }) {
|
|
return { ...state, currentItem: payload };
|
|
return { ...state, currentItem: payload };
|
|
},
|
|
},
|
|
-
|
|
|
|
saveFilters(state, { payload: filters }) {
|
|
saveFilters(state, { payload: filters }) {
|
|
return { ...state, filters };
|
|
return { ...state, filters };
|
|
},
|
|
},
|
|
-
|
|
|
|
showSupportModal(state, { payload }) {
|
|
showSupportModal(state, { payload }) {
|
|
return { ...state, ...payload, supportModalVisible: true };
|
|
return { ...state, ...payload, supportModalVisible: true };
|
|
},
|
|
},
|
|
-
|
|
|
|
hideSupportModal(state) {
|
|
hideSupportModal(state) {
|
|
return { ...state, supportModalVisible: false };
|
|
return { ...state, supportModalVisible: false };
|
|
},
|
|
},
|
|
-
|
|
|
|
showResourceModal(state, { payload }) {
|
|
showResourceModal(state, { payload }) {
|
|
return { ...state, ...payload, resourceModalVisible: true };
|
|
return { ...state, ...payload, resourceModalVisible: true };
|
|
},
|
|
},
|
|
-
|
|
|
|
hideResourceModal(state) {
|
|
hideResourceModal(state) {
|
|
return { ...state, resourceModalVisible: false };
|
|
return { ...state, resourceModalVisible: false };
|
|
},
|
|
},
|
|
-
|
|
|
|
saveSupportList(state, { payload: { supportList } }) {
|
|
saveSupportList(state, { payload: { supportList } }) {
|
|
const currentItem = { ...state.currentItem, supportList };
|
|
const currentItem = { ...state.currentItem, supportList };
|
|
return { ...state, supportModalVisible: false, currentItem };
|
|
return { ...state, supportModalVisible: false, currentItem };
|
|
},
|
|
},
|
|
-
|
|
|
|
saveImgList(state, { payload: { imgList } }) {
|
|
saveImgList(state, { payload: { imgList } }) {
|
|
const currentItem = { ...state.currentItem, imgList };
|
|
const currentItem = { ...state.currentItem, imgList };
|
|
return { ...state, resourceModalVisible: false, currentItem };
|
|
return { ...state, resourceModalVisible: false, currentItem };
|
|
},
|
|
},
|
|
-
|
|
|
|
- clearPage(state) {
|
|
|
|
|
|
+ initState(state) {
|
|
return { ...state, currentItem: {}, itemLoading: false };
|
|
return { ...state, currentItem: {}, itemLoading: false };
|
|
}
|
|
}
|
|
}
|
|
}
|