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
605 B

6 years ago
/*路由表:销售管理*/
import Layout from '@/layout'
const router = {
path: '/sell',
component: Layout,
alwaysShow: true,
meta: {title: '销售管理', icon: 'sell'},
6 years ago
children: [
{
path: 'order',
name: 'sellOrder',
component: () => import('@/views/sell/order'),
meta: {title: '销售订单'}
},
{
path: 'outbound',
name: 'sellOutbound',
component: () => import('@/views/sell/outbound'),
meta: {title: '销售出库'}
}
]
}
export default router