From 025410c4785a4761c84a564bfb30a71623d61ba8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=98chen=2Ehome=E2=80=99?= <1147347984@qq.com> Date: Thu, 18 Aug 2022 22:38:46 +0800 Subject: [PATCH] =?UTF-8?q?feat(components):=20=E5=A2=9E=E5=8A=A0=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E9=A1=B5=E7=BB=84=E4=BB=B6=EF=BC=8C=E7=BE=8E=E5=8C=96?= =?UTF-8?q?=E5=8E=9F=E6=9C=89=E9=94=99=E8=AF=AF=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/svg/error-403.svg | 1 + src/assets/svg/error-404.svg | 1 + src/assets/svg/error-500.svg | 1 + src/components/common/ErrorTip.vue | 21 +++++++++++++++++++++ src/layouts/components/sider/Logo.vue | 2 +- src/router/routes/index.ts | 2 +- src/store/modules/app.ts | 2 +- src/views/error/not-found/index.vue | 2 +- src/views/error/not-permission/index.vue | 2 +- src/views/error/service-error/index.vue | 2 +- 10 files changed, 30 insertions(+), 6 deletions(-) create mode 100644 src/assets/svg/error-403.svg create mode 100644 src/assets/svg/error-404.svg create mode 100644 src/assets/svg/error-500.svg create mode 100644 src/components/common/ErrorTip.vue diff --git a/src/assets/svg/error-403.svg b/src/assets/svg/error-403.svg new file mode 100644 index 0000000..504a8a1 --- /dev/null +++ b/src/assets/svg/error-403.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/svg/error-404.svg b/src/assets/svg/error-404.svg new file mode 100644 index 0000000..ff6ca1f --- /dev/null +++ b/src/assets/svg/error-404.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/svg/error-500.svg b/src/assets/svg/error-500.svg new file mode 100644 index 0000000..3f545eb --- /dev/null +++ b/src/assets/svg/error-500.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/common/ErrorTip.vue b/src/components/common/ErrorTip.vue new file mode 100644 index 0000000..461da7a --- /dev/null +++ b/src/components/common/ErrorTip.vue @@ -0,0 +1,21 @@ + + + + + diff --git a/src/layouts/components/sider/Logo.vue b/src/layouts/components/sider/Logo.vue index 525f81b..aa8ffe7 100644 --- a/src/layouts/components/sider/Logo.vue +++ b/src/layouts/components/sider/Logo.vue @@ -8,8 +8,8 @@ diff --git a/src/router/routes/index.ts b/src/router/routes/index.ts index 30404d4..ca44484 100644 --- a/src/router/routes/index.ts +++ b/src/router/routes/index.ts @@ -14,7 +14,7 @@ export const constantRoutes = [ name: 'no-permission', component: () => import('@/views/error/not-permission/index.vue'), meta: { - title: '无权限', + title: '用户无权限', icon: 'icon-park-outline:error', }, }, diff --git a/src/store/modules/app.ts b/src/store/modules/app.ts index b8821b7..782c0f8 100644 --- a/src/store/modules/app.ts +++ b/src/store/modules/app.ts @@ -53,7 +53,7 @@ export const useAppStore = defineStore('app-store', { * @param {number} delay - 延迟毫秒数 * @return {*} */ - async reloadPage(delay = 100) { + async reloadPage(delay = 600) { this.loadFlag = false; await nextTick(); if (delay) { diff --git a/src/views/error/not-found/index.vue b/src/views/error/not-found/index.vue index 51432cc..bc8d521 100644 --- a/src/views/error/not-found/index.vue +++ b/src/views/error/not-found/index.vue @@ -1,5 +1,5 @@ diff --git a/src/views/error/not-permission/index.vue b/src/views/error/not-permission/index.vue index 5b2efd8..f6ba8e5 100644 --- a/src/views/error/not-permission/index.vue +++ b/src/views/error/not-permission/index.vue @@ -1,5 +1,5 @@ diff --git a/src/views/error/service-error/index.vue b/src/views/error/service-error/index.vue index 3a91663..4b70956 100644 --- a/src/views/error/service-error/index.vue +++ b/src/views/error/service-error/index.vue @@ -1,5 +1,5 @@