hr/src/store/getters.js
jiutianzhiyu 24b3164643 角色管理:
1. 表格渲染
2. 分页功能
公司信息
1. 表单渲染
2021-03-29 22:58:41 +08:00

19 lines
560 B
JavaScript

// const getters = {
// sidebar: state => state.app.sidebar,
// device: state => state.app.device,
// token: state => state.user.token,
// avatar: state => state.user.avatar,
// name: state => state.user.name
// }
// export default getters
const getters = {
sidebar: state => state.app.sidebar,
device: state => state.app.device,
token: state => state.user.token,
name: state => state.user.userInfo.username,
staffPhoto: state => state.user.userInfo.staffPhoto,
companyId: state => state.user.userInfo.companyId
}
export default getters