wms-antdvue/.svn/pristine/42/42371e8a8924d057b4c6a7c3bed2bd4296b1940d.svn-base
2024-11-07 16:33:03 +08:00

41 lines
830 B
Plaintext

<template>
<div class="flex flex-col justify-center page-container">
<div class="text-center">
<img src="~@/assets/images/exception/500.svg" alt="" />
</div>
<div class="text-center">
<h1 class="text-base text-gray-500">抱歉,服务器出错了</h1>
<a-button type="primary" @click="goHome">回到首页</a-button>
</div>
</div>
</template>
<script lang="ts" setup>
import { useRouter } from 'vue-router';
const router = useRouter();
function goHome() {
router.push('/');
}
</script>
<style lang="less" scoped>
.page-container {
width: 100%;
border-radius: 4px;
padding: 50px 0;
height: 100vh;
.text-center {
h1 {
color: #666;
padding: 20px 0;
}
}
img {
width: 350px;
margin: 0 auto;
}
}
</style>