From c6aa06637aece19364b79480efaad4db29f8d351 Mon Sep 17 00:00:00 2001 From: Coffee-crocodile <1147347984@qq.com> Date: Wed, 17 Aug 2022 12:27:03 +0800 Subject: [PATCH] =?UTF-8?q?style(projects):=20=E4=BF=AE=E6=94=B9=E4=BA=86?= =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=A1=B5=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mock/module/user.ts | 73 +++++++++++++++++++++++++++++++++++++++ src/store/modules/auth.ts | 2 +- src/views/login/index.vue | 15 ++++---- 3 files changed, 81 insertions(+), 9 deletions(-) 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 @@