You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
626 B

/*路由表:采购管理*/
import Layout from '@/layout'
const router = {
path: '/purchase',
component: Layout,
alwaysShow: true,
meta: {title: '采购管理', icon: 'shopping'},
children: [
{
path: 'order',
name: 'purchaseOrder',
component: () => import('@/views/purchase/order'),
meta: {title: '采购订单'}
},
{
path: 'inbound',
name: 'purchaseInbound',
component: () => import('@/views/purchase/inbound'),
meta: {title: '采购入库'}
}
]
}
export default router