From 4d0dcf16953a0654f1171d42002bfdf39b45dc21 Mon Sep 17 00:00:00 2001 From: "chen.home" <1147347984@qq.com> Date: Tue, 21 Mar 2023 23:46:07 +0800 Subject: [PATCH] =?UTF-8?q?build(build):=20=E7=A7=BB=E9=99=A4vite-plugin-h?= =?UTF-8?q?tml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/plugins/html.ts | 13 -- build/plugins/index.ts | 3 +- index.html | 2 +- mock/module/user.ts | 30 +-- package.json | 5 +- src/layouts/components/tab/TabBar.vue | 199 ++++++++++-------- src/router/guard/index.ts | 19 +- src/router/guard/permission.ts | 58 +++-- src/router/routes/index.ts | 63 +++--- src/store/modules/route.ts | 2 +- src/store/modules/tab.ts | 2 +- .../error/{not-permission => 403}/index.vue | 0 src/views/error/{not-found => 404}/index.vue | 0 .../error/{service-error => 500}/index.vue | 0 14 files changed, 202 insertions(+), 194 deletions(-) delete mode 100644 build/plugins/html.ts rename src/views/error/{not-permission => 403}/index.vue (100%) rename src/views/error/{not-found => 404}/index.vue (100%) rename src/views/error/{service-error => 500}/index.vue (100%) 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 @@