diff --git a/mock/module/user.ts b/mock/module/user.ts index f59d610..874fc6b 100644 --- a/mock/module/user.ts +++ b/mock/module/user.ts @@ -5,6 +5,79 @@ const Random = Mock.Random; const token = Random.string('upper', 32, 32); +const routeData = { + admin: [ + { + name: 'dashboard', + path: '/dashboard', + meta: { + title: '分析页', + requiresAuth: true, + icon: 'icon-park-outline:analysis', + }, + children: [ + { + name: 'dashboard_workbench', + path: '/dashboard/workbench', + meta: { + title: '工作台', + requiresAuth: true, + icon: 'icon-park-outline:alarm', + }, + }, + { + name: 'dashboard_monitor', + path: '/dashboard/monitor', + meta: { + title: '监控页', + requiresAuth: true, + icon: 'icon-park-outline:anchor', + }, + }, + ], + }, + { + name: 'test', + path: '/test', + meta: { + title: '测试专题', + requiresAuth: true, + icon: 'icon-park-outline:ambulance', + }, + children: [ + { + name: 'test1', + path: '/test/test1', + meta: { + title: '测试专题1', + requiresAuth: true, + icon: 'icon-park-outline:alarm', + }, + }, + { + name: 'test2', + path: '/test/test2', + meta: { + title: '测试专题2', + requiresAuth: true, + icon: 'icon-park-outline:pic', + }, + }, + { + name: 'test3', + path: '/test/test3', + meta: { + title: '测试专题3', + requiresAuth: true, + icon: 'icon-park-outline:tool', + }, + }, + ], + }, + ], + user: [], +}; + const userInfo = { userId: '1', userName: 'admin', diff --git a/src/store/modules/auth.ts b/src/store/modules/auth.ts index 2e5219d..8a32e71 100644 --- a/src/store/modules/auth.ts +++ b/src/store/modules/auth.ts @@ -64,7 +64,7 @@ export const useAuthStore = defineStore('auth-store', { // 触发用户提示 window.$notification?.success({ title: '登录成功!', - content: `欢迎回来,${this.userInfo.realName}!`, + content: `欢迎回来😊,${this.userInfo.realName}!`, duration: 3000, }); return; diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 732cdba..1f84de4 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -1,12 +1,11 @@