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.
20 lines
476 B
20 lines
476 B
/*路由表:库存管理*/
|
|
import Layout from '@/layout'
|
|
import {lazyLoadView} from "@/router/util"
|
|
|
|
const router = {
|
|
path: '/stock',
|
|
component: Layout,
|
|
alwaysShow: true,
|
|
meta: {title: '库存管理', icon: 'stock'},
|
|
children: [
|
|
{
|
|
path: 'current',
|
|
name: 'currentStock',
|
|
component: lazyLoadView(import('@/view/stock/current')),
|
|
meta: {title: '当前库存'}
|
|
}
|
|
]
|
|
}
|
|
|
|
export default router
|
|
|