This commit is contained in:
2024-03-01 20:28:14 +08:00
commit 076c21dc36
491 changed files with 84482 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
// Actions
const CHANGE_MENU_ITEM = 'yapi/menu/CHANGE_MENU_ITEM';
// Reducer
const initialState = {
curKey: '/' + window.location.hash.split('/')[1]
};
export default (state = initialState, action) => {
if (action.type === CHANGE_MENU_ITEM) {
return {
...state,
curKey: action.data
};
} else {
return state;
}
};
// Action Creators
export function changeMenuItem(curKey) {
return {
type: CHANGE_MENU_ITEM,
data: curKey
};
}