feat(custom): i
This commit is contained in:
30
src/views/order/route.js
Normal file
30
src/views/order/route.js
Normal file
@@ -0,0 +1,30 @@
|
||||
const Layout = () => import('@/layout/index.vue')
|
||||
|
||||
export default {
|
||||
name: '订单管理',
|
||||
path: '/order',
|
||||
component: Layout,
|
||||
redirect: '/order_list',
|
||||
children: [
|
||||
{
|
||||
name: 'Orderlist',
|
||||
path: 'order_list',
|
||||
component: () => import('./index/index.vue'),
|
||||
meta: {
|
||||
title: '活动订单',
|
||||
icon: 'mdi:account-multiple',
|
||||
order: 10,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: 'Pointlist',
|
||||
path: 'point_list',
|
||||
component: () => import('./point/index.vue'),
|
||||
meta: {
|
||||
title: '积分订单',
|
||||
icon: 'mdi:account-multiple',
|
||||
order: 10,
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user