添加404界面,优化homeview代码可读性

This commit is contained in:
2024-09-12 20:29:45 +08:00
parent d41e43fcb8
commit 7b5dacf723
3 changed files with 44 additions and 2 deletions

View File

@@ -45,6 +45,11 @@ const router = createRouter({
component: () => import('../views/Console/Dashboard.vue') component: () => import('../views/Console/Dashboard.vue')
} }
], ],
},
{
path: '/:pathMatch(.*)*',
name: 'notFound',
component: () => import('../views/NotFound.vue')
} }
] ]
}) })

View File

@@ -8,8 +8,7 @@ onMounted(() => {
// 界面特效字体 // 界面特效字体
let nameElement = document.getElementById("my-name"); let nameElement = document.getElementById("my-name");
if (nameElement == null) { if (nameElement == null) {
console.error('未找到元素my-name') return console.error('未找到元素my-name')
return;
} }
let colorNum = 66; let colorNum = 66;
let colorNumReverse = false; let colorNumReverse = false;

View File

@@ -0,0 +1,38 @@
<script setup lang='ts'>
import { onMounted, onUnmounted, ref } from 'vue';
const containerHeight = ref('800px');
onMounted(async () => {
document.title = '404 不存在的页面';
containerHeight.value = window.innerHeight > 500 ? window.innerHeight -85 + 'px' : '390px';
})
onUnmounted(() => {
document.title = '特恩(TONE)';
})
</script>
<template>
<div class="bcc"></div>
<div class="content-container">
<el-empty id="404-notfound-el-empty" style="margin-bottom: 200px;" description="404 不存在的页面" />
</div>
</template>
<style scoped>
.bcc {
position: fixed;
z-index: -1;
background-color: #f6f8f9;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.content-container {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 600px;
margin: 0px auto;
padding: 0 20px;
height: v-bind(containerHeight);
}
</style>