train.js
919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import * as types from '../constants/ActionTypes'
const initialState = {
getTrainVideoListData: [],
getTrainVideoDetailData:{},
getTrainListData:[],
getTrainDetailData:[],
}
export default function environment(state = initialState, action) {
switch (action.type) {
case types.GETTRAINVIDEOLIST:
return Object.assign({}, state, {
getTrainVideoListData: action.getTrainVideoListData
})
break
case types.GETTRAINVIDEODETAIL:
return Object.assign({}, state, {
getTrainVideoDetailData: action.getTrainVideoDetailData
})
break
case types.GETTRAINLIST:
return Object.assign({}, state, {
getTrainListData: action.getTrainListData
})
break
case types.GETTRAINDETAIL:
return Object.assign({}, state, {
getTrainDetailData: action.getTrainDetailData
})
break
default:
return state
}
}