- 采用左右分栏布局,左侧新增图标导航 - 全新设计顶部 Banner,提升视觉效果 - 添加学会简介数据亮点和主要职能展示 - 新增组织机构图、主要领导及专家委员会成员展示 - 引入学会章程章节分明条目展示 - 丰富咨询服务内容,新增服务项目卡片和联系方式 - “加入我们”板块支持企业与个人会员申请详情说明 - 支持资料下载并优化排版与交互体验 - 增强响应式支持,保证移动端体验一致 - 页面样式大幅调整,提升整体美观与可读性
25 lines
814 B
Vue
25 lines
814 B
Vue
<template>
|
|
<ArticleListPage :config="pageConfig" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({ title: '决策咨询 - 决策咨询网' })
|
|
|
|
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: '其他汇编' },
|
|
]
|
|
}
|
|
</script>
|