You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
|
3 years ago
|
const getters = {
|
||
|
|
tag: state => state.tags.tag,
|
||
|
|
language: state => state.common.language,
|
||
|
|
website: state => state.common.website,
|
||
|
|
userInfo: state => state.user.userInfo,
|
||
|
|
colorName: state => state.common.colorName,
|
||
|
|
themeName: state => state.common.themeName,
|
||
|
|
isShade: state => state.common.isShade,
|
||
|
|
isCollapse: state => state.common.isCollapse,
|
||
|
|
keyCollapse: (state, getters) => getters.screen > 1 ? getters.isCollapse : false,
|
||
|
|
screen: state => state.common.screen,
|
||
|
|
isLock: state => state.common.isLock,
|
||
|
|
isFullScren: state => state.common.isFullScren,
|
||
|
|
isMenu: state => state.common.isMenu,
|
||
|
|
lockPasswd: state => state.common.lockPasswd,
|
||
|
|
tagList: state => state.tags.tagList,
|
||
|
|
tagWel: state => state.tags.tagWel,
|
||
|
|
token: state => state.user.token,
|
||
|
|
roles: state => state.user.roles,
|
||
|
|
permission: state => state.user.permission,
|
||
|
|
menu: state => state.user.menu,
|
||
|
|
menuId: state => state.user.menuId,
|
||
|
|
menuAll: state => state.user.menuAll,
|
||
|
|
logsList: state => state.logs.logsList,
|
||
|
|
logsLen: state => state.logs.logsList.length || 0,
|
||
|
|
logsFlag: (state, getters) => getters.logsLen === 0,
|
||
|
|
flowRoutes: state => state.dict.flowRoutes,
|
||
|
|
}
|
||
|
|
export default getters
|