From debedb6224e37c00517fb47a1724a334b57b408a Mon Sep 17 00:00:00 2001
From: Coffee-crocodile <1147347984@qq.com>
Date: Fri, 30 Sep 2022 16:09:01 +0800
Subject: [PATCH] =?UTF-8?q?feat(project):=20=E5=AE=8C=E5=96=84=E7=9B=91?=
=?UTF-8?q?=E6=8E=A7=E9=A1=B5=E5=86=85=E5=AE=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
mock/module/user.ts | 14 +--
src/components/custom/EIcon.vue | 2 +-
src/layouts/BasicLayout/index.vue | 21 +++-
src/views/dashboard/monitor/index.vue | 158 +++++++++++++++++++++++++-
src/views/test/test2/detail/index.vue | 2 +-
src/views/test/test2/index.vue | 10 +-
src/views/test/test3/index.vue | 11 +-
7 files changed, 190 insertions(+), 28 deletions(-)
diff --git a/mock/module/user.ts b/mock/module/user.ts
index 27c8bb0..4c4da44 100644
--- a/mock/module/user.ts
+++ b/mock/module/user.ts
@@ -19,7 +19,7 @@ const userRoutes = [
path: '/dashboard',
redirect: '/dashboard/workbench',
meta: {
- title: '分析页',
+ title: '仪表盘',
requiresAuth: true,
icon: 'icon-park-outline:analysis',
},
@@ -49,7 +49,7 @@ const userRoutes = [
path: '/test',
redirect: '/test/test1',
meta: {
- title: '测试专题',
+ title: '多级菜单演示',
requiresAuth: true,
icon: 'icon-park-outline:ambulance',
},
@@ -58,7 +58,7 @@ const userRoutes = [
name: 'test1',
path: '/test/test1',
meta: {
- title: '测试专题1',
+ title: '多级菜单1',
requiresAuth: true,
icon: 'icon-park-outline:alarm',
},
@@ -67,7 +67,7 @@ const userRoutes = [
name: 'test2',
path: '/test/test2',
meta: {
- title: '测试专题2',
+ title: '多级菜单2',
requiresAuth: true,
icon: 'icon-park-outline:pic',
},
@@ -76,7 +76,7 @@ const userRoutes = [
name: 'test2_detail',
path: '/test/test2/detail',
meta: {
- title: '测试专题2的详情页',
+ title: '多级菜单2的详情页',
requiresAuth: true,
icon: 'icon-park-outline:tool',
hide: true,
@@ -89,7 +89,7 @@ const userRoutes = [
name: 'test3',
path: '/test/test3',
meta: {
- title: '测试专题3',
+ title: '多级菜单3',
requiresAuth: true,
icon: 'icon-park-outline:tool',
},
@@ -98,7 +98,7 @@ const userRoutes = [
name: 'test4',
path: '/test/test3/test4',
meta: {
- title: '测试专题4',
+ title: '多级菜单3-1',
requiresAuth: true,
icon: 'icon-park-outline:tool',
},
diff --git a/src/components/custom/EIcon.vue b/src/components/custom/EIcon.vue
index 573b47e..119bf00 100644
--- a/src/components/custom/EIcon.vue
+++ b/src/components/custom/EIcon.vue
@@ -8,7 +8,7 @@
import { Icon } from '@iconify/vue';
const props = withDefaults(
defineProps<{
- icon: string;
+ icon?: string;
color?: string;
size?: number;
depth?: 1 | 2 | 3 | 4 | 5;
diff --git a/src/layouts/BasicLayout/index.vue b/src/layouts/BasicLayout/index.vue
index 9450fd5..f2c60c1 100644
--- a/src/layouts/BasicLayout/index.vue
+++ b/src/layouts/BasicLayout/index.vue
@@ -36,22 +36,31 @@