feat(ui): 新增系统设置

This commit is contained in:
廖彦棋
2024-03-07 17:24:50 +08:00
parent a0c06e40a4
commit 606fb498e1
11 changed files with 452 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ import {
IconDashboard,
IconOrderedList,
IconCalendar,
IconSettings,
} from "@arco-design/web-vue/es/icon";
const menu = [
@@ -60,6 +61,15 @@ const menu = [
},
component: () => import('@/views/Chats/ChatsContainer.vue')
},
{
path: '/system',
name: 'System',
meta: {
title: "系统设置",
icon: IconSettings,
},
component: () => import('@/views/System/SystemContainer.vue')
},
{
path: '/loginLog',
name: 'LoginLog',