feat(about): 重构“关于我们”页面并丰富内容展示

- 采用左右分栏布局,左侧新增图标导航
- 全新设计顶部 Banner,提升视觉效果
- 添加学会简介数据亮点和主要职能展示
- 新增组织机构图、主要领导及专家委员会成员展示
- 引入学会章程章节分明条目展示
- 丰富咨询服务内容,新增服务项目卡片和联系方式
- “加入我们”板块支持企业与个人会员申请详情说明
- 支持资料下载并优化排版与交互体验
- 增强响应式支持,保证移动端体验一致
- 页面样式大幅调整,提升整体美观与可读性
This commit is contained in:
2026-04-26 01:44:07 +08:00
parent 17ce26411d
commit 56aea4ad86
26 changed files with 5468 additions and 1741 deletions

View File

@@ -1,187 +1,24 @@
<template>
<div class="consultation-page">
<div class="page-header">
<h1 class="page-title">决策咨询</h1>
<p class="page-desc">提供市县决策前沿观察行业资讯等决策咨询服务</p>
</div>
<!-- 分类标签 -->
<div class="category-tabs">
<a-radio-group v-model:value="activeType" button-style="solid" @change="handleTypeChange">
<a-radio-button value="">全部</a-radio-button>
<a-radio-button value="city">市县决策</a-radio-button>
<a-radio-button value="frontier">前沿观察</a-radio-button>
<a-radio-button value="industry">行业资讯</a-radio-button>
<a-radio-button value="enterprise">企业动态</a-radio-button>
<a-radio-button value="research">研究热点</a-radio-button>
<a-radio-button value="academic">学术活动</a-radio-button>
<a-radio-button value="other">其他汇编</a-radio-button>
</a-radio-group>
</div>
<!-- 文章列表 -->
<div class="article-list">
<div v-for="article in articles" :key="article.id" class="article-item" @click="handleView(article)">
<div class="article-content">
<h3 class="article-title">{{ article.title }}</h3>
<p class="article-overview">{{ article.overview }}</p>
<div class="article-meta">
<span class="meta-item">{{ article.source }}</span>
<span class="meta-item">{{ article.publishTime }}</span>
</div>
</div>
</div>
<div v-if="loading" class="loading-placeholder">
<a-spin size="large" />
</div>
<div v-if="!loading && articles.length === 0" class="empty-placeholder">
<a-empty description="暂无文章" />
</div>
</div>
<!-- 分页 -->
<div class="pagination-wrap" v-if="total > pageSize">
<a-pagination
v-model:current="currentPage"
:total="total"
:page-size="pageSize"
@change="handlePageChange"
/>
</div>
</div>
<ArticleListPage :config="pageConfig" />
</template>
<script setup lang="ts">
import { message } from 'ant-design-vue'
useHead({ title: '决策咨询 - 决策咨询网' })
const route = useRoute()
const router = useRouter()
const activeType = ref((route.query.type as string) || '')
const currentPage = ref(1)
const pageSize = ref(12)
const total = ref(0)
const loading = ref(false)
const articles = ref<any[]>([])
async function loadArticles() {
loading.value = true
try {
// TODO: 接入实际API
} catch (e: any) {
message.error('加载失败')
} finally {
loading.value = false
}
const pageConfig = {
title: '决策咨询',
desc: '聚焦市县决策、前沿观察、行业资讯、企业动态,提供全面的决策咨询服务',
bannerGradient: 'linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%)',
baseRoute: 'consultation',
categories: [
{ type: '', label: '全部文章' },
{ type: 'city', label: '市县决策' },
{ type: 'frontier', label: '前沿观察' },
{ type: 'industry', label: '行业资讯' },
{ type: 'enterprise', label: '企业动态' },
{ type: 'research', label: '研究热点' },
{ type: 'academic', label: '学术活动' },
{ type: 'other', label: '其他汇编' },
]
}
function handleTypeChange() {
currentPage.value = 1
loadArticles()
}
function handlePageChange(page: number) {
currentPage.value = page
loadArticles()
}
function handleView(article: any) {
router.push(`/consultation/${article.id}`)
}
watch(() => route.query.type, (newType) => {
activeType.value = (newType as string) || ''
loadArticles()
})
onMounted(() => {
loadArticles()
})
</script>
<style scoped>
.consultation-page {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
.page-header {
text-align: center;
margin-bottom: 40px;
}
.page-title {
font-size: 32px;
font-weight: 700;
color: #1f2937;
margin: 0 0 12px;
}
.page-desc {
font-size: 16px;
color: #6b7280;
margin: 0;
}
.category-tabs {
margin-bottom: 32px;
text-align: center;
}
.article-list {
display: flex;
flex-direction: column;
gap: 16px;
}
.article-item {
padding: 20px;
background: #fff;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
cursor: pointer;
transition: all 0.2s;
}
.article-item:hover {
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
transform: translateY(-2px);
}
.article-title {
font-size: 18px;
font-weight: 600;
color: #1f2937;
margin: 0 0 8px;
}
.article-overview {
font-size: 14px;
color: #6b7280;
margin: 0 0 12px;
line-height: 1.6;
}
.article-meta {
display: flex;
gap: 16px;
font-size: 12px;
color: #9ca3af;
}
.loading-placeholder,
.empty-placeholder {
padding: 60px 0;
text-align: center;
}
.pagination-wrap {
margin-top: 40px;
text-align: center;
}
</style>