diff --git a/src/router/index.js b/src/router/index.js index 2e65bf4..4b2ed92 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -5,6 +5,8 @@ Vue.use(Router) /* Layout */ import Layout from '@/layout' +import BoardIndex from '@/layout/boardIndex' +import ModelIndex from '@/layout/modelIndex' /** * Note: 路由配置项 @@ -70,7 +72,7 @@ export const constantRoutes = [ path: 'index', component: () => import('@/views/index_v1'), name: 'Index', - meta: { title: '首页', icon: 'dashboard', affix: true } + meta: {title: '首页', icon: 'dashboard', affix: true} } ] }, @@ -84,10 +86,102 @@ export const constantRoutes = [ path: 'profile', component: () => import('@/views/system/user/profile/index'), name: 'Profile', - meta: { title: '个人中心', icon: 'user' } + meta: {title: '个人中心', icon: 'user'} } ] - } + }, + { + path: '', + component: BoardIndex, + redirect: 'board', + meta: { + title: "看板管理", + icon: "chart", + }, + children: [ + { + path: 'Liner', + component: () => import('@/views/board/liner/index'), + name: 'Liner', + meta: {title: '内胆', icon: '404',} + }, + { + path: 'caseShell2', + name: 'CaseShell2', + component: () => import('@/views/board/caseShell/index2'), + meta: {title: '箱壳前后板', icon: 'dashboard',} + }, + { + path: 'foaming', + name: 'Foaming', + query: "{\"id\": 1}", + component: () => import('@/views/board/foaming/index'), + meta: {title: '一线箱体发泡', icon: 'dashboard',} + }, + { + path: 'foaming3', + name: 'Foaming3', + query: "{\"id\": 2}", + component: () => import('@/views/board/foaming/index'), + meta: {title: '二线箱体发泡', icon: 'dashboard',} + }, + { + path: 'foaming2', + name: 'Foaming2', + component: () => import('@/views/board/foaming/index2'), + meta: {title: '箱门匹配', icon: 'dashboard',} + }, + { + path: 'pourInto', + name: 'PourInto', + component: () => import('@/views/board/pourInto/index'), + meta: {title: '总装工序', icon: 'dashboard',} + }, + { + path: 'finalAssembly', + name: 'FinalAssembly', + component: () => import('@/views/board/finalAssembly/index'), + meta: {title: '总装', icon: 'dashboard',} + }, + { + path: 'scanDown', + name: 'ScanDown', + query: "{\"id\": 1}", + component: () => import('@/views/board/scanDown/index'), + meta: {title: '一线成品入库', icon: 'dashboard',} + }, + { + path: 'scanDown2', + name: 'ScanDown2', + query: "{\"id\": 2}", + component: () => import('@/views/board/scanDown/index'), + meta: {title: '二线成品入库', icon: 'dashboard',} + }, + { + path: 'week', + name: 'Week', + component: () => import('@/views/board/week/index'), + meta: {title: '综合看板', icon: 'dashboard',} + }, + ] + }, + { + path: 'model', + component: ModelIndex, + redirect: 'model', + meta: { + title: "参观大屏管理", + icon: "chart", + }, + children: [ + { + path: 'index', + component: () => import('@/views/model/model'), + name: 'index', + meta: {title: '模型', icon: '404',} + }, + ] + }, ] // 动态路由,基于用户权限动态去加载 @@ -102,7 +196,7 @@ export const dynamicRoutes = [ path: 'role/:userId(\\d+)', component: () => import('@/views/system/user/authRole'), name: 'AuthRole', - meta: { title: '分配角色', activeMenu: '/system/user' } + meta: {title: '分配角色', activeMenu: '/system/user'} } ] }, @@ -116,7 +210,7 @@ export const dynamicRoutes = [ path: 'user/:roleId(\\d+)', component: () => import('@/views/system/role/authUser'), name: 'AuthUser', - meta: { title: '分配用户', activeMenu: '/system/role' } + meta: {title: '分配用户', activeMenu: '/system/role'} } ] }, @@ -130,7 +224,7 @@ export const dynamicRoutes = [ path: 'index/:dictId(\\d+)', component: () => import('@/views/system/dict/data'), name: 'Data', - meta: { title: '字典数据', activeMenu: '/system/dict' } + meta: {title: '字典数据', activeMenu: '/system/dict'} } ] }, @@ -144,7 +238,7 @@ export const dynamicRoutes = [ path: 'index/:jobId(\\d+)', component: () => import('@/views/monitor/job/log'), name: 'JobLog', - meta: { title: '调度日志', activeMenu: '/monitor/job' } + meta: {title: '调度日志', activeMenu: '/monitor/job'} } ] }, @@ -158,7 +252,7 @@ export const dynamicRoutes = [ path: 'index/:tableId(\\d+)', component: () => import('@/views/tool/gen/editTable'), name: 'GenEdit', - meta: { title: '修改生成配置', activeMenu: '/tool/gen' } + meta: {title: '修改生成配置', activeMenu: '/tool/gen'} } ] }, @@ -172,7 +266,7 @@ export const dynamicRoutes = [ path: "index/:materialCode(\\d+)", component: () => import("@/views/production/baseBomInfo/childBom"), name: "childBom", - meta: { title: "查看生产子BOM信息", activeMenu: "/production/baseBomInfo" }, + meta: {title: "查看生产子BOM信息", activeMenu: "/production/baseBomInfo"}, }, ], }, @@ -186,7 +280,7 @@ export const dynamicRoutes = [ path: "index/:materialCode(\\d+)", component: () => import("@/views/base/orderBomInfo/childIndex"), name: "childBom", - meta: { title: "查看订单子BOM信息", activeMenu: "/base/orderBomInfo" }, + meta: {title: "查看订单子BOM信息", activeMenu: "/base/orderBomInfo"}, }, ], }, @@ -197,10 +291,10 @@ export const dynamicRoutes = [ permissions: ["base:qualityInspectionItem:list"], children: [ { - path:"index/:parentId(\\d+)", - component:() => import("@/views/base/qualityInspectionItem/childIndex"), - name:"childQuality", - meta: {title: "质检项缺陷信息",activeMenu: "/base/qualityInspectionItem"}, + path: "index/:parentId(\\d+)", + component: () => import("@/views/base/qualityInspectionItem/childIndex"), + name: "childQuality", + meta: {title: "质检项缺陷信息", activeMenu: "/base/qualityInspectionItem"}, }, ], }, @@ -211,10 +305,10 @@ export const dynamicRoutes = [ permissions: ["base:productLine:list"], children: [ { - path:"index/:productLineCode", - component:() => import("@/views/base/productStation/index"), - name:"childStation", - meta: {title: "工位信息",activeMenu: "/base/productStation"}, + path: "index/:productLineCode", + component: () => import("@/views/base/productStation/index"), + name: "childStation", + meta: {title: "工位信息", activeMenu: "/base/productStation"}, }, ], }, @@ -225,10 +319,10 @@ export const dynamicRoutes = [ permissions: ["base:processStation:list"], children: [ { - path:"index/:processCode", - component:() => import("@/views/base/productStation/index"), - name:"childStation", - meta: {title: "工位信息",activeMenu: "/base/productStation"}, + path: "index/:processCode", + component: () => import("@/views/base/productStation/index"), + name: "childStation", + meta: {title: "工位信息", activeMenu: "/base/productStation"}, }, ], }, @@ -239,10 +333,10 @@ export const dynamicRoutes = [ permissions: ["base:storeInfo:list"], children: [ { - path:"index/:storeCode", - component:() => import("@/views/base/spaceInfo/index"), - name:"childSpaceInfo", - meta: {title: "货道信息",activeMenu: "/base/spaceInfo"}, + path: "index/:storeCode", + component: () => import("@/views/base/spaceInfo/index"), + name: "childSpaceInfo", + meta: {title: "货道信息", activeMenu: "/base/spaceInfo"}, }, ], }, @@ -253,10 +347,10 @@ export const dynamicRoutes = [ permissions: ["base:storeInfo:list"], children: [ { - path:"index/:storeCode", - component:() => import("@/views/report/inventoryStatistics/index"), - name:"inventoryStatistics", - meta: {title: "库存统计",activeMenu: "/report/inventoryStatistics"}, + path: "index/:storeCode", + component: () => import("@/views/report/inventoryStatistics/index"), + name: "inventoryStatistics", + meta: {title: "库存统计", activeMenu: "/report/inventoryStatistics"}, }, ], }, @@ -267,10 +361,10 @@ export const dynamicRoutes = [ permissions: ["base:processStation:list"], children: [ { - path:"index/:productLineCode", - component:() => import("@/views/base/processStation/index"), - name:"SubordinateWorkers", - meta: {title: "工序信息",activeMenu: "/base/processStation"}, + path: "index/:productLineCode", + component: () => import("@/views/base/processStation/index"), + name: "SubordinateWorkers", + meta: {title: "工序信息", activeMenu: "/base/processStation"}, }, ], }, @@ -290,6 +384,6 @@ Router.prototype.replace = function push(location) { export default new Router({ mode: 'history', // 去掉url中的# - scrollBehavior: () => ({ y: 0 }), + scrollBehavior: () => ({y: 0}), routes: constantRoutes }) diff --git a/src/store/modules/permission.js b/src/store/modules/permission.js index 6bd4bff..15f7ad0 100644 --- a/src/store/modules/permission.js +++ b/src/store/modules/permission.js @@ -40,6 +40,8 @@ const permission = { const rdata = JSON.parse(JSON.stringify(res.data)) const sidebarRoutes = filterAsyncRouter(sdata) const rewriteRoutes = filterAsyncRouter(rdata, false, true) + console.log('sidebarRoutes',sidebarRoutes) + console.log('rewriteRoutes',rewriteRoutes) const asyncRoutes = filterDynamicRoutes(dynamicRoutes); rewriteRoutes.push({ path: '*', redirect: '/404', hidden: true }) router.addRoutes(asyncRoutes); @@ -56,7 +58,7 @@ const permission = { // 遍历后台传来的路由字符串,转换为组件对象 function filterAsyncRouter(asyncRouterMap, lastRouter = false, type = false) { - return asyncRouterMap.filter(route => { + let data = asyncRouterMap.filter(route => { if (type && route.children) { route.children = filterChildren(route.children) } @@ -86,6 +88,8 @@ function filterAsyncRouter(asyncRouterMap, lastRouter = false, type = false) { } return true }) + console.log('data',data) + return data } function filterChildren(childrenMap, lastRouter = false) { diff --git a/vue.config.js b/vue.config.js index 17cbf22..da5e546 100644 --- a/vue.config.js +++ b/vue.config.js @@ -37,6 +37,7 @@ module.exports = { [process.env.VUE_APP_BASE_API]: { // target: `http://10.11.43.2:8080`, target: `http://localhost:8080`, + // target: `http://localhost:6061`, changeOrigin: true, pathRewrite: { ['^' + process.env.VUE_APP_BASE_API]: ''