feat(custom): i

This commit is contained in:
2023-09-08 10:29:31 +08:00
parent 3b3cb7ba34
commit 363270378a
60 changed files with 1234 additions and 1342 deletions

26
src/views/order/route.js Normal file
View File

@@ -0,0 +1,26 @@
const Layout = () => import('@/layout/index.vue')
export default {
name: 'Order',
path: '/order',
component: Layout,
redirect: '/order_list',
meta: {
title: '订单管理',
icon: 'majesticons:compass-line',
order: 1,
// requireAuth: true,
// role: ['1'],
},
children: [
{
name: 'OrderList',
path: 'order_list',
component: () => import('./index/index.vue'),
meta: {
title: '订单列表',
icon: 'material-symbols:auto-awesome-outline-rounded',
},
},
],
}