49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
const Layout = () => import('@/layout/index.vue')
|
|
|
|
export default {
|
|
name: 'Order',
|
|
path: '/order',
|
|
component: Layout,
|
|
redirect: 'gy_list',
|
|
meta: {
|
|
title: '订单管理',
|
|
icon: 'majesticons:compass-line',
|
|
order: 10,
|
|
},
|
|
children: [
|
|
{
|
|
name: 'gyList',
|
|
path: 'gy_list',
|
|
component: () => import('./index1/index.vue'),
|
|
meta: {
|
|
// requireAuth: true,
|
|
// role: ['1'],
|
|
title: '订单列表',
|
|
icon: 'material-symbols:auto-awesome-outline-rounded',
|
|
},
|
|
},
|
|
{
|
|
name: 'pendingList',
|
|
path: 'pending_list',
|
|
component: () => import('./index/index.vue'),
|
|
meta: {
|
|
// requireAuth: true,
|
|
title: '后结订单',
|
|
// role: ['2'],
|
|
icon: 'material-symbols:auto-awesome-outline-rounded',
|
|
},
|
|
},
|
|
{
|
|
name: 'pendingData',
|
|
path: 'pending_data',
|
|
component: () => import('./pengding_order_data/index.vue'),
|
|
meta: {
|
|
// requireAuth: true,
|
|
title: '后结统计',
|
|
// role: ['2'],
|
|
icon: 'material-symbols:auto-awesome-outline-rounded',
|
|
},
|
|
},
|
|
],
|
|
}
|