feat: 更新网站页面和组件,新增多个页面(关于、专家、会员、政策等)

This commit is contained in:
2026-03-10 16:43:52 +08:00
parent 2c80df8b07
commit 54775dd745
56 changed files with 1520 additions and 503 deletions

View File

@@ -0,0 +1,10 @@
<template>
<SectionStub title="市县决策" description="汇聚市县治理与决策实践动态,沉淀可复制的经验做法。" />
</template>
<script setup lang="ts">
import SectionStub from '@/components/SectionStub.vue'
import { usePageSeo } from '@/composables/usePageSeo'
usePageSeo({ title: '市县决策', description: '政策要闻 - 市县决策。', path: '/policy/cities' })
</script>

View File

@@ -0,0 +1,10 @@
<template>
<SectionStub title="学术活动" description="展示学术交流、研讨会议与专题培训等活动信息。" />
</template>
<script setup lang="ts">
import SectionStub from '@/components/SectionStub.vue'
import { usePageSeo } from '@/composables/usePageSeo'
usePageSeo({ title: '学术活动', description: '政策要闻 - 学术活动。', path: '/policy/events' })
</script>

View File

@@ -0,0 +1,10 @@
<template>
<SectionStub title="研究热点" description="跟踪热点难点议题,发布阶段性研判与专题研究动态。" />
</template>
<script setup lang="ts">
import SectionStub from '@/components/SectionStub.vue'
import { usePageSeo } from '@/composables/usePageSeo'
usePageSeo({ title: '研究热点', description: '政策要闻 - 研究热点。', path: '/policy/hotspots' })
</script>

View File

@@ -0,0 +1,23 @@
<template>
<SectionStub
title="政策要闻"
description="围绕政策资讯、研究热点与学术活动,提供权威、清晰、可追溯的信息发布。"
:links="links"
/>
</template>
<script setup lang="ts">
import SectionStub from '@/components/SectionStub.vue'
import { usePageSeo } from '@/composables/usePageSeo'
usePageSeo({ title: '政策要闻', description: '政策要闻栏目入口。', path: '/policy' })
const links = [
{ label: '最新资讯', to: '/policy/latest' },
{ label: '市县决策', to: '/policy/cities' },
{ label: '研究热点', to: '/policy/hotspots' },
{ label: '学术活动', to: '/policy/events' },
{ label: '政策发布', to: '/policy/release' }
]
</script>

View File

@@ -0,0 +1,10 @@
<template>
<SectionStub title="最新资讯" description="发布最新政策资讯与智库要闻,支持按时间与关键词检索。" />
</template>
<script setup lang="ts">
import SectionStub from '@/components/SectionStub.vue'
import { usePageSeo } from '@/composables/usePageSeo'
usePageSeo({ title: '最新资讯', description: '政策要闻 - 最新资讯。', path: '/policy/latest' })
</script>

View File

@@ -0,0 +1,10 @@
<template>
<SectionStub title="政策发布" description="转载并归档中央、自治区重要政策文件、规划纲要与权威解读链接。" />
</template>
<script setup lang="ts">
import SectionStub from '@/components/SectionStub.vue'
import { usePageSeo } from '@/composables/usePageSeo'
usePageSeo({ title: '政策发布', description: '政策要闻 - 政策发布。', path: '/policy/release' })
</script>