reducers actions index(store) // todo.js import produce from 'immer' import { TODO_ADD,TODO_STATUS,TODO_DEL,TODO_EDIT } from '../actions' const initState = { list:[ {id:1,status:0,task:'吃饭'}, {id:2,status:0,task:'睡觉'}, {id:3,status:1,task:'游戏'}, {id:4,status:1,t...