|
@@ -1,5 +1,6 @@
|
|
|
-import { queryOne, create, update } from '../../services/ware';
|
|
|
+import { message } from 'antd';
|
|
|
import pathToRegexp from 'path-to-regexp';
|
|
|
+import { queryOne, create, update } from '../../services/ware';
|
|
|
import { Codes } from '../../utils/config';
|
|
|
|
|
|
export default {
|
|
@@ -22,8 +23,7 @@ export default {
|
|
|
dispatch({ type: 'saveFilters', payload: state });
|
|
|
dispatch({ type: 'saveOperType', payload: { operType: 'update' } });
|
|
|
}
|
|
|
- if (pathname === '/basic-product/ware/add') {
|
|
|
- dispatch({ type: 'saveFilters', payload: state });
|
|
|
+ if (pathname == '/basic-product/ware/add') {
|
|
|
dispatch({ type: 'saveFilters', payload: state });
|
|
|
dispatch({ type: 'saveOperType', payload: { operType: 'create' } });
|
|
|
}
|
|
@@ -41,52 +41,64 @@ export default {
|
|
|
yield put({ type: 'changeLoading', payload: { itemLoading: false } });
|
|
|
},
|
|
|
* create ({ payload, callback }, { call, put }) {
|
|
|
- const { data, success } = yield call(create, { ...payload, status: Codes.CODE_NORMAL });
|
|
|
+ const { data, success } = yield call(create, payload);
|
|
|
if (success) {
|
|
|
- yield put({ type: 'clearPage' });
|
|
|
+ message.success('创建成功!');
|
|
|
+ yield put({ type: 'initState' });
|
|
|
if (callback) callback();
|
|
|
}
|
|
|
},
|
|
|
* update ({ payload, callback }, { call, put }) {
|
|
|
const { data, success } = yield call(update, payload);
|
|
|
if (success) {
|
|
|
- yield put({ type: 'clearPage' });
|
|
|
+ message.success('修改成功!');
|
|
|
+ yield put({ type: 'initState' });
|
|
|
if (callback) callback();
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
|
|
|
reducers: {
|
|
|
- changeLoading(state, { payload }) {
|
|
|
- return { ...state, ...payload };
|
|
|
+ changeLoading(state, action) {
|
|
|
+ return { ...state, ...action.payload };
|
|
|
},
|
|
|
-
|
|
|
- querySuccess(state, { payload }) {
|
|
|
- return { ...state, currentItem: payload };
|
|
|
+ querySuccess(state, action) {
|
|
|
+ return {
|
|
|
+ ...state,
|
|
|
+ currentItem: action.payload,
|
|
|
+ };
|
|
|
},
|
|
|
-
|
|
|
- saveFilters(state, { payload: filters }) {
|
|
|
- return { ...state, filters };
|
|
|
+ saveFilters(state, action) {
|
|
|
+ return {
|
|
|
+ ...state,
|
|
|
+ filters: action.payload.filters,
|
|
|
+ };
|
|
|
},
|
|
|
-
|
|
|
- showModal(state) {
|
|
|
- return { ...state, modalVisible: true };
|
|
|
+ showModal(state, action) {
|
|
|
+ return {
|
|
|
+ ...state,
|
|
|
+ ...action.payload,
|
|
|
+ modalVisible: true,
|
|
|
+ };
|
|
|
},
|
|
|
-
|
|
|
- hideModal(state) {
|
|
|
- return { ...state, modalVisible: false };
|
|
|
+ hideModal(state, action) {
|
|
|
+ return {
|
|
|
+ ...state,
|
|
|
+ ...action.payload,
|
|
|
+ modalVisible: false,
|
|
|
+ };
|
|
|
},
|
|
|
-
|
|
|
- saveOperType(state, { payload }) {
|
|
|
- return { ...state, ...payload };
|
|
|
+ saveOperType(state, action) {
|
|
|
+ return { ...state, ...action.payload };
|
|
|
},
|
|
|
-
|
|
|
- saveSortResult(state, { payload: { resourceList } }) {
|
|
|
- const currentItem = { ...state.currentItem, resourceList };
|
|
|
- return { ...state, modalVisible: false, currentItem };
|
|
|
+ saveSortResult(state, action) {
|
|
|
+ return {
|
|
|
+ ...state,
|
|
|
+ currentItem: { ...state.currentItem, resourceList },
|
|
|
+ modalVisible: false,
|
|
|
+ };
|
|
|
},
|
|
|
-
|
|
|
- clearPage(state) {
|
|
|
+ initState(state) {
|
|
|
return { ...state, currentItem: {}, itemLoading: false };
|
|
|
}
|
|
|
}
|