mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-19 17:56:39 +08:00
57 lines
1.0 KiB
TypeScript
57 lines
1.0 KiB
TypeScript
import {
|
|
IconUser,
|
|
IconDashboard,
|
|
IconOrderedList,
|
|
IconCalendar,
|
|
} from "@arco-design/web-vue/es/icon";
|
|
|
|
const menu = [
|
|
{
|
|
path: '/dashboard',
|
|
name: 'Dashboard',
|
|
meta: {
|
|
title: "仪表盘",
|
|
icon: IconDashboard
|
|
},
|
|
component: () => import('@/views/DashboardView.vue')
|
|
},
|
|
{
|
|
path: '/user',
|
|
name: 'User',
|
|
meta: {
|
|
title: "用户管理",
|
|
icon: IconUser,
|
|
},
|
|
component: () => import('@/views/User/UserContainer.vue')
|
|
},
|
|
{
|
|
path: '/order',
|
|
name: 'Order',
|
|
meta: {
|
|
title: "充值订单",
|
|
icon: IconOrderedList,
|
|
},
|
|
component: () => import('@/views/Order/OrderContainer.vue')
|
|
},
|
|
{
|
|
path: '/reward',
|
|
name: 'Reward',
|
|
meta: {
|
|
title: "众筹管理",
|
|
icon: IconCalendar,
|
|
},
|
|
component: () => import('@/views/Reward/RewardContainer.vue')
|
|
},
|
|
{
|
|
path: '/loginLog',
|
|
name: 'LoginLog',
|
|
meta: {
|
|
title: "登录日志",
|
|
icon: IconCalendar,
|
|
},
|
|
component: () => import('@/views/LoginLog.vue')
|
|
},
|
|
];
|
|
|
|
export default menu;
|