初始上传

This commit is contained in:
2026-04-04 17:27:12 +08:00
parent 4d80d28eb4
commit b7e11774ee
11191 changed files with 1588469 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<template>
<div class="error-wrap">
<img src="@/assets/images/index/closed.png" />
<h1 v-if="error.statusCode === 404">页面不存在</h1>
<h1 v-else>应用发生错误异常</h1>
<router-link to="/" class="ns-text-color">返回首页</router-link>
</div>
</template>
<script>
export default {
props: ['error'],
layout: 'empty',
created() {},
methods: {}
}
</script>
<style lang="scss" scoped>
.error-wrap {
text-align: center;
padding: 40px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
i {
font-size: 60px;
}
h2 {
margin: 0 0 30px;
}
}
</style>