refactor(ui): 优化

This commit is contained in:
廖彦棋
2024-03-08 09:12:39 +08:00
parent 057cc1e8a6
commit 88b956cf98
9 changed files with 72 additions and 55 deletions

View File

@@ -3,6 +3,9 @@ import {
IconDashboard,
IconOrderedList,
IconCalendar,
IconHeartFill,
IconCodeSquare,
IconMessage,
IconSettings,
IconUserGroup,
IconLock,
@@ -80,16 +83,25 @@ const menu = [
name: "Reward",
meta: {
title: "众筹管理",
icon: IconCalendar,
icon: IconHeartFill,
},
component: () => import("@/views/Reward/RewardContainer.vue"),
},
{
path: "/functions",
name: "Functions",
meta: {
title: "函数管理",
icon: IconCodeSquare,
},
component: () => import("@/views/Functions/FunctionsContainer.vue"),
},
{
path: "/chats",
name: "Chats",
meta: {
title: "对话管理",
icon: IconCalendar,
icon: IconMessage,
},
component: () => import("@/views/Chats/ChatsContainer.vue"),
},