123456789101112131415161718192021222324252627 |
- import { A1tableType } from "@/types";
- // 初始化状态
- const initState = {
- // 列表数据
- tableInfo: {
- list: [] as A1tableType[],
- total: 0,
- },
- };
- // 定义 action 类型
- type Props = {
- type: "A1/getList";
- payload: { list: A1tableType[]; total: number };
- };
- // 频道 reducer
- export default function reducerFu(state = initState, action: Props) {
- switch (action.type) {
- // 获取列表数据
- case "A1/getList":
- return { ...state, tableInfo: action.payload };
- default:
- return state;
- }
- }
|