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.
26 lines
626 B
26 lines
626 B
|
6 years ago
|
/*路由表:采购管理*/
|
||
|
|
import Layout from '@/layout'
|
||
|
|
|
||
|
|
const router = {
|
||
|
|
path: '/purchase',
|
||
|
|
component: Layout,
|
||
|
|
alwaysShow: true,
|
||
|
6 years ago
|
meta: {title: '采购管理', icon: 'shopping'},
|
||
|
6 years ago
|
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
|