- 移除经营范围按钮,精简导航栏 - 实现文章标题链接功能,提升用户体验 - 添加商品详情页面包屑导航,支持分类跳转 - 引入配送管理相关页面(区域、接单台、配送员、派单) - 替换控制台布局为站点头部和底部组件 - 重构商品分类页面,集成CMS导航功能 - 新增文章详情页面,支持多种访问方式 - 删除已迁移的创建应用和空应用页面 - 优化样式和组件导入,提升代码质量
33 lines
964 B
Vue
33 lines
964 B
Vue
<template>
|
||
<div class="mx-auto max-w-screen-md px-4 py-16">
|
||
<a-result status="404" title="页面建设中" sub-title="该页面暂未开放,建议返回首页或联系我们。">
|
||
<template #extra>
|
||
<a-space>
|
||
<a-button type="primary" @click="navigateTo('/')">返回首页</a-button>
|
||
<a-button @click="navigateTo('/contact')">联系我们</a-button>
|
||
</a-space>
|
||
</template>
|
||
</a-result>
|
||
|
||
<a-card class="mt-6" size="small">
|
||
<div class="text-sm text-gray-500">
|
||
当前路径:<span class="font-mono">{{ path }}</span>
|
||
</div>
|
||
</a-card>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { usePageSeo } from '@/composables/usePageSeo'
|
||
|
||
const route = useRoute()
|
||
const path = computed(() => route.fullPath || '/')
|
||
|
||
usePageSeo({
|
||
title: '页面未开放',
|
||
description: '该页面暂未开放,可返回首页或进入联系我们/经营范围。',
|
||
path: route.path
|
||
})
|
||
</script>
|
||
|