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.

15 lines
565 B

2 months ago
const getters = {
token: state => state.user.token,
userInfo: state => state.user.userInfo,
dictionaryList: state => state.base.dictionaryList,
departmentList: state => state.base.departmentList,
positionList: state => state.base.positionList,
positionTree: state => state.base.positionTree,
relationData: state => state.base.relationData,
roleList: state => state.base.roleList,
badgeNum: state => state.chat.badgeNum,
msgInfo: state => state.chat.msgInfo,
groupList: state => state.base.groupList,
cid: state => state.user.cid
}
export default getters