| 12345678910111213141516171819202122 |
- export default {
- namespace: 'chart',
- state: {
- list: []
- },
- reducer: {
- },
- effects: {
- *fetchList(action, { call, put }) {
- const res = yield call({
- url: '',
- body: ''
- });
- }
- },
- subscriptions: {
- setup({ dispatch, history }) {
- //dispatch({ type: 'fetchList' })
- }
- }
- }
|