chore: 初始化平芝126KV总装线 OP 前端

This commit is contained in:
yexingqiang
2026-06-08 17:18:58 +08:00
commit 164857ec97
128 changed files with 57477 additions and 0 deletions

26
src/store/getters.js Normal file
View File

@@ -0,0 +1,26 @@
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