f4f7268045
新增 src/pages/error/NotFoundPage.vue(el-result + 返回首页),router 在业务路由 之后注册 :pathMatch(.*)* 兜底(无 menuKey,不参与权限门禁),保留壳层 chrome; main.css 增加 .not-found 布局。
16 lines
394 B
Vue
16 lines
394 B
Vue
<script setup lang="ts">
|
|
import { useRouter } from 'vue-router'
|
|
|
|
const router = useRouter()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="not-found">
|
|
<el-result icon="warning" title="404" sub-title="页面不存在或已被移除">
|
|
<template #extra>
|
|
<el-button type="primary" @click="router.replace('/')">返回首页</el-button>
|
|
</template>
|
|
</el-result>
|
|
</div>
|
|
</template>
|