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,193 +1,21 @@
<template>
<div class="hanmo-page">
<div class="page-header">
<h1 class="page-title">翰墨文谈</h1>
<p class="page-desc">以文会友汇聚文化精品传承智慧结晶</p>
</div>
<!-- 文章列表 -->
<div class="article-grid">
<div v-for="article in articles" :key="article.id" class="article-card" @click="handleView(article)">
<div class="card-image" v-if="article.image">
<img :src="article.image" :alt="article.title" />
</div>
<div class="card-body">
<h3 class="card-title">{{ article.title }}</h3>
<p class="card-overview">{{ article.overview }}</p>
<div class="card-meta">
<span>{{ article.author }}</span>
<span>{{ 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 router = useRouter()
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, #92400e 0%, #b45309 100%)',
baseRoute: 'hanmo',
categories: [
{ type: '', label: '全部文章' },
{ type: 'essay', label: '随笔散文' },
{ type: 'review', label: '书评影评' },
{ type: 'poetry', label: '诗词歌赋' },
{ type: 'other', label: '其他' },
]
}
function handlePageChange(page: number) {
currentPage.value = page
loadArticles()
}
function handleView(article: any) {
router.push(`/hanmo/${article.id}`)
}
onMounted(() => {
loadArticles()
})
</script>
<style scoped>
.hanmo-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;
}
.article-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.article-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
cursor: pointer;
transition: all 0.2s;
}
.article-card:hover {
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
transform: translateY(-4px);
}
.card-image {
width: 100%;
height: 200px;
overflow: hidden;
}
.card-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.card-body {
padding: 16px;
}
.card-title {
font-size: 16px;
font-weight: 600;
color: #1f2937;
margin: 0 0 8px;
line-height: 1.4;
}
.card-overview {
font-size: 13px;
color: #6b7280;
margin: 0 0 12px;
line-height: 1.6;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.card-meta {
display: flex;
justify-content: space-between;
font-size: 12px;
color: #9ca3af;
}
.loading-placeholder,
.empty-placeholder {
grid-column: 1 / -1;
padding: 60px 0;
text-align: center;
}
.pagination-wrap {
margin-top: 40px;
text-align: center;
}
@media (max-width: 1024px) {
.article-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 640px) {
.article-grid {
grid-template-columns: 1fr;
}
}
</style>