diff --git a/build/plugins/html.ts b/build/plugins/html.ts
deleted file mode 100644
index cfa86bc..0000000
--- a/build/plugins/html.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { createHtmlPlugin } from 'vite-plugin-html'; // https://github.com/vbenjs/vite-plugin-html/blob/main/README.zh_CN.md
-
-export default (env: ImportMetaEnv) => {
- return createHtmlPlugin({
- minify: true, // 压缩HTML
- inject: {
- // 注入数据
- data: {
- title: env.VITE_APP_TITLE,
- },
- },
- });
-};
diff --git a/build/plugins/index.ts b/build/plugins/index.ts
index 70964ee..ff97e0d 100644
--- a/build/plugins/index.ts
+++ b/build/plugins/index.ts
@@ -1,7 +1,6 @@
import type { PluginOption } from 'vite';
import vue from './vue';
import compress from './compress';
-import html from './html';
import unocss from '@unocss/vite';
import visualizer from './visualizer';
import unplugin from './unplugin';
@@ -13,7 +12,7 @@ import mock from './mock';
* @return {*}
*/
export function setVitePlugins(env: ImportMetaEnv) {
- const plugins = [...vue, html(env), unocss(), ...unplugin, mock];
+ const plugins = [...vue, unocss(), ...unplugin, mock];
// 是否压缩
if (env.VITE_COMPRESS_OPEN === 'Y') {
plugins.push(compress(env));
diff --git a/index.html b/index.html
index 1a5f1c0..5e73499 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
-
<%= title %>
+ %VITE_APP_TITLE%
diff --git a/mock/module/user.ts b/mock/module/user.ts
index 8de0344..829350f 100644
--- a/mock/module/user.ts
+++ b/mock/module/user.ts
@@ -246,7 +246,7 @@ const userRoutes = [
{
name: 'docments',
path: '/docments',
- redirect: '/docments/not-found',
+ redirect: '/docments/vue',
meta: {
title: '外链文档',
requiresAuth: true,
@@ -317,7 +317,7 @@ const userRoutes = [
{
name: 'error',
path: '/error',
- redirect: '/error/not-found',
+ redirect: '/error/404',
meta: {
title: '异常页',
requiresAuth: true,
@@ -326,17 +326,8 @@ const userRoutes = [
},
children: [
{
- name: 'not-found',
- path: '/error/not-found',
- meta: {
- title: '404页',
- requiresAuth: true,
- icon: 'icon-park-outline:error',
- },
- },
- {
- name: 'not-permission',
- path: '/error/not-permission',
+ name: '403',
+ path: '/error/403',
meta: {
title: '403页',
requiresAuth: true,
@@ -344,8 +335,17 @@ const userRoutes = [
},
},
{
- name: 'service-error',
- path: '/error/service-error',
+ name: '404',
+ path: '/error/404',
+ meta: {
+ title: '404页',
+ requiresAuth: true,
+ icon: 'icon-park-outline:error',
+ },
+ },
+ {
+ name: '500',
+ path: '/error/500',
meta: {
title: '500页',
requiresAuth: true,
diff --git a/package.json b/package.json
index 77ff173..711c9bb 100644
--- a/package.json
+++ b/package.json
@@ -75,12 +75,11 @@
"mockjs": "^1.1.0",
"naive-ui": "^2.34.3",
"rollup-plugin-visualizer": "^5.9.0",
- "typescript": "^4.9.4",
+ "typescript": "^5.0.2",
"unplugin-icons": "^0.15.3",
"unplugin-vue-components": "^0.24.1",
- "vite": "^4.1.4",
+ "vite": "^4.2.1",
"vite-plugin-compression": "^0.5.1",
- "vite-plugin-html": "^3.2.0",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-svg-icons": "^2.0.1",
"vue-tsc": "^1.2.0"
diff --git a/src/layouts/components/tab/TabBar.vue b/src/layouts/components/tab/TabBar.vue
index 788c816..50e0b07 100644
--- a/src/layouts/components/tab/TabBar.vue
+++ b/src/layouts/components/tab/TabBar.vue
@@ -1,7 +1,18 @@
-
-
+
+
{{ item.title }}
- {{ item.meta.title }}
+
+ {{ item.meta.title }}
+
diff --git a/src/router/guard/index.ts b/src/router/guard/index.ts
index 6b7fbb6..792846a 100644
--- a/src/router/guard/index.ts
+++ b/src/router/guard/index.ts
@@ -1,11 +1,13 @@
import type { Router } from 'vue-router';
import { createPermissionGuard } from './permission';
import { useAppInfo } from '@/hooks';
+import { useRouteStore, useTabStore } from '@/store';
const { title } = useAppInfo();
+
export function setupRouterGuard(router: Router) {
- router.beforeEach(async (to, from) => {
+ router.beforeEach(async (to, from, next) => {
// 判断是否是外链,如果是直接打开网页并拦截跳转
if (to.meta.herf) {
window.open(to.meta.herf);
@@ -14,9 +16,20 @@ export function setupRouterGuard(router: Router) {
// 开始 loadingBar
window.$loadingBar?.start();
// 权限操作
- await createPermissionGuard(to, from);
-
+ await createPermissionGuard(to, from, next);
});
+
+ router.beforeResolve(async (to) => {
+ const routeStore = useRouteStore();
+ const tabStore = useTabStore();
+ // 设置菜单高亮
+ routeStore.setActiveMenu(to.meta.activeMenu ?? to.fullPath);
+ // 添加tabs
+ tabStore.addTab(to);
+ // 设置高亮标签;
+ tabStore.setCurrentTab(to.name as string);
+ })
+
router.afterEach((to) => {
// 修改网页标题
document.title = `${to.meta.title} - ${title}`;
diff --git a/src/router/guard/permission.ts b/src/router/guard/permission.ts
index 2c1851b..4c8cc59 100644
--- a/src/router/guard/permission.ts
+++ b/src/router/guard/permission.ts
@@ -1,54 +1,50 @@
import { RouteLocationNormalized, NavigationGuardNext } from 'vue-router';
import { getToken } from '@/utils/auth';
-import { useRouteStore, useTabStore } from '@/store';
+import { useRouteStore } from '@/store';
export async function createPermissionGuard(
to: RouteLocationNormalized,
from: RouteLocationNormalized,
+ next: NavigationGuardNext
) {
- console.log("🚀 ~ file: permission.ts:9 ~ to:", to)
-
const routeStore = useRouteStore();
- const tabStore = useTabStore();
// 判断有无TOKEN,登录鉴权
const isLogin = Boolean(getToken());
if (!isLogin) {
- const redirect = to.name === 'not-found' ? undefined : to.fullPath;
- return { path: '/login', query: { redirect } };
+ if (to.name == 'login') {
+ next()
+ }
+ if (to.name !== 'login') {
+ const redirect = to.name === '404' ? undefined : to.fullPath;
+ next({ path: '/login', query: { redirect } });
+ }
+ return false
}
// 判断路由有无进行初始化
if (!routeStore.isInitAuthRoute) {
await routeStore.initAuthRoute();
- }
-
- // 动态路由加载完回到根路由
- if (to.name === 'not-found' && to.redirectedFrom) {
- // 等待权限路由加载好了,回到之前的路由,否则404
- const path = to.redirectedFrom.fullPath;
- return { path, replace: true, query: to.query, hash: to.hash };
- }
-
- // 判断当前页是否在login,则定位去首页
- if (to.name === 'login') {
- return { path: '/appRoot' }
+ // 动态路由加载完回到根路由
+ if (to.name === '404' && to.redirectedFrom) {
+ // 等待权限路由加载好了,回到之前的路由,否则404
+ const path = to.redirectedFrom?.fullPath;
+ next({ path, replace: true, query: to.query, hash: to.hash });
+ return false;
+ }
}
// 权限路由已经加载,仍然未找到,重定向到404
- if (to.name === 'not-found') {
- return { name: 'not-found', replace: true };
+ // if (to.name === '404') {
+ // next({ name: '404', replace: true });
+ // return false;
+ // }
+
+ // 判断当前页是否在login,则定位去首页
+ if (to.name === 'login') {
+ next({ path: '/appRoot' })
+ return false;
}
- // 设置菜单高亮
- if (to.meta.activeMenu) {
- routeStore.setActiveMenu(to.meta.activeMenu);
- } else {
- routeStore.setActiveMenu(to.fullPath);
- }
-
- // 添加tabs
- tabStore.addTab(to);
- // 设置高亮标签;
- tabStore.setCurrentTab(to.name as string);
+ next()
}
diff --git a/src/router/routes/index.ts b/src/router/routes/index.ts
index 99f1a50..fec6f08 100644
--- a/src/router/routes/index.ts
+++ b/src/router/routes/index.ts
@@ -9,37 +9,6 @@ export const routes: RouteRecordRaw[] = [
redirect: '/appRoot',
component: BasicLayout,
children: [
- {
- path: '/not-found',
- name: 'not-found',
- component: () => import('@/views/error/not-found/index.vue'),
- meta: {
- title: '找不到页面',
- icon: 'icon-park-outline:ghost',
- },
- },
- {
- path: '/not-permission',
- name: 'not-permission',
- component: () => import('@/views/error/not-permission/index.vue'),
- meta: {
- title: '用户无权限',
- icon: 'icon-park-outline:error',
- },
- },
- {
- path: '/service-error',
- name: 'service-error',
- component: () => import('@/views/error/service-error/index.vue'),
- meta: {
- title: '服务器错误',
- icon: 'icon-park-outline:close-wifi',
- },
- },
- {
- path: '/:pathMatch(.*)*',
- redirect: '/not-found',
- },
],
},
{
@@ -50,4 +19,36 @@ export const routes: RouteRecordRaw[] = [
title: '登录',
},
},
+ {
+ path: '/403',
+ name: '403',
+ component: () => import('@/views/error/403/index.vue'),
+ meta: {
+ title: '用户无权限',
+ icon: 'icon-park-outline:error',
+ },
+ },
+ {
+ path: '/404',
+ name: '404',
+ component: () => import('@/views/error/404/index.vue'),
+ meta: {
+ title: '找不到页面',
+ icon: 'icon-park-outline:ghost',
+ },
+ },
+ {
+ path: '/500',
+ name: '500',
+ component: () => import('@/views/error/500/index.vue'),
+ meta: {
+ title: '服务器错误',
+ icon: 'icon-park-outline:close-wifi',
+ },
+ },
+ {
+ path: '/:pathMatch(.*)*',
+ redirect: '/404',
+ },
+
];
diff --git a/src/store/modules/route.ts b/src/store/modules/route.ts
index d3b951b..baaafa8 100644
--- a/src/store/modules/route.ts
+++ b/src/store/modules/route.ts
@@ -1,5 +1,5 @@
import { defineStore } from 'pinia';
-import { renderIcon, getUserInfo ,isEmpty} from '@/utils';
+import { renderIcon, getUserInfo} from '@/utils';
import { MenuOption } from 'naive-ui';
import { createDynamicRoutes } from '@/router/guard/dynamic';
import { router } from '@/router';
diff --git a/src/store/modules/tab.ts b/src/store/modules/tab.ts
index 025cf16..66a56ab 100644
--- a/src/store/modules/tab.ts
+++ b/src/store/modules/tab.ts
@@ -23,7 +23,7 @@ export const useTabStore = defineStore('tab-store', {
},
],
tabs: [],
- tabWhiteList: ['not-found', 'not-permission', 'service-error', 'login'],
+ tabWhiteList: ['404', '403', '500', 'login'],
currentTab: 'dashboard_workbench',
};
},
diff --git a/src/views/error/not-permission/index.vue b/src/views/error/403/index.vue
similarity index 100%
rename from src/views/error/not-permission/index.vue
rename to src/views/error/403/index.vue
diff --git a/src/views/error/not-found/index.vue b/src/views/error/404/index.vue
similarity index 100%
rename from src/views/error/not-found/index.vue
rename to src/views/error/404/index.vue
diff --git a/src/views/error/service-error/index.vue b/src/views/error/500/index.vue
similarity index 100%
rename from src/views/error/service-error/index.vue
rename to src/views/error/500/index.vue