pageState.js
381 Bytes
import * as types from '../constants/ActionTypes';
import createReducer from './reducerFactory';
const initialState = {
personSocialList :{},
personSocial :{},
personSocialDel :{},
orderList :{},
socialOrderDetail :{},
personDetail :{},
pageState :''
};
export default createReducer(initialState,[
'LOAD_PAGE_STATE',
'CHANGE_PAGE_STATE'
]);