mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
feat(components): 增加错误页组件,美化原有错误页
This commit is contained in:
parent
6ed4a16291
commit
025410c478
1
src/assets/svg/error-403.svg
Normal file
1
src/assets/svg/error-403.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 60 KiB |
1
src/assets/svg/error-404.svg
Normal file
1
src/assets/svg/error-404.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 71 KiB |
1
src/assets/svg/error-500.svg
Normal file
1
src/assets/svg/error-500.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 41 KiB |
21
src/components/common/ErrorTip.vue
Normal file
21
src/components/common/ErrorTip.vue
Normal file
@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<div class="flex-col-center h-800px">
|
||||
<img v-if="type === '403'" src="@/assets/svg/error-403.svg" alt="" class="w-1/3" />
|
||||
<img v-if="type === '404'" src="@/assets/svg/error-404.svg" alt="" class="w-1/3" />
|
||||
<img v-if="type === '500'" src="@/assets/svg/error-500.svg" alt="" class="w-1/3" />
|
||||
<n-button type="primary" @click="toRoot">回到首页</n-button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useAppRouter } from '@/hook';
|
||||
|
||||
type TipType = '403' | '404' | '500';
|
||||
defineProps<{
|
||||
/** 异常类型 403 404 500 */
|
||||
type: TipType;
|
||||
}>();
|
||||
const { toRoot } = useAppRouter();
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped></style>
|
@ -8,8 +8,8 @@
|
||||
<script setup lang="ts">
|
||||
import { useAppStore } from '@/store';
|
||||
import { useAppRouter } from '@/hook';
|
||||
const appStore = useAppStore();
|
||||
const { toRoot } = useAppRouter();
|
||||
const appStore = useAppStore();
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
|
@ -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',
|
||||
},
|
||||
},
|
||||
|
@ -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) {
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div>404</div>
|
||||
<ErrorTip type="404" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts"></script>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div>403</div>
|
||||
<ErrorTip type="403" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts"></script>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div>500</div>
|
||||
<ErrorTip type="500" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts"></script>
|
||||
|
Loading…
x
Reference in New Issue
Block a user