UnisKB/ui/src/views/404/index.vue

49 lines
1.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template >
<el-row class="not-found-container">
<el-col class="img" :span="12">
</el-col>
<el-col class="message-container" :span="12">
<div class="title">404</div>
<div class="message">很抱歉您要访问的页面地址有误,或者该页面不存在</div>
<div class="operate"><el-button type="primary" @click="router.push('/')"></el-button></div>
</el-col>
</el-row>
</template>
<script setup lang="ts">
import { useRouter } from 'vue-router';
const router = useRouter()
</script>
<style lang="scss" scoped>
.not-found-container {
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
.img {
background-image: url('@/assets/404.png');
background-size: 100% 100%;
width: 50%;
height: 100%;
}
.message-container {
color: var(--app-text-color-primary);
.title {
font-size: 50px;
font-weight: 500;
}
.message {
font-size: 20px;
margin: 50px 0 20px 0;
}
}
}
</style>