27 lines
1.2 KiB
JavaScript
27 lines
1.2 KiB
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,
|
|
roles: state => state.user.roles,
|
|
visitedViews: state => state.tagsView.visitedViews,
|
|
cachedViews: state => state.tagsView.cachedViews,
|
|
permission_routers: state => state.permission.routers,
|
|
addRouters: state => state.permission.addRouters,
|
|
id: state => state.user.id,
|
|
processList_table: state => state.operationGuide.processList_table,
|
|
materialList_table: state => state.operationGuide.materialList_table,
|
|
pic: state => state.operationGuide.pic,
|
|
partAssemblyInformation: state => state.operationGuide.partAssemblyInformation,
|
|
engineValue: state => state.station.engineValue,
|
|
tighteningPosition: state => state.operationGuide.tighteningPosition,
|
|
smile: state => state.operationGuide.smile,
|
|
greenBoltInformation: state => state.operationGuide.greenBoltInformation,
|
|
account: state => state.user.account,
|
|
orderCompletion_table: state => state.orderCompletion.orderCompletion_table,
|
|
statusValue: state => state.station.statusValue,
|
|
tempDataObject: state => state.station.tempDataObject
|
|
}
|
|
export default getters
|