我们发布啦
This commit is contained in:
23
admin/src/router/modules/order.js
Normal file
23
admin/src/router/modules/order.js
Normal file
@@ -0,0 +1,23 @@
|
||||
import Layout from '@/layout'
|
||||
|
||||
const orderRouter = {
|
||||
path: '/order',
|
||||
component: Layout,
|
||||
redirect: '/order/index',
|
||||
name: 'Order',
|
||||
alwaysShow: true,
|
||||
meta: {
|
||||
title: '订单',
|
||||
icon: 'clipboard'
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'index',
|
||||
component: () => import('@/views/order/index'),
|
||||
name: 'OrderIndex',
|
||||
meta: { title: '订单管理' }
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
export default orderRouter
|
||||
Reference in New Issue
Block a user