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