第一次提交

This commit is contained in:
gxwebsoft
2023-08-04 13:32:43 +08:00
commit c02e8be49b
1151 changed files with 200453 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<template>
<div style="padding-top: 80px">
<a-result status="403" title="403" sub-title="抱歉, 你无权访问该页面.">
<template #extra>
<router-link to="/">
<a-button type="primary">返回首页</a-button>
</router-link>
</template>
</a-result>
</div>
</template>
<script lang="ts">
export default {
name: 'Exception403'
};
</script>

View File

@@ -0,0 +1,17 @@
<template>
<div style="padding-top: 80px">
<a-result status="404" title="404" sub-title="抱歉, 你访问的页面不存在.">
<template #extra>
<router-link to="/">
<a-button type="primary">返回首页</a-button>
</router-link>
</template>
</a-result>
</div>
</template>
<script lang="ts">
export default {
name: 'Exception404'
};
</script>

View File

@@ -0,0 +1,17 @@
<template>
<div style="padding-top: 80px">
<a-result status="500" title="500" sub-title="抱歉, 服务器出错了.">
<template #extra>
<router-link to="/">
<a-button type="primary">返回首页</a-button>
</router-link>
</template>
</a-result>
</div>
</template>
<script lang="ts">
export default {
name: 'Exception500'
};
</script>