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 @@