feat(projects): 修复了路由跳转问题,增加了新页面

This commit is contained in:
‘chen.home’ 2022-08-16 00:36:25 +08:00
parent 5b26d6c58e
commit d45812bf3b
12 changed files with 62 additions and 16 deletions

View File

@ -24,10 +24,10 @@ const userInfo = {
}, },
children: [ children: [
{ {
name: 'dashboard_console', name: 'dashboard_workbench',
path: '/dashboard/console', path: '/dashboard/workbench',
meta: { meta: {
title: '主控台', title: '工作台',
requiresAuth: true, requiresAuth: true,
icon: 'icon-park-outline:alarm', icon: 'icon-park-outline:alarm',
}, },

View File

@ -1,7 +1,6 @@
import { RouteRecordRaw } from 'vue-router'; import { RouteRecordRaw } from 'vue-router';
import { router } from '@/router'; import { router } from '@/router';
import { BasicLayout } from '@/layouts/index'; import { BasicLayout } from '@/layouts/index';
import { constantRoutes } from '../routes';
export async function setDynamicRoutes() { export async function setDynamicRoutes() {
const vueRoutes: RouteRecordRaw[] = [ const vueRoutes: RouteRecordRaw[] = [
@ -41,7 +40,26 @@ export async function setDynamicRoutes() {
requiresAuth: true, requiresAuth: true,
}, },
}, },
...constantRoutes, {
path: '/dashboard/workbench',
name: 'workbench',
component: () => import('@/views/dashboard/workbench/index.vue'),
meta: {
title: '工作台',
icon: 'icon-park-outline:music-list',
requiresAuth: true,
},
},
{
path: '/dashboard/monitor',
name: 'monitor',
component: () => import('@/views/dashboard/monitor/index.vue'),
meta: {
title: '控制页',
icon: 'icon-park-outline:music-list',
requiresAuth: true,
},
},
], ],
}, },
]; ];

View File

@ -24,9 +24,9 @@ export async function createPermissionGuard(
} }
return false; return false;
} }
// debugger;
// 有登录但是没有路由,初始化路由、侧边菜单等 // 有登录但是没有路由,初始化路由、侧边菜单等
await setDynamicRoutes(); // await setDynamicRoutes();
await routeStore.initAuthRoute(); await routeStore.initAuthRoute();
// 动态路由加载完回到根路由 // 动态路由加载完回到根路由
next({ name: 'root' }); next({ name: 'root' });

View File

@ -2,6 +2,7 @@ import type { App } from 'vue';
import { createRouter, createWebHistory, createWebHashHistory, RouteRecordRaw } from 'vue-router'; import { createRouter, createWebHistory, createWebHashHistory, RouteRecordRaw } from 'vue-router';
import { setupRouterGuard } from './guard'; import { setupRouterGuard } from './guard';
import { BasicLayout } from '@/layouts/index'; import { BasicLayout } from '@/layouts/index';
import { constantRoutes } from './routes';
const routes: RouteRecordRaw[] = [ const routes: RouteRecordRaw[] = [
{ {
@ -9,7 +10,7 @@ const routes: RouteRecordRaw[] = [
name: 'root', name: 'root',
redirect: '/test/test1', redirect: '/test/test1',
component: BasicLayout, component: BasicLayout,
children: [], children: [...constantRoutes],
}, },
{ {
path: '/login', path: '/login',

View File

@ -1,28 +1,30 @@
// import { BasicLayout } from '@/layouts/index'; /* 页面中的一些固定路由,错误页等 */
export const constantRoutes = [ export const constantRoutes = [
{ {
path: '/no-found', path: '/no-found',
name: 'not-found', name: 'not-found',
component: () => import('@/views/inherit-page/not-found/index.vue'), component: () => import('@/views/error/not-found/index.vue'),
meta: { meta: {
title: '找不到页面', title: '找不到页面',
icon: 'icon-park-outline:ghost',
}, },
}, },
{ {
path: '/no-permission', path: '/no-permission',
name: 'no-permission', name: 'no-permission',
component: () => import('@/views/inherit-page/not-permission/index.vue'), component: () => import('@/views/error/not-permission/index.vue'),
meta: { meta: {
title: '无权限', title: '无权限',
icon: 'icon-park-outline:error',
}, },
}, },
{ {
path: '/service-error', path: '/service-error',
name: 'service-error', name: 'service-error',
component: () => import('@/views/inherit-page/service-error/index.vue'), component: () => import('@/views/error/service-error/index.vue'),
meta: { meta: {
title: '服务器错误', title: '服务器错误',
icon: 'icon-park-outline:close-wifi',
}, },
}, },
{ {

View File

@ -25,9 +25,11 @@ export const useAuthStore = defineStore('auth-store', {
resetAuthStore() { resetAuthStore() {
const route = unref(router.currentRoute); const route = unref(router.currentRoute);
const { toLogin } = useAppRouter(false); const { toLogin } = useAppRouter(false);
const { resetRouteStore } = useRouteStore();
// 清除本地缓存 // 清除本地缓存
clearAuthStorage(); clearAuthStorage();
// 清空pinia // 清空路由、菜单等数据
resetRouteStore();
this.$reset(); this.$reset();
if (route.meta.requiresAuth) { if (route.meta.requiresAuth) {
toLogin(); toLogin();

View File

@ -1,7 +1,8 @@
import { defineStore } from 'pinia'; import { defineStore } from 'pinia';
import { renderIcon, getUserInfo } from '@/utils'; import { renderIcon, getUserInfo } from '@/utils';
import { MenuOption, radioGroupProps } from 'naive-ui'; import { MenuOption, radioGroupProps } from 'naive-ui';
// import { setDynamicRoutes } from '@/router/guard/dynamic'; import { setDynamicRoutes } from '@/router/guard/dynamic';
import { router } from '@/router';
interface RoutesStatus { interface RoutesStatus {
isInitAuthRoute: boolean; isInitAuthRoute: boolean;
@ -17,6 +18,14 @@ export const useRouteStore = defineStore('route-store', {
}; };
}, },
actions: { actions: {
resetRouteStore() {
this.resetRoutes();
this.$reset();
},
resetRoutes() {
/* 删除后面添加的路由 */
router.removeRoute('test');
},
async setUserRoutes() { async setUserRoutes() {
this.userRoutes = getUserInfo().userRoutes; this.userRoutes = getUserInfo().userRoutes;
}, },
@ -61,7 +70,7 @@ export const useRouteStore = defineStore('route-store', {
async initAuthRoute() { async initAuthRoute() {
await this.setMenus(); await this.setMenus();
// await setDynamicRoutes(); await setDynamicRoutes();
this.isInitAuthRoute = true; this.isInitAuthRoute = true;
}, },
}, },

View File

@ -0,0 +1,7 @@
<template>
<div>监控页</div>
</template>
<script setup lang="ts"></script>
<style scoped></style>

View File

@ -0,0 +1,7 @@
<template>
<div>工作台</div>
</template>
<script setup lang="ts"></script>
<style scoped></style>