reducer.js 253 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 import * as common from './common-type'; // 首页表单数据 export const msgStatus = (state = false , action = {}) => { switch(action.type){ case common.MSGSTATUS: return action.value default: return state; } }