main.js 259 B

1234567891011121314
  1. import { routerRedux } from 'dva/router'
  2. export default {
  3. namespace: 'main',
  4. state: {
  5. },
  6. reducers: {
  7. },
  8. effects: {
  9. * redirect (action, { put }) {
  10. yield put(routerRedux.push(action.path || '/'));
  11. },
  12. }
  13. };