import Layout from '@/page/index/' export default [ { path: '/info', component: Layout, redirect: '/info/index', children: [ { path: 'index', name: '个人信息', component: () => import(/* webpackChunkName: "page" */ '@/views/admin/user/info') } ] }, { path: '/activti', component: Layout, redirect: '/activti/detail', children: [ { path: 'detail/:id', component: () => import(/* webpackChunkName: "views" */ '@/views/activiti/detail') } ] }, { path: '/technology/operation', component: Layout, children: [ { path: 'operation-form', name: 'operationForm', component: () => import('@/views/technology/operation/operation-form'), meta: { keepAlive: false, isTab: false, isAuth: false } } ] }, { path: '/technology/routing', component: Layout, children: [ { path: 'routing-form', name: 'routingForm', component: () => import(/* webpackChunkName: "views" */ '@/views/technology/routing/routing-form'), meta: { keepAlive: false, isTab: false, isAuth: true } } ] }, { path: '/technology/single-structure', component: Layout, children: [ { path: 'single-structure-form', name: 'singleStructureForm', component: () => import(/* webpackChunkName: "views" */ '@/views/technology/structure/single-structure-form'), meta: { keepAlive: false, isTab: false, isAuth: false } } ] }, { path: '/plan/manufacturingorder', component: Layout, children: [ { path: 'productorder-form', name: 'productorderForm', component: () => import(/* webpackChunkName: "views" */ '@/views/plan/manufacturingorder/productorder-form'), meta: { keepAlive: false, isTab: false, isAuth: false } } ] }, { path: '/technology/completeproductstructure', component: Layout, children: [ { path: 'completeproductstructure-form', name: 'completeProductStructure', component: () => import('@/views/technology/completeproductstructure/completeproductstructure-form'), meta: { keepAlive: false, isTab: false, isAuth: false } } ] }, { path: '/technology/document', component: Layout, children: [ { path: 'document-form', name: 'documentForm', component: () => import(/* webpackChunkName: "views" */ '@/views/technology/document/document-form'), meta: { keepAlive: false, isTab: false, isAuth: false } } ] }, { path: '/quality/testplan', component: Layout, children: [ { path: 'testplan-form', name: 'testplanForm', component: () => import(/* webpackChunkName: "views" */ '@/views/quality/testplan/testplan-form'), meta: { keepAlive: false, isTab: false, isAuth: false } } ] }, { path: '/quality/newReport', component: Layout, children: [ { path: 'form', name: 'newReportForm', component: () => import(/* webpackChunkName: "views" */ '@/views/quality/newReport/ReportForm'), meta: { keepAlive: false, isTab: false, isAuth: false } } ] }, { path: '/warehouse/escort', component: Layout, children: [ { path: 'escort-form', name: 'escortForm', component: () => import('@/views/warehouse/escort/escort-form'), meta: { keepAlive: false, isTab: false, isAuth: false } } ] }, { path: '/warehouse/checkdetail', component: Layout, children: [ { path: 'check-detail', name: 'checkDetail', component: () => import(/* webpackChunkName: "views" */ '@/views/warehouse/check/check-detail'), meta: { keepAlive: false, isTab: false, isAuth: true } } ] }, { path: '/plan/customer', component: Layout, children: [ { path: 'customer_form', name: 'customerForm', component: () => import('@/views/plan/customer/customer-form.vue'), meta: { keepAlive: false, isTab: false, isAuth: false } } ] } /*, { path: '/product/workbench', component: Layout, children: [{ path: 'workstationoperate-form', name:'workstationoperateForm', component: () => import(/!* webpackChunkName: "views" *!/ '@/views/product/workbench/workstationoperate-form'), meta: { keepAlive: false, isTab: false, isAuth: false } }] } */ ]