2023-11-09 13:36:21 +08:00
|
|
|
import { configureStore } from "@reduxjs/toolkit";
|
2023-11-09 16:26:00 +08:00
|
|
|
import kilnReducer from "./features/kilnSlice";
|
2023-11-09 17:01:25 +08:00
|
|
|
import fireReducer from "./features/fireSlice";
|
2023-11-10 10:09:50 +08:00
|
|
|
import fanFrequenceReducer from "./features/fanFrequenceSlice";
|
2023-11-30 16:40:02 +08:00
|
|
|
import combustionAirReducer from "./features/combustionAirSlice";
|
2023-11-10 10:09:50 +08:00
|
|
|
import gasReducer from "./features/gasSlice";
|
2023-12-01 11:34:54 +08:00
|
|
|
import temperatureReducer from "./features/temperatureSlice";
|
2023-11-09 13:36:21 +08:00
|
|
|
|
|
|
|
export const store = configureStore({
|
|
|
|
reducer: {
|
2023-11-30 16:40:02 +08:00
|
|
|
// 窑炉信息
|
2023-11-09 16:26:00 +08:00
|
|
|
kiln: kilnReducer,
|
2023-11-30 16:40:02 +08:00
|
|
|
// 火向信息
|
2023-11-09 17:01:25 +08:00
|
|
|
fireInfo: fireReducer,
|
2023-11-30 16:40:02 +08:00
|
|
|
// 风机运行频率
|
2023-11-10 10:09:50 +08:00
|
|
|
fanFrequence: fanFrequenceReducer,
|
2023-11-30 16:40:02 +08:00
|
|
|
// 天然气流量
|
2023-12-01 09:31:44 +08:00
|
|
|
natGas: gasReducer,
|
2023-11-30 16:40:02 +08:00
|
|
|
// 助燃风流量
|
|
|
|
combustionAir: combustionAirReducer,
|
2023-12-01 11:34:54 +08:00
|
|
|
// 温度
|
|
|
|
temperature: temperatureReducer,
|
2023-11-09 13:36:21 +08:00
|
|
|
},
|
|
|
|
});
|